blob: 514ad4cb37190543820fa79fe8320218bde0588d [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 }
nikolay serdjuk1d66e882014-04-07 13:54:24 +07001220 ClassHelper ch(dst->GetClass());
1221 const char* descriptor = ch.GetDescriptor();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001222 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor + 1);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001223
1224 if (IsPrimitiveTag(tag)) {
1225 size_t width = GetTagWidth(tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001226 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001227 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001228 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001229 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001230 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001231 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001232 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001233 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001234 }
1235 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001236 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001237 for (int i = 0; i < count; ++i) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001238 JDWP::ObjectId id = request.ReadObjectId();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001239 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001240 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001241 return JDWP::ERR_INVALID_OBJECT;
1242 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001243 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001244 }
1245 }
1246
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001247 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001248}
1249
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001250JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001251 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001252}
1253
Elliott Hughes88d63092013-01-09 09:55:54 -08001254JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001255 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001256 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001257 if (c == NULL) {
1258 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001259 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001260 new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001261 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001262}
1263
Elliott Hughesbf13d362011-12-08 15:51:37 -08001264/*
1265 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1266 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001267JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001268 JDWP::ObjectId& new_array) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001269 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001270 mirror::Class* c = DecodeClass(array_class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001271 if (c == NULL) {
1272 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001273 }
Ian Rogers6fac4472014-02-25 17:01:10 -08001274 new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
1275 c->GetComponentSize(),
1276 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001277 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001278}
1279
Elliott Hughes88d63092013-01-09 09:55:54 -08001280bool Dbg::MatchType(JDWP::RefTypeId instance_class_id, JDWP::RefTypeId class_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001281 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001282 mirror::Class* c1 = DecodeClass(instance_class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001283 CHECK(c1 != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001284 mirror::Class* c2 = DecodeClass(class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001285 CHECK(c2 != NULL);
Sebastien Hertz123756a2013-11-27 15:49:42 +01001286 return c2->IsAssignableFrom(c1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001287}
1288
Brian Carlstromea46f952013-07-30 01:26:50 -07001289static JDWP::FieldId ToFieldId(const mirror::ArtField* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001290 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001291 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001292 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001293}
1294
Brian Carlstromea46f952013-07-30 01:26:50 -07001295static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001296 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001297 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001298 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001299}
1300
Brian Carlstromea46f952013-07-30 01:26:50 -07001301static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001302 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001303 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001304 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001305}
1306
Brian Carlstromea46f952013-07-30 01:26:50 -07001307static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001308 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001309 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001310 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001311}
1312
Brian Carlstromea46f952013-07-30 01:26:50 -07001313static void SetLocation(JDWP::JdwpLocation& location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001314 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001315 if (m == NULL) {
1316 memset(&location, 0, sizeof(location));
1317 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001318 mirror::Class* c = m->GetDeclaringClass();
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001319 location.type_tag = GetTypeTag(c);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001320 location.class_id = gRegistry->AddRefType(c);
Elliott Hughes74847412012-06-20 18:10:21 -07001321 location.method_id = ToMethodId(m);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001322 location.dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001323 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001324}
1325
Elliott Hughesa96836a2013-01-17 12:27:49 -08001326std::string Dbg::GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001327 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001328 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001329 return MethodHelper(m).GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001330}
1331
Elliott Hughesa96836a2013-01-17 12:27:49 -08001332std::string Dbg::GetFieldName(JDWP::FieldId field_id)
1333 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001334 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughesa96836a2013-01-17 12:27:49 -08001335 return FieldHelper(f).GetName();
1336}
1337
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001338/*
1339 * Augment the access flags for synthetic methods and fields by setting
1340 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1341 * flags not specified by the Java programming language.
1342 */
1343static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1344 accessFlags &= kAccJavaFlagsMask;
1345 if ((accessFlags & kAccSynthetic) != 0) {
1346 accessFlags |= 0xf0000000;
1347 }
1348 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001349}
1350
Elliott Hughesdbb40792011-11-18 17:05:22 -08001351/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001352 * Circularly shifts registers so that arguments come first. Debuggers
1353 * expect slots to begin with arguments, but dex code places them at
1354 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001355 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001356static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1357 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1358 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001359 if (code_item == nullptr) {
1360 // We should not get here for a method without code (native, proxy or abstract). Log it and
1361 // return the slot as is since all registers are arguments.
1362 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1363 return slot;
1364 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001365 uint16_t ins_size = code_item->ins_size_;
1366 uint16_t locals_size = code_item->registers_size_ - ins_size;
1367 if (slot >= locals_size) {
1368 return slot - locals_size;
1369 } else {
1370 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001371 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001372}
1373
Jeff Haob7cefc72013-11-14 14:51:09 -08001374/*
1375 * Circularly shifts registers so that arguments come last. Reverts
1376 * slots to dex style argument placement.
1377 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001378static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001379 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Jeff Haob7cefc72013-11-14 14:51:09 -08001380 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001381 if (code_item == nullptr) {
1382 // We should not get here for a method without code (native, proxy or abstract). Log it and
1383 // return the slot as is since all registers are arguments.
1384 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1385 return slot;
1386 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001387 uint16_t ins_size = code_item->ins_size_;
1388 uint16_t locals_size = code_item->registers_size_ - ins_size;
1389 if (slot < ins_size) {
1390 return slot + locals_size;
1391 } else {
1392 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001393 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001394}
1395
Elliott Hughes88d63092013-01-09 09:55:54 -08001396JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001397 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001398 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001399 if (c == NULL) {
1400 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001401 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001402
1403 size_t instance_field_count = c->NumInstanceFields();
1404 size_t static_field_count = c->NumStaticFields();
1405
1406 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1407
1408 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001409 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001410 FieldHelper fh(f);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001411 expandBufAddFieldId(pReply, ToFieldId(f));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001412 expandBufAddUtf8String(pReply, fh.GetName());
1413 expandBufAddUtf8String(pReply, fh.GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001414 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001415 static const char genericSignature[1] = "";
1416 expandBufAddUtf8String(pReply, genericSignature);
1417 }
1418 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1419 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001420 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001421}
1422
Elliott Hughes88d63092013-01-09 09:55:54 -08001423JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001424 JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001425 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001426 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001427 if (c == NULL) {
1428 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001429 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001430
1431 size_t direct_method_count = c->NumDirectMethods();
1432 size_t virtual_method_count = c->NumVirtualMethods();
1433
1434 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1435
1436 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001437 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001438 MethodHelper mh(m);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001439 expandBufAddMethodId(pReply, ToMethodId(m));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001440 expandBufAddUtf8String(pReply, mh.GetName());
Ian Rogersd91d6d62013-09-25 20:26:14 -07001441 expandBufAddUtf8String(pReply, mh.GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001442 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001443 static const char genericSignature[1] = "";
1444 expandBufAddUtf8String(pReply, genericSignature);
1445 }
1446 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1447 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001448 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001449}
1450
Elliott Hughes88d63092013-01-09 09:55:54 -08001451JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001452 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001453 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001454 if (c == NULL) {
1455 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001456 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001457
1458 ClassHelper kh(c);
Ian Rogersd24e2642012-06-06 21:21:43 -07001459 size_t interface_count = kh.NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001460 expandBufAdd4BE(pReply, interface_count);
1461 for (size_t i = 0; i < interface_count; ++i) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001462 expandBufAddRefTypeId(pReply, gRegistry->AddRefType(kh.GetDirectInterface(i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001463 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001464 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001465}
1466
Elliott Hughes88d63092013-01-09 09:55:54 -08001467void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001468 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001469 struct DebugCallbackContext {
1470 int numItems;
1471 JDWP::ExpandBuf* pReply;
1472
Elliott Hughes2435a572012-02-17 16:07:41 -08001473 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001474 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1475 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001476 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001477 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001478 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001479 }
1480 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001481 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001482 MethodHelper mh(m);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001483 const DexFile::CodeItem* code_item = mh.GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001484 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001485 if (code_item == nullptr) {
1486 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001487 start = -1;
1488 end = -1;
1489 } else {
1490 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001491 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001492 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001493 }
1494
1495 expandBufAdd8BE(pReply, start);
1496 expandBufAdd8BE(pReply, end);
1497
1498 // Add numLines later
1499 size_t numLinesOffset = expandBufGetLength(pReply);
1500 expandBufAdd4BE(pReply, 0);
1501
1502 DebugCallbackContext context;
1503 context.numItems = 0;
1504 context.pReply = pReply;
1505
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001506 if (code_item != nullptr) {
1507 mh.GetDexFile().DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
1508 DebugCallbackContext::Callback, NULL, &context);
1509 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001510
1511 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001512}
1513
Elliott Hughes88d63092013-01-09 09:55:54 -08001514void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001515 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001516 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001517 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001518 size_t variable_count;
1519 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001520
Jeff Haob7cefc72013-11-14 14:51:09 -08001521 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress, const char* name, const char* descriptor, const char* signature)
1522 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001523 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1524
Jeff Haob7cefc72013-11-14 14:51:09 -08001525 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 -08001526
Jeff Haob7cefc72013-11-14 14:51:09 -08001527 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001528
Elliott Hughesdbb40792011-11-18 17:05:22 -08001529 expandBufAdd8BE(pContext->pReply, startAddress);
1530 expandBufAddUtf8String(pContext->pReply, name);
1531 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001532 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001533 expandBufAddUtf8String(pContext->pReply, signature);
1534 }
1535 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1536 expandBufAdd4BE(pContext->pReply, slot);
1537
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001538 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001539 }
1540 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001541 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001542 MethodHelper mh(m);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001543
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001544 // arg_count considers doubles and longs to take 2 units.
1545 // variable_count considers everything to take 1 unit.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001546 std::string shorty(mh.GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001547 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001548
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001549 // We don't know the total number of variables yet, so leave a blank and update it later.
1550 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001551 expandBufAdd4BE(pReply, 0);
1552
1553 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001554 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001555 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001556 context.variable_count = 0;
1557 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001558
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001559 const DexFile::CodeItem* code_item = mh.GetCodeItem();
1560 if (code_item != nullptr) {
1561 mh.GetDexFile().DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), NULL,
1562 DebugCallbackContext::Callback, &context);
1563 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001564
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001565 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001566}
1567
Jeff Hao579b0242013-11-18 13:16:49 -08001568void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1569 JDWP::ExpandBuf* pReply) {
1570 mirror::ArtMethod* m = FromMethodId(method_id);
1571 JDWP::JdwpTag tag = BasicTagFromDescriptor(MethodHelper(m).GetShorty());
1572 OutputJValue(tag, return_value, pReply);
1573}
1574
Elliott Hughes9777ba22013-01-17 09:04:19 -08001575JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
1576 std::vector<uint8_t>& bytecodes)
1577 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001578 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001579 if (m == NULL) {
1580 return JDWP::ERR_INVALID_METHODID;
1581 }
1582 MethodHelper mh(m);
1583 const DexFile::CodeItem* code_item = mh.GetCodeItem();
1584 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1585 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1586 const uint8_t* end = begin + byte_count;
1587 for (const uint8_t* p = begin; p != end; ++p) {
1588 bytecodes.push_back(*p);
1589 }
1590 return JDWP::ERR_NONE;
1591}
1592
Elliott Hughes88d63092013-01-09 09:55:54 -08001593JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
1594 return BasicTagFromDescriptor(FieldHelper(FromFieldId(field_id)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001595}
1596
Elliott Hughes88d63092013-01-09 09:55:54 -08001597JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
1598 return BasicTagFromDescriptor(FieldHelper(FromFieldId(field_id)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001599}
1600
Elliott Hughes88d63092013-01-09 09:55:54 -08001601static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1602 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001603 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001604 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001605 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001606 mirror::Class* c = DecodeClass(ref_type_id, status);
Elliott Hughes88d63092013-01-09 09:55:54 -08001607 if (ref_type_id != 0 && c == NULL) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001608 return status;
1609 }
1610
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001611 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001612 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001613 return JDWP::ERR_INVALID_OBJECT;
1614 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001615 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001616
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001617 mirror::Class* receiver_class = c;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001618 if (receiver_class == NULL && o != NULL) {
1619 receiver_class = o->GetClass();
1620 }
1621 // TODO: should we give up now if receiver_class is NULL?
1622 if (receiver_class != NULL && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
1623 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001624 return JDWP::ERR_INVALID_FIELDID;
1625 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001626
Elliott Hughes0cf74332012-02-23 23:14:00 -08001627 // The RI only enforces the static/non-static mismatch in one direction.
1628 // TODO: should we change the tests and check both?
1629 if (is_static) {
1630 if (!f->IsStatic()) {
1631 return JDWP::ERR_INVALID_FIELDID;
1632 }
1633 } else {
1634 if (f->IsStatic()) {
1635 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001636 }
1637 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001638 if (f->IsStatic()) {
1639 o = f->GetDeclaringClass();
1640 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001641
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001642 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001643 JValue field_value;
1644 if (tag == JDWP::JT_VOID) {
1645 LOG(FATAL) << "Unknown tag: " << tag;
1646 } else if (!IsPrimitiveTag(tag)) {
1647 field_value.SetL(f->GetObject(o));
1648 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1649 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001650 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001651 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001652 }
Jeff Hao579b0242013-11-18 13:16:49 -08001653 Dbg::OutputJValue(tag, &field_value, pReply);
1654
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001655 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001656}
1657
Elliott Hughes88d63092013-01-09 09:55:54 -08001658JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001659 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001660 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001661}
1662
Elliott Hughes88d63092013-01-09 09:55:54 -08001663JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) {
1664 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001665}
1666
Elliott Hughes88d63092013-01-09 09:55:54 -08001667static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001668 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001669 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001670 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001671 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001672 return JDWP::ERR_INVALID_OBJECT;
1673 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001674 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001675
1676 // The RI only enforces the static/non-static mismatch in one direction.
1677 // TODO: should we change the tests and check both?
1678 if (is_static) {
1679 if (!f->IsStatic()) {
1680 return JDWP::ERR_INVALID_FIELDID;
1681 }
1682 } else {
1683 if (f->IsStatic()) {
1684 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001685 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001686 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001687 if (f->IsStatic()) {
1688 o = f->GetDeclaringClass();
1689 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001690
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001691 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001692
1693 if (IsPrimitiveTag(tag)) {
1694 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001695 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001696 // Debugging can't use transactional mode (runtime only).
1697 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001698 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001699 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001700 // Debugging can't use transactional mode (runtime only).
1701 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001702 }
1703 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001704 mirror::Object* v = gRegistry->Get<mirror::Object*>(value);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001705 if (v == ObjectRegistry::kInvalidObject) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001706 return JDWP::ERR_INVALID_OBJECT;
1707 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001708 if (v != NULL) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001709 mirror::Class* field_type = FieldHelper(f).GetType();
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001710 if (!field_type->IsAssignableFrom(v->GetClass())) {
1711 return JDWP::ERR_INVALID_OBJECT;
1712 }
1713 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001714 // Debugging can't use transactional mode (runtime only).
1715 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001716 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001717
1718 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001719}
1720
Elliott Hughes88d63092013-01-09 09:55:54 -08001721JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001722 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001723 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001724}
1725
Elliott Hughes88d63092013-01-09 09:55:54 -08001726JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1727 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001728}
1729
Elliott Hughes88d63092013-01-09 09:55:54 -08001730std::string Dbg::StringToUtf8(JDWP::ObjectId string_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001731 mirror::String* s = gRegistry->Get<mirror::String*>(string_id);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001732 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001733}
1734
Jeff Hao579b0242013-11-18 13:16:49 -08001735void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1736 if (IsPrimitiveTag(tag)) {
1737 expandBufAdd1(pReply, tag);
1738 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1739 expandBufAdd1(pReply, return_value->GetI());
1740 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1741 expandBufAdd2BE(pReply, return_value->GetI());
1742 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1743 expandBufAdd4BE(pReply, return_value->GetI());
1744 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1745 expandBufAdd8BE(pReply, return_value->GetJ());
1746 } else {
1747 CHECK_EQ(tag, JDWP::JT_VOID);
1748 }
1749 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001750 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001751 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001752 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001753 expandBufAddObjectId(pReply, gRegistry->Add(value));
1754 }
1755}
1756
Elliott Hughes221229c2013-01-08 18:17:50 -08001757JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string& name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001758 ScopedObjectAccessUnchecked soa(Thread::Current());
1759 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001760 Thread* thread;
1761 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1762 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1763 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001764 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001765
1766 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001767 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Brian Carlstromea46f952013-07-30 01:26:50 -07001768 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001769 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1770 mirror::String* s =
1771 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Elliott Hughes221229c2013-01-08 18:17:50 -08001772 if (s != NULL) {
1773 name = s->ToModifiedUtf8();
1774 }
1775 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001776}
1777
Elliott Hughes221229c2013-01-08 18:17:50 -08001778JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001779 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001780 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001781 if (thread_object == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001782 return JDWP::ERR_INVALID_OBJECT;
1783 }
Ian Rogers98379392014-02-24 16:53:16 -08001784 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001785 // Okay, so it's an object, but is it actually a thread?
Ian Rogers50b35e22012-10-04 10:09:15 -07001786 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001787 Thread* thread;
1788 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1789 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1790 // Zombie threads are in the null group.
1791 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001792 error = JDWP::ERR_NONE;
1793 } else if (error == JDWP::ERR_NONE) {
1794 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1795 CHECK(c != nullptr);
1796 mirror::ArtField* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
1797 CHECK(f != NULL);
1798 mirror::Object* group = f->GetObject(thread_object);
1799 CHECK(group != NULL);
1800 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1801 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001802 }
Ian Rogers98379392014-02-24 16:53:16 -08001803 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001804 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001805}
1806
Elliott Hughes88d63092013-01-09 09:55:54 -08001807std::string Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001808 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001809 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001810 CHECK(thread_group != nullptr);
1811 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupName");
1812 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1813 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001814 mirror::ArtField* f = c->FindInstanceField("name", "Ljava/lang/String;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001815 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001816 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Ian Rogers98379392014-02-24 16:53:16 -08001817 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes499c5132011-11-17 14:55:11 -08001818 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001819}
1820
Elliott Hughes88d63092013-01-09 09:55:54 -08001821JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id) {
Ian Rogers98379392014-02-24 16:53:16 -08001822 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001823 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001824 CHECK(thread_group != nullptr);
1825 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupParent");
1826 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1827 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001828 mirror::ArtField* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
Elliott Hughes4e235312011-12-02 11:34:15 -08001829 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001830 mirror::Object* parent = f->GetObject(thread_group);
Ian Rogers98379392014-02-24 16:53:16 -08001831 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes4e235312011-12-02 11:34:15 -08001832 return gRegistry->Add(parent);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001833}
1834
1835JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001836 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001837 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001838 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001839 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001840}
1841
1842JDWP::ObjectId Dbg::GetMainThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001843 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001844 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001845 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001846 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001847}
1848
Jeff Hao920af3e2013-08-28 15:46:38 -07001849JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
1850 switch (state) {
1851 case kBlocked:
1852 return JDWP::TS_MONITOR;
1853 case kNative:
1854 case kRunnable:
1855 case kSuspended:
1856 return JDWP::TS_RUNNING;
1857 case kSleeping:
1858 return JDWP::TS_SLEEPING;
1859 case kStarting:
1860 case kTerminated:
1861 return JDWP::TS_ZOMBIE;
1862 case kTimedWaiting:
1863 case kWaitingForDebuggerSend:
1864 case kWaitingForDebuggerSuspension:
1865 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01001866 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07001867 case kWaitingForGcToComplete:
1868 case kWaitingForCheckPointsToRun:
1869 case kWaitingForJniOnLoad:
1870 case kWaitingForSignalCatcherOutput:
1871 case kWaitingInMainDebuggerLoop:
1872 case kWaitingInMainSignalCatcherLoop:
1873 case kWaitingPerformingGc:
1874 case kWaiting:
1875 return JDWP::TS_WAIT;
1876 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
1877 }
1878 LOG(FATAL) << "Unknown thread state: " << state;
1879 return JDWP::TS_ZOMBIE;
1880}
1881
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001882JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
1883 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001884 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08001885
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001886 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
1887
Ian Rogers50b35e22012-10-04 10:09:15 -07001888 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001889 Thread* thread;
1890 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1891 if (error != JDWP::ERR_NONE) {
1892 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1893 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08001894 return JDWP::ERR_NONE;
1895 }
1896 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08001897 }
1898
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001899 if (IsSuspendedForDebugger(soa, thread)) {
1900 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08001901 }
1902
Jeff Hao920af3e2013-08-28 15:46:38 -07001903 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08001904 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001905}
1906
Elliott Hughes221229c2013-01-08 18:17:50 -08001907JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001908 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07001909 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001910 Thread* thread;
1911 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1912 if (error != JDWP::ERR_NONE) {
1913 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08001914 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001915 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001916 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08001917 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001918}
1919
Elliott Hughesf9501702013-01-11 11:22:27 -08001920JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
1921 ScopedObjectAccess soa(Thread::Current());
1922 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
1923 Thread* thread;
1924 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1925 if (error != JDWP::ERR_NONE) {
1926 return error;
1927 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07001928 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08001929 return JDWP::ERR_NONE;
1930}
1931
Elliott Hughescaf76542012-06-28 16:08:22 -07001932void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids) {
Ian Rogers365c1022012-06-22 15:05:28 -07001933 class ThreadListVisitor {
1934 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001935 ThreadListVisitor(const ScopedObjectAccessUnchecked& soa, mirror::Object* desired_thread_group,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001936 std::vector<JDWP::ObjectId>& thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001937 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001938 : soa_(soa), desired_thread_group_(desired_thread_group), thread_ids_(thread_ids) {}
Ian Rogers365c1022012-06-22 15:05:28 -07001939
Elliott Hughesa2155262011-11-16 16:26:58 -08001940 static void Visit(Thread* t, void* arg) {
1941 reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t);
1942 }
1943
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001944 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1945 // annotalysis.
1946 void Visit(Thread* t) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001947 if (t == Dbg::GetDebugThread()) {
1948 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
1949 // query all threads, so it's easier if we just don't tell them about this thread.
1950 return;
1951 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001952 mirror::Object* peer = t->GetPeer();
jeffhao0dfbb7e2012-11-28 15:26:03 -08001953 if (IsInDesiredThreadGroup(peer)) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001954 thread_ids_.push_back(gRegistry->Add(peer));
Elliott Hughesa2155262011-11-16 16:26:58 -08001955 }
1956 }
1957
Ian Rogers365c1022012-06-22 15:05:28 -07001958 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001959 bool IsInDesiredThreadGroup(mirror::Object* peer)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001960 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao0dfbb7e2012-11-28 15:26:03 -08001961 // peer might be NULL if the thread is still starting up.
1962 if (peer == NULL) {
1963 // We can't tell the debugger about this thread yet.
1964 // TODO: if we identified threads to the debugger by their Thread*
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001965 // rather than their peer's mirror::Object*, we could fix this.
jeffhao0dfbb7e2012-11-28 15:26:03 -08001966 // Doing so might help us report ZOMBIE threads too.
1967 return false;
1968 }
jeffhaoc1e04902012-12-13 12:41:10 -08001969 // Do we want threads from all thread groups?
1970 if (desired_thread_group_ == NULL) {
1971 return true;
1972 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001973 mirror::Object* group = soa_.DecodeField(WellKnownClasses::java_lang_Thread_group)->GetObject(peer);
jeffhao0dfbb7e2012-11-28 15:26:03 -08001974 return (group == desired_thread_group_);
1975 }
1976
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07001977 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001978 mirror::Object* const desired_thread_group_;
Elliott Hughescaf76542012-06-28 16:08:22 -07001979 std::vector<JDWP::ObjectId>& thread_ids_;
Elliott Hughesa2155262011-11-16 16:26:58 -08001980 };
1981
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001982 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001983 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001984 ThreadListVisitor tlv(soa, thread_group, thread_ids);
Ian Rogers50b35e22012-10-04 10:09:15 -07001985 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -07001986 Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv);
Elliott Hughescaf76542012-06-28 16:08:22 -07001987}
Elliott Hughesa2155262011-11-16 16:26:58 -08001988
Elliott Hughescaf76542012-06-28 16:08:22 -07001989void Dbg::GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001990 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001991 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughescaf76542012-06-28 16:08:22 -07001992
1993 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Brian Carlstromea46f952013-07-30 01:26:50 -07001994 mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001995 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Elliott Hughescaf76542012-06-28 16:08:22 -07001996
1997 // Get the array and size out of the ArrayList<ThreadGroup>...
Brian Carlstromea46f952013-07-30 01:26:50 -07001998 mirror::ArtField* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;");
1999 mirror::ArtField* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002000 mirror::ObjectArray<mirror::Object>* groups_array =
2001 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
Elliott Hughescaf76542012-06-28 16:08:22 -07002002 const int32_t size = size_field->GetInt(groups_array_list);
2003
2004 // Copy the first 'size' elements out of the array into the result.
2005 for (int32_t i = 0; i < size; ++i) {
2006 child_thread_group_ids.push_back(gRegistry->Add(groups_array->Get(i)));
Elliott Hughesa2155262011-11-16 16:26:58 -08002007 }
2008}
2009
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002010static int GetStackDepth(Thread* thread)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002011 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002012 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07002013 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002014 : StackVisitor(thread, NULL), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002015
Elliott Hughes64f574f2013-02-20 14:57:12 -08002016 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2017 // annotalysis.
2018 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002019 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002020 ++depth;
2021 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002022 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002023 }
2024 size_t depth;
2025 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002026
Ian Rogers7a22fa62013-01-23 12:16:16 -08002027 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002028 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002029 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002030}
2031
Elliott Hughes221229c2013-01-08 18:17:50 -08002032JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002033 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002034 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002035 Thread* thread;
2036 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2037 if (error != JDWP::ERR_NONE) {
2038 return error;
2039 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002040 if (!IsSuspendedForDebugger(soa, thread)) {
2041 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2042 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002043 result = GetStackDepth(thread);
2044 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002045}
2046
Ian Rogers306057f2012-11-26 12:45:53 -08002047JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2048 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002049 class GetFrameVisitor : public StackVisitor {
2050 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08002051 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002052 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002053 : StackVisitor(thread, NULL), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002054 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
2055 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002056 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002057
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002058 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2059 // annotalysis.
2060 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002061 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002062 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002063 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002064 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002065 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002066 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002067 if (depth_ >= start_frame_) {
2068 JDWP::FrameId frame_id(GetFrameId());
2069 JDWP::JdwpLocation location;
2070 SetLocation(location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002071 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002072 expandBufAdd8BE(buf_, frame_id);
2073 expandBufAddLocation(buf_, location);
2074 }
2075 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002076 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002077 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002078
2079 private:
2080 size_t depth_;
2081 const size_t start_frame_;
2082 const size_t frame_count_;
2083 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002084 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002085
2086 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002087 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002088 Thread* thread;
2089 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2090 if (error != JDWP::ERR_NONE) {
2091 return error;
2092 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002093 if (!IsSuspendedForDebugger(soa, thread)) {
2094 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2095 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002096 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002097 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002098 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002099}
2100
2101JDWP::ObjectId Dbg::GetThreadSelfId() {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002102 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08002103 return gRegistry->Add(soa.Self()->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002104}
2105
Elliott Hughes475fc232011-10-25 15:00:35 -07002106void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002107 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002108}
2109
2110void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07002111 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002112}
2113
Elliott Hughes221229c2013-01-08 18:17:50 -08002114JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002115 ScopedLocalRef<jobject> peer(Thread::Current()->GetJniEnv(), NULL);
2116 {
2117 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002118 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002119 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002120 if (peer.get() == NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002121 return JDWP::ERR_THREAD_NOT_ALIVE;
2122 }
2123 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002124 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002125 Thread* thread = ThreadList::SuspendThreadByPeer(peer.get(), request_suspension, true,
2126 &timed_out);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002127 if (thread != NULL) {
2128 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002129 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002130 return JDWP::ERR_INTERNAL;
2131 } else {
2132 return JDWP::ERR_THREAD_NOT_ALIVE;
2133 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002134}
2135
Elliott Hughes221229c2013-01-08 18:17:50 -08002136void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002137 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002138 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
jeffhaoa77f0f62012-12-05 17:19:31 -08002139 Thread* thread;
2140 {
2141 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2142 thread = Thread::FromManagedThread(soa, peer);
2143 }
Elliott Hughes4e235312011-12-02 11:34:15 -08002144 if (thread == NULL) {
2145 LOG(WARNING) << "No such thread for resume: " << peer;
2146 return;
2147 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002148 bool needs_resume;
2149 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002150 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002151 needs_resume = thread->GetSuspendCount() > 0;
2152 }
2153 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002154 Runtime::Current()->GetThreadList()->Resume(thread, true);
2155 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002156}
2157
2158void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002159 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002160}
2161
Ian Rogers0399dde2012-06-06 17:09:28 -07002162struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002163 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002164 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002165 : StackVisitor(thread, context), this_object(NULL), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002166
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002167 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2168 // annotalysis.
2169 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002170 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002171 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002172 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002173 this_object = GetThisObject();
2174 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002175 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002176 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002177
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002178 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002179 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002180};
2181
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002182JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2183 JDWP::ObjectId* result) {
2184 ScopedObjectAccessUnchecked soa(Thread::Current());
2185 Thread* thread;
2186 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002187 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002188 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2189 if (error != JDWP::ERR_NONE) {
2190 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002191 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002192 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002193 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2194 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002195 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002196 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002197 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002198 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002199 *result = gRegistry->Add(visitor.this_object);
2200 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002201}
2202
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002203JDWP::JdwpError Dbg::GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2204 JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002205 struct GetLocalVisitor : public StackVisitor {
Ian Rogers98379392014-02-24 16:53:16 -08002206 GetLocalVisitor(const ScopedObjectAccessUnchecked& soa, Thread* thread, Context* context,
2207 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002208 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers98379392014-02-24 16:53:16 -08002209 : StackVisitor(thread, context), soa_(soa), frame_id_(frame_id), slot_(slot), tag_(tag),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002210 buf_(buf), width_(width), error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002211
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002212 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2213 // annotalysis.
2214 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002215 if (GetFrameId() != frame_id_) {
2216 return true; // Not our frame, carry on.
Elliott Hughesdbb40792011-11-18 17:05:22 -08002217 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002218 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002219 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002220 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002221 if (m->IsNative()) {
2222 // We can't read local value from native method.
2223 error_ = JDWP::ERR_OPAQUE_FRAME;
2224 return false;
2225 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002226 uint16_t reg = DemangleSlot(slot_, m);
Elliott Hughesdbb40792011-11-18 17:05:22 -08002227
Ian Rogers0399dde2012-06-06 17:09:28 -07002228 switch (tag_) {
2229 case JDWP::JT_BOOLEAN:
2230 {
2231 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002232 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002233 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2234 JDWP::Set1(buf_+1, intVal != 0);
2235 }
2236 break;
2237 case JDWP::JT_BYTE:
2238 {
2239 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002240 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002241 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2242 JDWP::Set1(buf_+1, intVal);
2243 }
2244 break;
2245 case JDWP::JT_SHORT:
2246 case JDWP::JT_CHAR:
2247 {
2248 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002249 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002250 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2251 JDWP::Set2BE(buf_+1, intVal);
2252 }
2253 break;
2254 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002255 {
2256 CHECK_EQ(width_, 4U);
2257 uint32_t intVal = GetVReg(m, reg, kIntVReg);
2258 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2259 JDWP::Set4BE(buf_+1, intVal);
2260 }
2261 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002262 case JDWP::JT_FLOAT:
2263 {
2264 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002265 uint32_t intVal = GetVReg(m, reg, kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002266 VLOG(jdwp) << "get int/float local " << reg << " = " << intVal;
2267 JDWP::Set4BE(buf_+1, intVal);
2268 }
2269 break;
2270 case JDWP::JT_ARRAY:
2271 {
2272 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002273 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002274 VLOG(jdwp) << "get array local " << reg << " = " << o;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002275 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002276 LOG(FATAL) << "Register " << reg << " expected to hold array: " << o;
2277 }
2278 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2279 }
2280 break;
2281 case JDWP::JT_CLASS_LOADER:
2282 case JDWP::JT_CLASS_OBJECT:
2283 case JDWP::JT_OBJECT:
2284 case JDWP::JT_STRING:
2285 case JDWP::JT_THREAD:
2286 case JDWP::JT_THREAD_GROUP:
2287 {
2288 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002289 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002290 VLOG(jdwp) << "get object local " << reg << " = " << o;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002291 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002292 LOG(FATAL) << "Register " << reg << " expected to hold object: " << o;
2293 }
Ian Rogers98379392014-02-24 16:53:16 -08002294 tag_ = TagFromObject(soa_, o);
Ian Rogers0399dde2012-06-06 17:09:28 -07002295 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2296 }
2297 break;
2298 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002299 {
2300 CHECK_EQ(width_, 8U);
2301 uint32_t lo = GetVReg(m, reg, kDoubleLoVReg);
2302 uint64_t hi = GetVReg(m, reg + 1, kDoubleHiVReg);
2303 uint64_t longVal = (hi << 32) | lo;
2304 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2305 JDWP::Set8BE(buf_+1, longVal);
2306 }
2307 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002308 case JDWP::JT_LONG:
2309 {
2310 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002311 uint32_t lo = GetVReg(m, reg, kLongLoVReg);
2312 uint64_t hi = GetVReg(m, reg + 1, kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002313 uint64_t longVal = (hi << 32) | lo;
2314 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2315 JDWP::Set8BE(buf_+1, longVal);
2316 }
2317 break;
2318 default:
2319 LOG(FATAL) << "Unknown tag " << tag_;
2320 break;
2321 }
2322
2323 // Prepend tag, which may have been updated.
2324 JDWP::Set1(buf_, tag_);
2325 return false;
2326 }
Ian Rogers98379392014-02-24 16:53:16 -08002327 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002328 const JDWP::FrameId frame_id_;
2329 const int slot_;
2330 JDWP::JdwpTag tag_;
2331 uint8_t* const buf_;
2332 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002333 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002334 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002335
2336 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002337 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002338 Thread* thread;
2339 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2340 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002341 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002342 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002343 // TODO check thread is suspended by the debugger ?
Ian Rogers0399dde2012-06-06 17:09:28 -07002344 UniquePtr<Context> context(Context::Create());
Ian Rogers98379392014-02-24 16:53:16 -08002345 GetLocalVisitor visitor(soa, thread, context.get(), frame_id, slot, tag, buf, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002346 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002347 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002348}
2349
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002350JDWP::JdwpError Dbg::SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2351 JDWP::JdwpTag tag, uint64_t value, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002352 struct SetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002353 SetLocalVisitor(Thread* thread, Context* context,
Ian Rogers0399dde2012-06-06 17:09:28 -07002354 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
Ian Rogersca190662012-06-26 15:45:57 -07002355 size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002356 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002357 : StackVisitor(thread, context),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002358 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width),
2359 error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002360
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002361 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2362 // annotalysis.
2363 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002364 if (GetFrameId() != frame_id_) {
2365 return true; // Not our frame, carry on.
2366 }
2367 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002368 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002369 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002370 if (m->IsNative()) {
2371 // We can't read local value from native method.
2372 error_ = JDWP::ERR_OPAQUE_FRAME;
2373 return false;
2374 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002375 uint16_t reg = DemangleSlot(slot_, m);
2376
2377 switch (tag_) {
2378 case JDWP::JT_BOOLEAN:
2379 case JDWP::JT_BYTE:
2380 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002381 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002382 break;
2383 case JDWP::JT_SHORT:
2384 case JDWP::JT_CHAR:
2385 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002386 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002387 break;
2388 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002389 CHECK_EQ(width_, 4U);
2390 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
2391 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002392 case JDWP::JT_FLOAT:
2393 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002394 SetVReg(m, reg, static_cast<uint32_t>(value_), kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002395 break;
2396 case JDWP::JT_ARRAY:
2397 case JDWP::JT_OBJECT:
2398 case JDWP::JT_STRING:
2399 {
2400 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002401 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value_));
Elliott Hughes64f574f2013-02-20 14:57:12 -08002402 if (o == ObjectRegistry::kInvalidObject) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002403 UNIMPLEMENTED(FATAL) << "return an error code when given an invalid object to store";
2404 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002405 SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)), kReferenceVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002406 }
2407 break;
2408 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002409 CHECK_EQ(width_, 8U);
2410 SetVReg(m, reg, static_cast<uint32_t>(value_), kDoubleLoVReg);
2411 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kDoubleHiVReg);
2412 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002413 case JDWP::JT_LONG:
2414 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002415 SetVReg(m, reg, static_cast<uint32_t>(value_), kLongLoVReg);
2416 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002417 break;
2418 default:
2419 LOG(FATAL) << "Unknown tag " << tag_;
2420 break;
2421 }
2422 return false;
2423 }
2424
2425 const JDWP::FrameId frame_id_;
2426 const int slot_;
2427 const JDWP::JdwpTag tag_;
2428 const uint64_t value_;
2429 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002430 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002431 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002432
2433 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002434 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002435 Thread* thread;
2436 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2437 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002438 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002439 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002440 // TODO check thread is suspended by the debugger ?
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002441 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002442 SetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, value, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002443 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002444 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002445}
2446
Ian Rogersef7d42f2014-01-06 12:55:46 -08002447void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002448 int event_flags, const JValue* return_value) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002449 JDWP::JdwpLocation location;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002450 SetLocation(location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002451
Elliott Hughes64f574f2013-02-20 14:57:12 -08002452 // If 'this_object' isn't already in the registry, we know that we're not looking for it,
2453 // so there's no point adding it to the registry and burning through ids.
2454 JDWP::ObjectId this_id = 0;
2455 if (gRegistry->Contains(this_object)) {
2456 this_id = gRegistry->Add(this_object);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002457 }
Jeff Hao579b0242013-11-18 13:16:49 -08002458 gJdwpState->PostLocationEvent(&location, this_id, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002459}
2460
Ian Rogers62d6c772013-02-27 08:32:07 -08002461void Dbg::PostException(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002462 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002463 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002464 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002465 return;
2466 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002467
Ian Rogers62d6c772013-02-27 08:32:07 -08002468 JDWP::JdwpLocation jdwp_throw_location;
2469 SetLocation(jdwp_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002470 JDWP::JdwpLocation catch_location;
Elliott Hughescaf76542012-06-28 16:08:22 -07002471 SetLocation(catch_location, catch_method, catch_dex_pc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002472
2473 // We need 'this' for InstanceOnly filters.
Ian Rogers62d6c772013-02-27 08:32:07 -08002474 JDWP::ObjectId this_id = gRegistry->Add(throw_location.GetThis());
Elliott Hughes64f574f2013-02-20 14:57:12 -08002475 JDWP::ObjectId exception_id = gRegistry->Add(exception_object);
2476 JDWP::RefTypeId exception_class_id = gRegistry->AddRefType(exception_object->GetClass());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002477
Ian Rogers62d6c772013-02-27 08:32:07 -08002478 gJdwpState->PostException(&jdwp_throw_location, exception_id, exception_class_id, &catch_location,
2479 this_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002480}
2481
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002482void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002483 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002484 return;
2485 }
2486
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002487 // OLD-TODO - we currently always send both "verified" and "prepared" since
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002488 // debuggers seem to like that. There might be some advantage to honesty,
2489 // since the class may not yet be verified.
2490 int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01002491 JDWP::JdwpTypeTag tag = GetTypeTag(c);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002492 gJdwpState->PostClassPrepare(tag, gRegistry->Add(c),
Ian Rogersdfb325e2013-10-30 01:00:44 -07002493 ClassHelper(c).GetDescriptor(), state);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002494}
2495
Ian Rogers62d6c772013-02-27 08:32:07 -08002496void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -08002497 mirror::ArtMethod* m, uint32_t dex_pc) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002498 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002499 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002500 }
2501
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002502 int event_flags = 0;
2503
Elliott Hughes86964332012-02-15 19:37:42 -08002504 if (IsBreakpoint(m, dex_pc)) {
2505 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002506 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002507
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002508 // If the debugger is single-stepping one of our threads, check to
2509 // see if we're that thread and we've reached a step point.
2510 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2511 DCHECK(single_step_control != nullptr);
2512 if (single_step_control->is_active) {
2513 CHECK(!m->IsNative());
2514 if (single_step_control->step_depth == JDWP::SD_INTO) {
2515 // Step into method calls. We break when the line number
2516 // or method pointer changes. If we're in SS_MIN mode, we
2517 // always stop.
2518 if (single_step_control->method != m) {
2519 event_flags |= kSingleStep;
2520 VLOG(jdwp) << "SS new method";
2521 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2522 event_flags |= kSingleStep;
2523 VLOG(jdwp) << "SS new instruction";
2524 } else if (single_step_control->dex_pcs.find(dex_pc) == single_step_control->dex_pcs.end()) {
2525 event_flags |= kSingleStep;
2526 VLOG(jdwp) << "SS new line";
2527 }
2528 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2529 // Step over method calls. We break when the line number is
2530 // different and the frame depth is <= the original frame
2531 // depth. (We can't just compare on the method, because we
2532 // might get unrolled past it by an exception, and it's tricky
2533 // to identify recursion.)
2534
2535 int stack_depth = GetStackDepth(thread);
2536
2537 if (stack_depth < single_step_control->stack_depth) {
2538 // Popped up one or more frames, always trigger.
2539 event_flags |= kSingleStep;
2540 VLOG(jdwp) << "SS method pop";
2541 } else if (stack_depth == single_step_control->stack_depth) {
2542 // Same depth, see if we moved.
2543 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002544 event_flags |= kSingleStep;
2545 VLOG(jdwp) << "SS new instruction";
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002546 } else if (single_step_control->dex_pcs.find(dex_pc) == single_step_control->dex_pcs.end()) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002547 event_flags |= kSingleStep;
2548 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002549 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002550 }
2551 } else {
2552 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2553 // Return from the current method. We break when the frame
2554 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002555
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002556 // This differs from the "method exit" break in that it stops
2557 // with the PC at the next instruction in the returned-to
2558 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002559
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002560 int stack_depth = GetStackDepth(thread);
2561 if (stack_depth < single_step_control->stack_depth) {
2562 event_flags |= kSingleStep;
2563 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002564 }
2565 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002566 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002567
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002568 // If there's something interesting going on, see if it matches one
2569 // of the debugger filters.
2570 if (event_flags != 0) {
Jeff Hao579b0242013-11-18 13:16:49 -08002571 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, nullptr);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002572 }
2573}
2574
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002575// Process request while all mutator threads are suspended.
2576void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002577 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002578 switch (request.kind) {
2579 case DeoptimizationRequest::kNothing:
2580 LOG(WARNING) << "Ignoring empty deoptimization request.";
2581 break;
2582 case DeoptimizationRequest::kFullDeoptimization:
2583 VLOG(jdwp) << "Deoptimize the world";
2584 instrumentation->DeoptimizeEverything();
2585 break;
2586 case DeoptimizationRequest::kFullUndeoptimization:
2587 VLOG(jdwp) << "Undeoptimize the world";
2588 instrumentation->UndeoptimizeEverything();
2589 break;
2590 case DeoptimizationRequest::kSelectiveDeoptimization:
2591 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.method);
2592 instrumentation->Deoptimize(request.method);
2593 break;
2594 case DeoptimizationRequest::kSelectiveUndeoptimization:
2595 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.method);
2596 instrumentation->Undeoptimize(request.method);
2597 break;
2598 default:
2599 LOG(FATAL) << "Unsupported deoptimization request kind " << request.kind;
2600 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002601 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002602}
2603
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002604void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
2605 if (req.kind == DeoptimizationRequest::kNothing) {
2606 // Nothing to do.
2607 return;
2608 }
2609 MutexLock mu(Thread::Current(), *deoptimization_lock_);
2610 switch (req.kind) {
2611 case DeoptimizationRequest::kFullDeoptimization: {
2612 DCHECK(req.method == nullptr);
2613 if (full_deoptimization_event_count_ == 0) {
2614 VLOG(jdwp) << "Request full deoptimization";
2615 deoptimization_requests_.push_back(req);
2616 }
2617 ++full_deoptimization_event_count_;
2618 break;
2619 }
2620 case DeoptimizationRequest::kFullUndeoptimization: {
2621 DCHECK(req.method == nullptr);
2622 DCHECK_GT(full_deoptimization_event_count_, 0U);
2623 --full_deoptimization_event_count_;
2624 if (full_deoptimization_event_count_ == 0) {
2625 VLOG(jdwp) << "Request full undeoptimization";
2626 deoptimization_requests_.push_back(req);
2627 }
2628 break;
2629 }
2630 case DeoptimizationRequest::kSelectiveDeoptimization: {
2631 DCHECK(req.method != nullptr);
2632 VLOG(jdwp) << "Request deoptimization of " << PrettyMethod(req.method);
2633 deoptimization_requests_.push_back(req);
2634 break;
2635 }
2636 case DeoptimizationRequest::kSelectiveUndeoptimization: {
2637 DCHECK(req.method != nullptr);
2638 VLOG(jdwp) << "Request undeoptimization of " << PrettyMethod(req.method);
2639 deoptimization_requests_.push_back(req);
2640 break;
2641 }
2642 default: {
2643 LOG(FATAL) << "Unknown deoptimization request kind " << req.kind;
2644 break;
2645 }
2646 }
2647}
2648
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002649void Dbg::ManageDeoptimization() {
2650 Thread* const self = Thread::Current();
2651 {
2652 // Avoid suspend/resume if there is no pending request.
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002653 MutexLock mu(self, *deoptimization_lock_);
2654 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002655 return;
2656 }
2657 }
2658 CHECK_EQ(self->GetState(), kRunnable);
2659 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
2660 // We need to suspend mutator threads first.
2661 Runtime* const runtime = Runtime::Current();
2662 runtime->GetThreadList()->SuspendAll();
2663 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002664 {
2665 MutexLock mu(self, *deoptimization_lock_);
2666 for (const DeoptimizationRequest& request : deoptimization_requests_) {
2667 ProcessDeoptimizationRequest(request);
2668 }
2669 deoptimization_requests_.clear();
2670 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002671 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
2672 runtime->GetThreadList()->ResumeAll();
2673 self->TransitionFromSuspendedToRunnable();
2674}
2675
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002676static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
2677 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2678 MethodHelper mh(m);
2679 const DexFile::CodeItem* code_item = mh.GetCodeItem();
2680 if (code_item == nullptr) {
2681 // TODO We should not be asked to watch location in a native or abstract method so the code item
2682 // should never be null. We could just check we never encounter this case.
2683 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002684 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002685 SirtRef<mirror::DexCache> dex_cache(self, mh.GetDexCache());
2686 SirtRef<mirror::ClassLoader> class_loader(self, mh.GetClassLoader());
2687 verifier::MethodVerifier verifier(&mh.GetDexFile(), &dex_cache, &class_loader,
2688 &mh.GetClassDef(), code_item, m->GetDexMethodIndex(), m,
2689 m->GetAccessFlags(), false, true);
2690 // Note: we don't need to verify the method.
2691 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
2692}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002693
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002694static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
2695 EXCLUSIVE_LOCKS_REQUIRED(Locks::breakpoint_lock_) {
2696 for (const Breakpoint& breakpoint : gBreakpoints) {
2697 if (breakpoint.method == m) {
2698 return &breakpoint;
2699 }
2700 }
2701 return nullptr;
2702}
2703
2704// Sanity checks all existing breakpoints on the same method.
2705static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m, bool need_full_deoptimization)
2706 EXCLUSIVE_LOCKS_REQUIRED(Locks::breakpoint_lock_) {
2707 if (kIsDebugBuild) {
2708 for (const Breakpoint& breakpoint : gBreakpoints) {
2709 CHECK_EQ(need_full_deoptimization, breakpoint.need_full_deoptimization);
2710 }
2711 if (need_full_deoptimization) {
2712 // We should have deoptimized everything but not "selectively" deoptimized this method.
2713 CHECK(Runtime::Current()->GetInstrumentation()->AreAllMethodsDeoptimized());
2714 CHECK(!Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2715 } else {
2716 // We should have "selectively" deoptimized this method.
2717 // Note: while we have not deoptimized everything for this method, we may have done it for
2718 // another event.
2719 CHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2720 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002721 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002722}
2723
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002724// Installs a breakpoint at the specified location. Also indicates through the deoptimization
2725// request if we need to deoptimize.
2726void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
2727 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07002728 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002729 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002730
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002731 MutexLock mu(self, *Locks::breakpoint_lock_);
2732 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
2733 bool need_full_deoptimization;
2734 if (existing_breakpoint == nullptr) {
2735 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
2736 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
2737 need_full_deoptimization = IsMethodPossiblyInlined(self, m);
2738 if (need_full_deoptimization) {
2739 req->kind = DeoptimizationRequest::kFullDeoptimization;
2740 req->method = nullptr;
2741 } else {
2742 req->kind = DeoptimizationRequest::kSelectiveDeoptimization;
2743 req->method = m;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002744 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002745 } else {
2746 // There is at least one breakpoint for this method: we don't need to deoptimize.
2747 req->kind = DeoptimizationRequest::kNothing;
2748 req->method = nullptr;
2749
2750 need_full_deoptimization = existing_breakpoint->need_full_deoptimization;
2751 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002752 }
2753
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002754 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, need_full_deoptimization));
2755 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
2756 << gBreakpoints[gBreakpoints.size() - 1];
2757}
2758
2759// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
2760// request if we need to undeoptimize.
2761void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
2762 mirror::ArtMethod* m = FromMethodId(location->method_id);
2763 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
2764
2765 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
2766 bool need_full_deoptimization = false;
2767 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
2768 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == location->dex_pc) {
2769 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
2770 need_full_deoptimization = gBreakpoints[i].need_full_deoptimization;
2771 DCHECK_NE(need_full_deoptimization, Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2772 gBreakpoints.erase(gBreakpoints.begin() + i);
2773 break;
2774 }
2775 }
2776 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
2777 if (existing_breakpoint == nullptr) {
2778 // There is no more breakpoint on this method: we need to undeoptimize.
2779 if (need_full_deoptimization) {
2780 // This method required full deoptimization: we need to undeoptimize everything.
2781 req->kind = DeoptimizationRequest::kFullUndeoptimization;
2782 req->method = nullptr;
2783 } else {
2784 // This method required selective deoptimization: we need to undeoptimize only that method.
2785 req->kind = DeoptimizationRequest::kSelectiveUndeoptimization;
2786 req->method = m;
2787 }
2788 } else {
2789 // There is at least one breakpoint for this method: we don't need to undeoptimize.
2790 req->kind = DeoptimizationRequest::kNothing;
2791 req->method = nullptr;
2792 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
Elliott Hughes86964332012-02-15 19:37:42 -08002793 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002794}
2795
Jeff Hao449db332013-04-12 18:30:52 -07002796// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
2797// cause suspension if the thread is the current thread.
2798class ScopedThreadSuspension {
2799 public:
Ian Rogers33e95662013-05-20 20:29:14 -07002800 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002801 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07002802 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Jeff Hao449db332013-04-12 18:30:52 -07002803 thread_(NULL),
2804 error_(JDWP::ERR_NONE),
2805 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07002806 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07002807 ScopedObjectAccessUnchecked soa(self);
2808 {
2809 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2810 error_ = DecodeThread(soa, thread_id, thread_);
2811 }
2812 if (error_ == JDWP::ERR_NONE) {
2813 if (thread_ == soa.Self()) {
2814 self_suspend_ = true;
2815 } else {
2816 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
2817 jobject thread_peer = gRegistry->GetJObject(thread_id);
2818 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002819 Thread* suspended_thread = ThreadList::SuspendThreadByPeer(thread_peer, true, true,
2820 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07002821 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
2822 if (suspended_thread == NULL) {
2823 // Thread terminated from under us while suspending.
2824 error_ = JDWP::ERR_INVALID_THREAD;
2825 } else {
2826 CHECK_EQ(suspended_thread, thread_);
2827 other_suspend_ = true;
2828 }
2829 }
2830 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002831 }
Elliott Hughes86964332012-02-15 19:37:42 -08002832
Jeff Hao449db332013-04-12 18:30:52 -07002833 Thread* GetThread() const {
2834 return thread_;
2835 }
2836
2837 JDWP::JdwpError GetError() const {
2838 return error_;
2839 }
2840
2841 ~ScopedThreadSuspension() {
2842 if (other_suspend_) {
2843 Runtime::Current()->GetThreadList()->Resume(thread_, true);
2844 }
2845 }
2846
2847 private:
2848 Thread* thread_;
2849 JDWP::JdwpError error_;
2850 bool self_suspend_;
2851 bool other_suspend_;
2852};
2853
2854JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
2855 JDWP::JdwpStepDepth step_depth) {
2856 Thread* self = Thread::Current();
2857 ScopedThreadSuspension sts(self, thread_id);
2858 if (sts.GetError() != JDWP::ERR_NONE) {
2859 return sts.GetError();
2860 }
2861
Elliott Hughes2435a572012-02-17 16:07:41 -08002862 //
2863 // Work out what Method* we're in, the current line number, and how deep the stack currently
2864 // is for step-out.
2865 //
2866
Ian Rogers0399dde2012-06-06 17:09:28 -07002867 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002868 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
2869 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002870 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002871 : StackVisitor(thread, NULL), single_step_control_(single_step_control),
2872 line_number_(line_number) {
2873 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
2874 single_step_control_->method = NULL;
2875 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08002876 }
Ian Rogersca190662012-06-26 15:45:57 -07002877
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002878 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2879 // annotalysis.
2880 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002881 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002882 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002883 ++single_step_control_->stack_depth;
2884 if (single_step_control_->method == NULL) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08002885 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002886 single_step_control_->method = m;
2887 *line_number_ = -1;
Elliott Hughes2435a572012-02-17 16:07:41 -08002888 if (dex_cache != NULL) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07002889 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002890 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08002891 }
Elliott Hughes86964332012-02-15 19:37:42 -08002892 }
2893 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002894 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08002895 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002896
2897 SingleStepControl* const single_step_control_;
2898 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08002899 };
Jeff Hao449db332013-04-12 18:30:52 -07002900
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002901 Thread* const thread = sts.GetThread();
2902 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
2903 DCHECK(single_step_control != nullptr);
2904 int32_t line_number = -1;
2905 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07002906 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08002907
Elliott Hughes2435a572012-02-17 16:07:41 -08002908 //
2909 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
2910 //
2911
2912 struct DebugCallbackContext {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002913 explicit DebugCallbackContext(SingleStepControl* single_step_control, int32_t line_number)
2914 : single_step_control_(single_step_control), line_number_(line_number),
2915 last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002916 }
2917
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002918 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002919 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002920 if (static_cast<int32_t>(line_number) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002921 if (!context->last_pc_valid) {
2922 // Everything from this address until the next line change is ours.
2923 context->last_pc = address;
2924 context->last_pc_valid = true;
2925 }
2926 // Otherwise, if we're already in a valid range for this line,
2927 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002928 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08002929 // Add everything from the last entry up until here to the set
2930 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002931 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08002932 }
2933 context->last_pc_valid = false;
2934 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002935 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08002936 }
2937
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002938 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08002939 // If the line number was the last in the position table...
2940 if (last_pc_valid) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002941 size_t end = MethodHelper(single_step_control_->method).GetCodeItem()->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08002942 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002943 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08002944 }
2945 }
2946 }
2947
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002948 SingleStepControl* const single_step_control_;
2949 const int32_t line_number_;
Elliott Hughes2435a572012-02-17 16:07:41 -08002950 bool last_pc_valid;
2951 uint32_t last_pc;
2952 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002953 single_step_control->dex_pcs.clear();
Ian Rogersef7d42f2014-01-06 12:55:46 -08002954 mirror::ArtMethod* m = single_step_control->method;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002955 if (!m->IsNative()) {
2956 DebugCallbackContext context(single_step_control, line_number);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08002957 MethodHelper mh(m);
2958 mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(),
2959 DebugCallbackContext::Callback, NULL, &context);
2960 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002961
2962 //
2963 // Everything else...
2964 //
2965
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002966 single_step_control->step_size = step_size;
2967 single_step_control->step_depth = step_depth;
2968 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08002969
Elliott Hughes2435a572012-02-17 16:07:41 -08002970 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002971 VLOG(jdwp) << "Single-step thread: " << *thread;
2972 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
2973 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
2974 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
2975 VLOG(jdwp) << "Single-step current line: " << line_number;
2976 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08002977 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002978 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 -08002979 VLOG(jdwp) << StringPrintf(" %#x", *it);
Elliott Hughes2435a572012-02-17 16:07:41 -08002980 }
2981 }
2982
2983 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002984}
2985
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002986void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
2987 ScopedObjectAccessUnchecked soa(Thread::Current());
2988 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2989 Thread* thread;
2990 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01002991 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002992 SingleStepControl* single_step_control = thread->GetSingleStepControl();
2993 DCHECK(single_step_control != nullptr);
2994 single_step_control->is_active = false;
2995 single_step_control->dex_pcs.clear();
2996 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002997}
2998
Elliott Hughes45651fd2012-02-21 15:48:20 -08002999static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3000 switch (tag) {
3001 default:
3002 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
3003
3004 // Primitives.
3005 case JDWP::JT_BYTE: return 'B';
3006 case JDWP::JT_CHAR: return 'C';
3007 case JDWP::JT_FLOAT: return 'F';
3008 case JDWP::JT_DOUBLE: return 'D';
3009 case JDWP::JT_INT: return 'I';
3010 case JDWP::JT_LONG: return 'J';
3011 case JDWP::JT_SHORT: return 'S';
3012 case JDWP::JT_VOID: return 'V';
3013 case JDWP::JT_BOOLEAN: return 'Z';
3014
3015 // Reference types.
3016 case JDWP::JT_ARRAY:
3017 case JDWP::JT_OBJECT:
3018 case JDWP::JT_STRING:
3019 case JDWP::JT_THREAD:
3020 case JDWP::JT_THREAD_GROUP:
3021 case JDWP::JT_CLASS_LOADER:
3022 case JDWP::JT_CLASS_OBJECT:
3023 return 'L';
3024 }
3025}
3026
Elliott Hughes88d63092013-01-09 09:55:54 -08003027JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3028 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003029 uint32_t arg_count, uint64_t* arg_values,
3030 JDWP::JdwpTag* arg_types, uint32_t options,
3031 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3032 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003033 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3034
3035 Thread* targetThread = NULL;
3036 DebugInvokeReq* req = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003037 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003038 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003039 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003040 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08003041 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread);
3042 if (error != JDWP::ERR_NONE) {
3043 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3044 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003045 }
3046 req = targetThread->GetInvokeReq();
3047 if (!req->ready) {
3048 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3049 return JDWP::ERR_INVALID_THREAD;
3050 }
3051
3052 /*
3053 * We currently have a bug where we don't successfully resume the
3054 * target thread if the suspend count is too deep. We're expected to
3055 * require one "resume" for each "suspend", but when asked to execute
3056 * a method we have to resume fully and then re-suspend it back to the
3057 * same level. (The easiest way to cause this is to type "suspend"
3058 * multiple times in jdb.)
3059 *
3060 * It's unclear what this means when the event specifies "resume all"
3061 * and some threads are suspended more deeply than others. This is
3062 * a rare problem, so for now we just prevent it from hanging forever
3063 * by rejecting the method invocation request. Without this, we will
3064 * be stuck waiting on a suspended thread.
3065 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003066 int suspend_count;
3067 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003068 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003069 suspend_count = targetThread->GetSuspendCount();
3070 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003071 if (suspend_count > 1) {
3072 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003073 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003074 }
3075
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003076 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003077 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08003078 if (receiver == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003079 return JDWP::ERR_INVALID_OBJECT;
3080 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003081
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003082 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08003083 if (thread == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003084 return JDWP::ERR_INVALID_OBJECT;
3085 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003086 // TODO: check that 'thread' is actually a java.lang.Thread!
3087
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003088 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003089 if (c == NULL) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003090 return status;
3091 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003092
Brian Carlstromea46f952013-07-30 01:26:50 -07003093 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003094 if (m->IsStatic() != (receiver == NULL)) {
3095 return JDWP::ERR_INVALID_METHODID;
3096 }
3097 if (m->IsStatic()) {
3098 if (m->GetDeclaringClass() != c) {
3099 return JDWP::ERR_INVALID_METHODID;
3100 }
3101 } else {
3102 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3103 return JDWP::ERR_INVALID_METHODID;
3104 }
3105 }
3106
3107 // Check the argument list matches the method.
3108 MethodHelper mh(m);
3109 if (mh.GetShortyLength() - 1 != arg_count) {
3110 return JDWP::ERR_ILLEGAL_ARGUMENT;
3111 }
3112 const char* shorty = mh.GetShorty();
Elliott Hughes09201632013-04-15 15:50:07 -07003113 const DexFile::TypeList* types = mh.GetParameterTypeList();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003114 for (size_t i = 0; i < arg_count; ++i) {
3115 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
3116 return JDWP::ERR_ILLEGAL_ARGUMENT;
3117 }
Elliott Hughes09201632013-04-15 15:50:07 -07003118
3119 if (shorty[i + 1] == 'L') {
3120 // Did we really get an argument of an appropriate reference type?
3121 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
3122 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i]);
3123 if (argument == ObjectRegistry::kInvalidObject) {
3124 return JDWP::ERR_INVALID_OBJECT;
3125 }
Sebastien Hertz0630ab52013-11-28 18:53:35 +01003126 if (argument != NULL && !argument->InstanceOf(parameter_type)) {
Elliott Hughes09201632013-04-15 15:50:07 -07003127 return JDWP::ERR_ILLEGAL_ARGUMENT;
3128 }
3129
3130 // Turn the on-the-wire ObjectId into a jobject.
3131 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3132 v.l = gRegistry->GetJObject(arg_values[i]);
3133 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003134 }
3135
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003136 req->receiver = receiver;
3137 req->thread = thread;
3138 req->klass = c;
3139 req->method = m;
3140 req->arg_count = arg_count;
3141 req->arg_values = arg_values;
3142 req->options = options;
3143 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003144 }
3145
3146 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3147 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3148 // call, and it's unwise to hold it during WaitForSuspend.
3149
3150 {
3151 /*
3152 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003153 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003154 * run out of memory. It's also a good idea to change it before locking
3155 * the invokeReq mutex, although that should never be held for long.
3156 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003157 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003158
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003159 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003160 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003161 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003162
3163 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003164 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003165 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003166 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003167 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003168 thread_list->Resume(targetThread, true);
3169 }
3170
3171 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003172 while (req->invoke_needed) {
3173 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003174 }
3175 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003176 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003177
3178 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003179 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003180 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003181 }
3182
3183 /*
3184 * Suspend the threads. We waited for the target thread to suspend
3185 * itself, so all we need to do is suspend the others.
3186 *
3187 * The suspendAllThreads() call will double-suspend the event thread,
3188 * so we want to resume the target thread once to keep the books straight.
3189 */
3190 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003191 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003192 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003193 thread_list->SuspendAllForDebugger();
3194 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003195 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003196 thread_list->Resume(targetThread, true);
3197 }
3198
3199 // Copy the result.
3200 *pResultTag = req->result_tag;
3201 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003202 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003203 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003204 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003205 }
3206 *pExceptionId = req->exception;
3207 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003208}
3209
3210void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003211 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003212
Elliott Hughes81ff3182012-03-23 20:35:56 -07003213 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003214 // to preserve that across the method invocation.
Ian Rogers62d6c772013-02-27 08:32:07 -08003215 SirtRef<mirror::Object> old_throw_this_object(soa.Self(), NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -07003216 SirtRef<mirror::ArtMethod> old_throw_method(soa.Self(), NULL);
Ian Rogers62d6c772013-02-27 08:32:07 -08003217 SirtRef<mirror::Throwable> old_exception(soa.Self(), NULL);
3218 uint32_t old_throw_dex_pc;
3219 {
3220 ThrowLocation old_throw_location;
3221 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
3222 old_throw_this_object.reset(old_throw_location.GetThis());
3223 old_throw_method.reset(old_throw_location.GetMethod());
3224 old_exception.reset(old_exception_obj);
3225 old_throw_dex_pc = old_throw_location.GetDexPc();
3226 soa.Self()->ClearException();
3227 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003228
3229 // Translate the method through the vtable, unless the debugger wants to suppress it.
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003230 SirtRef<mirror::ArtMethod> m(soa.Self(), pReq->method);
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003231 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != NULL) {
Sebastien Hertz83a47d82014-03-20 09:57:40 +01003232 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.get());
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003233 if (actual_method != m.get()) {
3234 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.get()) << " to " << PrettyMethod(actual_method);
3235 m.reset(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003236 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003237 }
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003238 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003239 << " receiver=" << pReq->receiver
3240 << " arg_count=" << pReq->arg_count;
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003241 CHECK(m.get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003242
3243 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3244
Sebastien Hertz83a47d82014-03-20 09:57:40 +01003245 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.get()),
Ian Rogers53b8b092014-03-13 23:45:53 -07003246 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003247
Ian Rogers62d6c772013-02-27 08:32:07 -08003248 mirror::Throwable* exception = soa.Self()->GetException(NULL);
3249 soa.Self()->ClearException();
3250 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003251 pReq->result_tag = BasicTagFromDescriptor(MethodHelper(m.get()).GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003252 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003253 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3254 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003255 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003256 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3257 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003258 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003259 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003260 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003261 pReq->result_tag = new_tag;
3262 }
3263
3264 /*
3265 * Register the object. We don't actually need an ObjectId yet,
3266 * but we do need to be sure that the GC won't move or discard the
3267 * object when we switch out of RUNNING. The ObjectId conversion
3268 * will add the object to the "do not touch" list.
3269 *
3270 * We can't use the "tracked allocation" mechanism here because
3271 * the object is going to be handed off to a different thread.
3272 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003273 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003274 }
3275
3276 if (old_exception.get() != NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003277 ThrowLocation gc_safe_throw_location(old_throw_this_object.get(), old_throw_method.get(),
3278 old_throw_dex_pc);
3279 soa.Self()->SetException(gc_safe_throw_location, old_exception.get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003280 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003281}
3282
Elliott Hughesd07986f2011-12-06 18:27:45 -08003283/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003284 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003285 * need to process each, accumulate the replies, and ship the whole thing
3286 * back.
3287 *
3288 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3289 * and includes the chunk type/length, followed by the data.
3290 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003291 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003292 * chunk. If this becomes inconvenient we will need to adapt.
3293 */
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003294bool Dbg::DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003295 Thread* self = Thread::Current();
3296 JNIEnv* env = self->GetJniEnv();
3297
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003298 uint32_t type = request.ReadUnsigned32("type");
3299 uint32_t length = request.ReadUnsigned32("length");
3300
3301 // Create a byte[] corresponding to 'request'.
3302 size_t request_length = request.size();
3303 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003304 if (dataArray.get() == NULL) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003305 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003306 env->ExceptionClear();
3307 return false;
3308 }
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003309 env->SetByteArrayRegion(dataArray.get(), 0, request_length, reinterpret_cast<const jbyte*>(request.data()));
3310 request.Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003311
3312 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003313 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003314 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003315 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003316 return false;
3317 }
3318
3319 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003320 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3321 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003322 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003323 if (env->ExceptionCheck()) {
3324 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3325 env->ExceptionDescribe();
3326 env->ExceptionClear();
3327 return false;
3328 }
3329
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003330 if (chunk.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003331 return false;
3332 }
3333
3334 /*
3335 * Pull the pieces out of the chunk. We copy the results into a
3336 * newly-allocated buffer that the caller can free. We don't want to
3337 * continue using the Chunk object because nothing has a reference to it.
3338 *
3339 * We could avoid this by returning type/data/offset/length and having
3340 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003341 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003342 * if we have responses for multiple chunks.
3343 *
3344 * So we're pretty much stuck with copying data around multiple times.
3345 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003346 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 -08003347 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003348 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003349 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003350
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003351 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 -07003352 if (length == 0 || replyData.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003353 return false;
3354 }
3355
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003356 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003357 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
3358 if (reply == NULL) {
3359 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3360 return false;
3361 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003362 JDWP::Set4BE(reply + 0, type);
3363 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003364 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003365
3366 *pReplyBuf = reply;
3367 *pReplyLen = length + kChunkHdrLen;
3368
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003369 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003370 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003371}
3372
Elliott Hughesa2155262011-11-16 16:26:58 -08003373void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003374 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003375
3376 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003377 if (self->GetState() != kRunnable) {
3378 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3379 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003380 }
3381
3382 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003383 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003384 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3385 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3386 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003387 if (env->ExceptionCheck()) {
3388 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3389 env->ExceptionDescribe();
3390 env->ExceptionClear();
3391 }
3392}
3393
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003394void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003395 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003396}
3397
3398void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003399 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003400 gDdmThreadNotification = false;
3401}
3402
3403/*
Elliott Hughes82188472011-11-07 18:11:48 -08003404 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003405 *
3406 * Because we broadcast the full set of threads when the notifications are
3407 * first enabled, it's possible for "thread" to be actively executing.
3408 */
Elliott Hughes82188472011-11-07 18:11:48 -08003409void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003410 if (!gDdmThreadNotification) {
3411 return;
3412 }
3413
Elliott Hughes82188472011-11-07 18:11:48 -08003414 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003415 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003416 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003417 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003418 } else {
3419 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003420 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003421 SirtRef<mirror::String> name(soa.Self(), t->GetThreadName(soa));
Elliott Hughes82188472011-11-07 18:11:48 -08003422 size_t char_count = (name.get() != NULL) ? name->GetLength() : 0;
jeffhao725a9572012-11-13 18:20:12 -08003423 const jchar* chars = (name.get() != NULL) ? name->GetCharArray()->GetData() : NULL;
Elliott Hughes82188472011-11-07 18:11:48 -08003424
Elliott Hughes21f32d72011-11-09 17:44:13 -08003425 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003426 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003427 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003428 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3429 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003430 }
3431}
3432
Elliott Hughes47fce012011-10-25 18:37:19 -07003433void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003434 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003435 gDdmThreadNotification = enable;
3436 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003437 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3438 // see a suspension in progress and block until that ends. They then post their own start
3439 // notification.
3440 SuspendVM();
3441 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003442 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003443 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003444 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003445 threads = Runtime::Current()->GetThreadList()->GetList();
3446 }
3447 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003448 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003449 for (Thread* thread : threads) {
3450 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003451 }
3452 }
3453 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003454 }
3455}
3456
Elliott Hughesa2155262011-11-16 16:26:58 -08003457void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003458 if (IsDebuggerActive()) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07003459 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08003460 JDWP::ObjectId id = gRegistry->Add(t->GetPeer());
Elliott Hughes82188472011-11-07 18:11:48 -08003461 gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003462 }
Elliott Hughes82188472011-11-07 18:11:48 -08003463 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003464}
3465
3466void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003467 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003468}
3469
3470void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003471 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003472}
3473
Elliott Hughes82188472011-11-07 18:11:48 -08003474void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003475 CHECK(buf != NULL);
3476 iovec vec[1];
3477 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3478 vec[0].iov_len = byte_count;
3479 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003480}
3481
Elliott Hughes21f32d72011-11-09 17:44:13 -08003482void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3483 DdmSendChunk(type, bytes.size(), &bytes[0]);
3484}
3485
Brian Carlstromf5293522013-07-19 00:24:00 -07003486void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003487 if (gJdwpState == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003488 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003489 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003490 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003491 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003492}
3493
Elliott Hughes767a1472011-10-26 18:49:02 -07003494int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3495 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003496 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003497 return true;
3498 }
3499
3500 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
3501 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
3502 return false;
3503 }
3504
3505 gDdmHpifWhen = when;
3506 return true;
3507}
3508
3509bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
3510 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
3511 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
3512 return false;
3513 }
3514
3515 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
3516 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
3517 return false;
3518 }
3519
3520 if (native) {
3521 gDdmNhsgWhen = when;
3522 gDdmNhsgWhat = what;
3523 } else {
3524 gDdmHpsgWhen = when;
3525 gDdmHpsgWhat = what;
3526 }
3527 return true;
3528}
3529
Elliott Hughes7162ad92011-10-27 14:08:42 -07003530void Dbg::DdmSendHeapInfo(HpifWhen reason) {
3531 // If there's a one-shot 'when', reset it.
3532 if (reason == gDdmHpifWhen) {
3533 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
3534 gDdmHpifWhen = HPIF_WHEN_NEVER;
3535 }
3536 }
3537
3538 /*
3539 * Chunk HPIF (client --> server)
3540 *
3541 * Heap Info. General information about the heap,
3542 * suitable for a summary display.
3543 *
3544 * [u4]: number of heaps
3545 *
3546 * For each heap:
3547 * [u4]: heap ID
3548 * [u8]: timestamp in ms since Unix epoch
3549 * [u1]: capture reason (same as 'when' value from server)
3550 * [u4]: max heap size in bytes (-Xmx)
3551 * [u4]: current heap size in bytes
3552 * [u4]: current number of bytes allocated
3553 * [u4]: current number of objects allocated
3554 */
3555 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07003556 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08003557 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08003558 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003559 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08003560 JDWP::Append8BE(bytes, MilliTime());
3561 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003562 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
3563 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003564 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
3565 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08003566 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
3567 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07003568}
3569
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003570enum HpsgSolidity {
3571 SOLIDITY_FREE = 0,
3572 SOLIDITY_HARD = 1,
3573 SOLIDITY_SOFT = 2,
3574 SOLIDITY_WEAK = 3,
3575 SOLIDITY_PHANTOM = 4,
3576 SOLIDITY_FINALIZABLE = 5,
3577 SOLIDITY_SWEEP = 6,
3578};
3579
3580enum HpsgKind {
3581 KIND_OBJECT = 0,
3582 KIND_CLASS_OBJECT = 1,
3583 KIND_ARRAY_1 = 2,
3584 KIND_ARRAY_2 = 3,
3585 KIND_ARRAY_4 = 4,
3586 KIND_ARRAY_8 = 5,
3587 KIND_UNKNOWN = 6,
3588 KIND_NATIVE = 7,
3589};
3590
3591#define HPSG_PARTIAL (1<<7)
3592#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
3593
Ian Rogers30fab402012-01-23 15:43:46 -08003594class HeapChunkContext {
3595 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003596 // Maximum chunk size. Obtain this from the formula:
3597 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
3598 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08003599 : buf_(16384 - 16),
3600 type_(0),
3601 merge_(merge) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003602 Reset();
3603 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08003604 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003605 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08003606 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003607 }
3608 }
3609
3610 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08003611 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003612 Flush();
3613 }
3614 }
3615
3616 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08003617 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003618 return;
3619 }
3620
3621 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003622 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
3623 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003624
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003625 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
3626 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003627 // [u4]: length of piece, in allocation units
3628 // 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 -08003629 pieceLenField_ = p_;
3630 JDWP::Write4BE(&p_, 0x55555555);
3631 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003632 }
3633
Ian Rogersb726dcb2012-09-05 08:57:23 -07003634 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd636b062013-01-18 17:51:18 -08003635 if (pieceLenField_ == NULL) {
3636 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
3637 CHECK(needHeader_);
3638 return;
3639 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003640 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08003641 CHECK_LE(&buf_[0], pieceLenField_);
3642 CHECK_LE(pieceLenField_, p_);
3643 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003644
Ian Rogers30fab402012-01-23 15:43:46 -08003645 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003646 Reset();
3647 }
3648
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003649 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003650 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3651 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003652 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08003653 }
3654
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003655 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08003656 enum { ALLOCATION_UNIT_SIZE = 8 };
3657
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003658 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08003659 p_ = &buf_[0];
Ian Rogers15bf2d32012-08-28 17:33:04 -07003660 startOfNextMemoryChunk_ = NULL;
Ian Rogers30fab402012-01-23 15:43:46 -08003661 totalAllocationUnits_ = 0;
3662 needHeader_ = true;
3663 pieceLenField_ = NULL;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003664 }
3665
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003666 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003667 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3668 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003669 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
3670 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07003671 if (used_bytes == 0) {
3672 if (start == NULL) {
3673 // Reset for start of new heap.
3674 startOfNextMemoryChunk_ = NULL;
3675 Flush();
3676 }
3677 // Only process in use memory so that free region information
3678 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08003679 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08003680 }
3681
Ian Rogers15bf2d32012-08-28 17:33:04 -07003682 /* If we're looking at the native heap, we'll just return
3683 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
3684 */
3685 bool native = type_ == CHUNK_TYPE("NHSG");
3686
3687 if (startOfNextMemoryChunk_ != NULL) {
3688 // Transmit any pending free memory. Native free memory of
3689 // over kMaxFreeLen could be because of the use of mmaps, so
3690 // don't report. If not free memory then start a new segment.
3691 bool flush = true;
3692 if (start > startOfNextMemoryChunk_) {
3693 const size_t kMaxFreeLen = 2 * kPageSize;
3694 void* freeStart = startOfNextMemoryChunk_;
3695 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07003696 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07003697 if (!native || freeLen < kMaxFreeLen) {
3698 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
3699 flush = false;
3700 }
3701 }
3702 if (flush) {
3703 startOfNextMemoryChunk_ = NULL;
3704 Flush();
3705 }
3706 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08003707 mirror::Object* obj = reinterpret_cast<mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08003708
3709 // Determine the type of this chunk.
3710 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
3711 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003712 uint8_t state = ExamineObject(obj, native);
3713 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
3714 // allocation then the first sizeof(size_t) may belong to it.
3715 const size_t dlMallocOverhead = sizeof(size_t);
3716 AppendChunk(state, start, used_bytes + dlMallocOverhead);
Brian Carlstrom2d888622013-07-18 17:02:00 -07003717 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + dlMallocOverhead;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003718 }
Elliott Hughesa2155262011-11-16 16:26:58 -08003719
Ian Rogers15bf2d32012-08-28 17:33:04 -07003720 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003721 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003722 // Make sure there's enough room left in the buffer.
3723 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
3724 // 17 bytes for any header.
3725 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
3726 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3727 if (bytesLeft < needed) {
3728 Flush();
3729 }
3730
3731 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3732 if (bytesLeft < needed) {
3733 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
3734 << needed << " bytes)";
3735 return;
3736 }
3737 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08003738 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003739 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
3740 totalAllocationUnits_ += length;
3741 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08003742 *p_++ = state | HPSG_PARTIAL;
3743 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07003744 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08003745 }
Ian Rogers30fab402012-01-23 15:43:46 -08003746 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003747 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003748 }
3749
Ian Rogersef7d42f2014-01-06 12:55:46 -08003750 uint8_t ExamineObject(mirror::Object* o, bool is_native_heap)
3751 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003752 if (o == NULL) {
3753 return HPSG_STATE(SOLIDITY_FREE, 0);
3754 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003755
Elliott Hughesa2155262011-11-16 16:26:58 -08003756 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003757
Elliott Hughesa2155262011-11-16 16:26:58 -08003758 // If we're looking at the native heap, we'll just return
3759 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003760 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003761 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
3762 }
3763
Ian Rogers5bfa60f2012-09-02 21:17:56 -07003764 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003765 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003766 }
3767
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003768 mirror::Class* c = o->GetClass();
Elliott Hughesa2155262011-11-16 16:26:58 -08003769 if (c == NULL) {
3770 // The object was probably just created but hasn't been initialized yet.
3771 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3772 }
3773
Mathieu Chartier590fee92013-09-13 13:46:47 -07003774 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003775 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08003776 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
3777 }
3778
3779 if (c->IsClassClass()) {
3780 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
3781 }
3782
3783 if (c->IsArrayClass()) {
3784 if (o->IsObjectArray()) {
3785 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3786 }
3787 switch (c->GetComponentSize()) {
3788 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
3789 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
3790 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3791 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
3792 }
3793 }
3794
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003795 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3796 }
3797
Ian Rogers30fab402012-01-23 15:43:46 -08003798 std::vector<uint8_t> buf_;
3799 uint8_t* p_;
3800 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003801 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08003802 size_t totalAllocationUnits_;
3803 uint32_t type_;
3804 bool merge_;
3805 bool needHeader_;
3806
Elliott Hughesa2155262011-11-16 16:26:58 -08003807 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
3808};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003809
3810void Dbg::DdmSendHeapSegments(bool native) {
3811 Dbg::HpsgWhen when;
3812 Dbg::HpsgWhat what;
3813 if (!native) {
3814 when = gDdmHpsgWhen;
3815 what = gDdmHpsgWhat;
3816 } else {
3817 when = gDdmNhsgWhen;
3818 what = gDdmNhsgWhat;
3819 }
3820 if (when == HPSG_WHEN_NEVER) {
3821 return;
3822 }
3823
3824 // Figure out what kind of chunks we'll be sending.
3825 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
3826
3827 // First, send a heap start chunk.
3828 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003829 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003830 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
3831
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003832 Thread* self = Thread::Current();
3833
3834 // To allow the Walk/InspectAll() below to exclusively-lock the
3835 // mutator lock, temporarily release the shared access to the
3836 // mutator lock here by transitioning to the suspended state.
3837 Locks::mutator_lock_->AssertSharedHeld(self);
3838 self->TransitionFromRunnableToSuspended(kSuspended);
3839
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003840 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08003841 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
3842 if (native) {
Ian Rogers1d54e732013-05-02 21:10:01 -07003843 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003844 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07003845 gc::Heap* heap = Runtime::Current()->GetHeap();
3846 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers1d54e732013-05-02 21:10:01 -07003847 typedef std::vector<gc::space::ContinuousSpace*>::const_iterator It;
3848 for (It cur = spaces.begin(), end = spaces.end(); cur != end; ++cur) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003849 if ((*cur)->IsMallocSpace()) {
3850 (*cur)->AsMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07003851 }
3852 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07003853 // Walk the large objects, these are not in the AllocSpace.
3854 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003855 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003856
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003857 // Shared-lock the mutator lock back.
3858 self->TransitionFromSuspendedToRunnable();
3859 Locks::mutator_lock_->AssertSharedHeld(self);
3860
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003861 // Finally, send a heap end chunk.
3862 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07003863}
3864
Elliott Hughesb1a58792013-07-11 18:10:58 -07003865static size_t GetAllocTrackerMax() {
3866#ifdef HAVE_ANDROID_OS
3867 // Check whether there's a system property overriding the number of records.
3868 const char* propertyName = "dalvik.vm.allocTrackerMax";
3869 char allocRecordMaxString[PROPERTY_VALUE_MAX];
3870 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
3871 char* end;
3872 size_t value = strtoul(allocRecordMaxString, &end, 10);
3873 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07003874 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
3875 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07003876 return kDefaultNumAllocRecords;
3877 }
3878 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07003879 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
3880 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07003881 return kDefaultNumAllocRecords;
3882 }
3883 return value;
3884 }
3885#endif
3886 return kDefaultNumAllocRecords;
3887}
3888
Elliott Hughes545a0642011-11-08 19:10:03 -08003889void Dbg::SetAllocTrackingEnabled(bool enabled) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003890 if (enabled) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01003891 {
3892 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
3893 if (recent_allocation_records_ == NULL) {
3894 alloc_record_max_ = GetAllocTrackerMax();
3895 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
3896 << kMaxAllocRecordStackDepth << " frames, taking "
3897 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
3898 alloc_record_head_ = alloc_record_count_ = 0;
3899 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
3900 CHECK(recent_allocation_records_ != NULL);
3901 }
Elliott Hughes545a0642011-11-08 19:10:03 -08003902 }
Ian Rogersfa824272013-11-05 16:12:57 -08003903 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08003904 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08003905 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01003906 {
3907 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
3908 delete[] recent_allocation_records_;
3909 recent_allocation_records_ = NULL;
3910 }
Elliott Hughes545a0642011-11-08 19:10:03 -08003911 }
3912}
3913
Ian Rogers0399dde2012-06-06 17:09:28 -07003914struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08003915 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003916 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08003917 : StackVisitor(thread, NULL), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08003918
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003919 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3920 // annotalysis.
3921 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08003922 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07003923 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08003924 }
Brian Carlstromea46f952013-07-30 01:26:50 -07003925 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003926 if (!m->IsRuntimeMethod()) {
3927 record->stack[depth].method = m;
3928 record->stack[depth].dex_pc = GetDexPc();
Elliott Hughes530fa002012-03-12 11:44:49 -07003929 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08003930 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003931 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08003932 }
3933
3934 ~AllocRecordStackVisitor() {
3935 // Clear out any unused stack trace elements.
3936 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
3937 record->stack[depth].method = NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -07003938 record->stack[depth].dex_pc = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08003939 }
3940 }
3941
3942 AllocRecord* record;
3943 size_t depth;
3944};
3945
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003946void Dbg::RecordAllocation(mirror::Class* type, size_t byte_count) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003947 Thread* self = Thread::Current();
3948 CHECK(self != NULL);
3949
Ian Rogers719d1a32014-03-06 12:13:39 -08003950 MutexLock mu(self, *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08003951 if (recent_allocation_records_ == NULL) {
3952 return;
3953 }
3954
3955 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08003956 if (++alloc_record_head_ == alloc_record_max_) {
3957 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08003958 }
3959
3960 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08003961 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Elliott Hughes545a0642011-11-08 19:10:03 -08003962 record->type = type;
3963 record->byte_count = byte_count;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003964 record->thin_lock_id = self->GetThreadId();
Elliott Hughes545a0642011-11-08 19:10:03 -08003965
3966 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08003967 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07003968 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08003969
Ian Rogers719d1a32014-03-06 12:13:39 -08003970 if (alloc_record_count_ < alloc_record_max_) {
3971 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08003972 }
3973}
3974
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003975// Returns the index of the head element.
3976//
3977// We point at the most-recently-written record, so if gAllocRecordCount is 1
3978// we want to use the current element. Take "head+1" and subtract count
3979// from it.
3980//
3981// We need to handle underflow in our circular buffer, so we add
Elliott Hughesb1a58792013-07-11 18:10:58 -07003982// gAllocRecordMax and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08003983size_t Dbg::HeadIndex() {
3984 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
3985 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003986}
3987
3988void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003989 ScopedObjectAccess soa(Thread::Current());
Ian Rogers719d1a32014-03-06 12:13:39 -08003990 MutexLock mu(soa.Self(), *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08003991 if (recent_allocation_records_ == NULL) {
3992 LOG(INFO) << "Not recording tracked allocations";
3993 return;
3994 }
3995
3996 // "i" is the head of the list. We want to start at the end of the
3997 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003998 size_t i = HeadIndex();
Ian Rogers719d1a32014-03-06 12:13:39 -08003999 size_t count = alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004000
Ian Rogers719d1a32014-03-06 12:13:39 -08004001 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004002 while (count--) {
4003 AllocRecord* record = &recent_allocation_records_[i];
4004
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004005 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->thin_lock_id, record->byte_count)
Elliott Hughes545a0642011-11-08 19:10:03 -08004006 << PrettyClass(record->type);
4007
4008 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08004009 mirror::ArtMethod* m = record->stack[stack_frame].method;
Elliott Hughes545a0642011-11-08 19:10:03 -08004010 if (m == NULL) {
4011 break;
4012 }
4013 LOG(INFO) << " " << PrettyMethod(m) << " line " << record->stack[stack_frame].LineNumber();
4014 }
4015
4016 // pause periodically to help logcat catch up
4017 if ((count % 5) == 0) {
4018 usleep(40000);
4019 }
4020
Ian Rogers719d1a32014-03-06 12:13:39 -08004021 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004022 }
4023}
4024
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -07004025void Dbg::UpdateObjectPointers(IsMarkedCallback* callback, void* arg) {
Ian Rogers719d1a32014-03-06 12:13:39 -08004026 if (recent_allocation_records_ != nullptr) {
4027 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
4028 size_t i = HeadIndex();
4029 size_t count = alloc_record_count_;
4030 while (count--) {
4031 AllocRecord* record = &recent_allocation_records_[i];
4032 DCHECK(record != nullptr);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -07004033 record->UpdateObjectPointers(callback, arg);
Ian Rogers719d1a32014-03-06 12:13:39 -08004034 i = (i + 1) & (alloc_record_max_ - 1);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08004035 }
4036 }
4037 if (gRegistry != nullptr) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -07004038 gRegistry->UpdateObjectPointers(callback, arg);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08004039 }
4040}
4041
4042void Dbg::AllowNewObjectRegistryObjects() {
4043 if (gRegistry != nullptr) {
4044 gRegistry->AllowNewObjects();
4045 }
4046}
4047
4048void Dbg::DisallowNewObjectRegistryObjects() {
4049 if (gRegistry != nullptr) {
4050 gRegistry->DisallowNewObjects();
4051 }
4052}
4053
Elliott Hughes545a0642011-11-08 19:10:03 -08004054class StringTable {
4055 public:
4056 StringTable() {
4057 }
4058
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004059 void Add(const char* s) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004060 table_.insert(s);
4061 }
4062
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004063 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004064 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004065 if (it == table_.end()) {
4066 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4067 }
4068 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004069 }
4070
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004071 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004072 return table_.size();
4073 }
4074
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004075 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004076 for (const std::string& str : table_) {
4077 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004078 size_t s_len = CountModifiedUtf8Chars(s);
4079 UniquePtr<uint16_t> s_utf16(new uint16_t[s_len]);
4080 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4081 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004082 }
4083 }
4084
4085 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004086 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004087 DISALLOW_COPY_AND_ASSIGN(StringTable);
4088};
4089
4090/*
4091 * The data we send to DDMS contains everything we have recorded.
4092 *
4093 * Message header (all values big-endian):
4094 * (1b) message header len (to allow future expansion); includes itself
4095 * (1b) entry header len
4096 * (1b) stack frame len
4097 * (2b) number of entries
4098 * (4b) offset to string table from start of message
4099 * (2b) number of class name strings
4100 * (2b) number of method name strings
4101 * (2b) number of source file name strings
4102 * For each entry:
4103 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004104 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004105 * (2b) allocated object's class name index
4106 * (1b) stack depth
4107 * For each stack frame:
4108 * (2b) method's class name
4109 * (2b) method name
4110 * (2b) method source file
4111 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4112 * (xb) class name strings
4113 * (xb) method name strings
4114 * (xb) source file strings
4115 *
4116 * As with other DDM traffic, strings are sent as a 4-byte length
4117 * followed by UTF-16 data.
4118 *
4119 * We send up 16-bit unsigned indexes into string tables. In theory there
Elliott Hughesb1a58792013-07-11 18:10:58 -07004120 * can be (kMaxAllocRecordStackDepth * gAllocRecordMax) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004121 * each table, but in practice there should be far fewer.
4122 *
4123 * The chief reason for using a string table here is to keep the size of
4124 * the DDMS message to a minimum. This is partly to make the protocol
4125 * efficient, but also because we have to form the whole thing up all at
4126 * once in a memory buffer.
4127 *
4128 * We use separate string tables for class names, method names, and source
4129 * files to keep the indexes small. There will generally be no overlap
4130 * between the contents of these tables.
4131 */
4132jbyteArray Dbg::GetRecentAllocations() {
4133 if (false) {
4134 DumpRecentAllocations();
4135 }
4136
Ian Rogers50b35e22012-10-04 10:09:15 -07004137 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004138 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004139 {
Ian Rogers719d1a32014-03-06 12:13:39 -08004140 MutexLock mu(self, *alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004141 //
4142 // Part 1: generate string tables.
4143 //
4144 StringTable class_names;
4145 StringTable method_names;
4146 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004147
Ian Rogers719d1a32014-03-06 12:13:39 -08004148 int count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004149 int idx = HeadIndex();
4150 while (count--) {
4151 AllocRecord* record = &recent_allocation_records_[idx];
Elliott Hughes545a0642011-11-08 19:10:03 -08004152
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004153 class_names.Add(ClassHelper(record->type).GetDescriptor());
Elliott Hughes545a0642011-11-08 19:10:03 -08004154
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004155 MethodHelper mh;
4156 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07004157 mirror::ArtMethod* m = record->stack[i].method;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004158 if (m != NULL) {
4159 mh.ChangeMethod(m);
4160 class_names.Add(mh.GetDeclaringClassDescriptor());
4161 method_names.Add(mh.GetName());
4162 filenames.Add(mh.GetDeclaringClassSourceFile());
4163 }
4164 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004165
Ian Rogers719d1a32014-03-06 12:13:39 -08004166 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004167 }
4168
Ian Rogers719d1a32014-03-06 12:13:39 -08004169 LOG(INFO) << "allocation records: " << alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004170
4171 //
4172 // Part 2: Generate the output and store it in the buffer.
4173 //
4174
4175 // (1b) message header len (to allow future expansion); includes itself
4176 // (1b) entry header len
4177 // (1b) stack frame len
4178 const int kMessageHeaderLen = 15;
4179 const int kEntryHeaderLen = 9;
4180 const int kStackFrameLen = 8;
4181 JDWP::Append1BE(bytes, kMessageHeaderLen);
4182 JDWP::Append1BE(bytes, kEntryHeaderLen);
4183 JDWP::Append1BE(bytes, kStackFrameLen);
4184
4185 // (2b) number of entries
4186 // (4b) offset to string table from start of message
4187 // (2b) number of class name strings
4188 // (2b) number of method name strings
4189 // (2b) number of source file name strings
Ian Rogers719d1a32014-03-06 12:13:39 -08004190 JDWP::Append2BE(bytes, alloc_record_count_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004191 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004192 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004193 JDWP::Append2BE(bytes, class_names.Size());
4194 JDWP::Append2BE(bytes, method_names.Size());
4195 JDWP::Append2BE(bytes, filenames.Size());
4196
Ian Rogers719d1a32014-03-06 12:13:39 -08004197 count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004198 idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004199 while (count--) {
4200 // For each entry:
4201 // (4b) total allocation size
4202 // (2b) thread id
4203 // (2b) allocated object's class name index
4204 // (1b) stack depth
4205 AllocRecord* record = &recent_allocation_records_[idx];
4206 size_t stack_depth = record->GetDepth();
Mathieu Chartier590fee92013-09-13 13:46:47 -07004207 ClassHelper kh(record->type);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004208 size_t allocated_object_class_name_index = class_names.IndexOf(kh.GetDescriptor());
4209 JDWP::Append4BE(bytes, record->byte_count);
4210 JDWP::Append2BE(bytes, record->thin_lock_id);
4211 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4212 JDWP::Append1BE(bytes, stack_depth);
4213
4214 MethodHelper mh;
4215 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4216 // For each stack frame:
4217 // (2b) method's class name
4218 // (2b) method name
4219 // (2b) method source file
4220 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
4221 mh.ChangeMethod(record->stack[stack_frame].method);
4222 size_t class_name_index = class_names.IndexOf(mh.GetDeclaringClassDescriptor());
4223 size_t method_name_index = method_names.IndexOf(mh.GetName());
4224 size_t file_name_index = filenames.IndexOf(mh.GetDeclaringClassSourceFile());
4225 JDWP::Append2BE(bytes, class_name_index);
4226 JDWP::Append2BE(bytes, method_name_index);
4227 JDWP::Append2BE(bytes, file_name_index);
4228 JDWP::Append2BE(bytes, record->stack[stack_frame].LineNumber());
4229 }
4230
Ian Rogers719d1a32014-03-06 12:13:39 -08004231 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004232 }
4233
4234 // (xb) class name strings
4235 // (xb) method name strings
4236 // (xb) source file strings
4237 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4238 class_names.WriteTo(bytes);
4239 method_names.WriteTo(bytes);
4240 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004241 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004242 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004243 jbyteArray result = env->NewByteArray(bytes.size());
4244 if (result != NULL) {
4245 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4246 }
4247 return result;
4248}
4249
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004250} // namespace art