blob: 1f5961731083aa685856227f07d1c5e312b48f46 [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 Hertz7ec2f1c2014-03-27 20:06:47 +0100214size_t Dbg::delayed_full_undeoptimization_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100215
216// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800217static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800218
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700219void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
220 RootType root_type) {
221 if (receiver != nullptr) {
222 callback(&receiver, arg, tid, root_type);
223 }
224 if (thread != nullptr) {
225 callback(&thread, arg, tid, root_type);
226 }
227 if (klass != nullptr) {
228 callback(reinterpret_cast<mirror::Object**>(&klass), arg, tid, root_type);
229 }
230 if (method != nullptr) {
231 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
232 }
233}
234
235void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
236 RootType root_type) {
237 if (method != nullptr) {
238 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
239 }
240}
241
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100242void DeoptimizationRequest::VisitRoots(RootCallback* callback, void* arg) {
243 if (method != nullptr) {
244 callback(reinterpret_cast<mirror::Object**>(&method), arg, 0, kRootDebugger);
245 }
246}
247
Brian Carlstromea46f952013-07-30 01:26:50 -0700248static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800249 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700250 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao09bfc6a2012-12-11 18:11:43 -0800251 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100252 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800253 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == dex_pc) {
Elliott Hughes86964332012-02-15 19:37:42 -0800254 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
255 return true;
256 }
257 }
258 return false;
259}
260
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100261static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
262 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800263 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
264 // A thread may be suspended for GC; in this code, we really want to know whether
265 // there's a debugger suspension active.
266 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
267}
268
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800269static mirror::Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700270 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800271 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800272 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800273 status = JDWP::ERR_INVALID_OBJECT;
274 return NULL;
275 }
276 if (!o->IsArrayInstance()) {
277 status = JDWP::ERR_INVALID_ARRAY;
278 return NULL;
279 }
280 status = JDWP::ERR_NONE;
281 return o->AsArray();
282}
283
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800284static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700285 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800286 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800287 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800288 status = JDWP::ERR_INVALID_OBJECT;
289 return NULL;
290 }
291 if (!o->IsClass()) {
292 status = JDWP::ERR_INVALID_CLASS;
293 return NULL;
294 }
295 status = JDWP::ERR_NONE;
296 return o->AsClass();
297}
298
Elliott Hughes221229c2013-01-08 18:17:50 -0800299static JDWP::JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thread*& thread)
jeffhaoa77f0f62012-12-05 17:19:31 -0800300 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700301 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
302 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800303 mirror::Object* thread_peer = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800304 if (thread_peer == NULL || thread_peer == ObjectRegistry::kInvalidObject) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800305 // This isn't even an object.
306 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes436e3722012-02-17 20:01:47 -0800307 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800308
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800309 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800310 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
311 // This isn't a thread.
312 return JDWP::ERR_INVALID_THREAD;
313 }
314
315 thread = Thread::FromManagedThread(soa, thread_peer);
316 if (thread == NULL) {
317 // This is a java.lang.Thread without a Thread*. Must be a zombie.
318 return JDWP::ERR_THREAD_NOT_ALIVE;
319 }
320 return JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800321}
322
Elliott Hughes24437992011-11-30 14:49:33 -0800323static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
324 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
325 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
326 return static_cast<JDWP::JdwpTag>(descriptor[0]);
327}
328
Ian Rogers98379392014-02-24 16:53:16 -0800329static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700330 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes86b00102011-12-05 17:54:26 -0800331 CHECK(c != NULL);
Elliott Hughes24437992011-11-30 14:49:33 -0800332 if (c->IsArrayClass()) {
333 return JDWP::JT_ARRAY;
334 }
Elliott Hughes24437992011-11-30 14:49:33 -0800335 if (c->IsStringClass()) {
336 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800337 }
Ian Rogers98379392014-02-24 16:53:16 -0800338 if (c->IsClassClass()) {
339 return JDWP::JT_CLASS_OBJECT;
340 }
341 {
342 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
343 if (thread_class->IsAssignableFrom(c)) {
344 return JDWP::JT_THREAD;
345 }
346 }
347 {
348 mirror::Class* thread_group_class =
349 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
350 if (thread_group_class->IsAssignableFrom(c)) {
351 return JDWP::JT_THREAD_GROUP;
352 }
353 }
354 {
355 mirror::Class* class_loader_class =
356 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
357 if (class_loader_class->IsAssignableFrom(c)) {
358 return JDWP::JT_CLASS_LOADER;
359 }
360 }
361 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800362}
363
364/*
365 * Objects declared to hold Object might actually hold a more specific
366 * type. The debugger may take a special interest in these (e.g. it
367 * wants to display the contents of Strings), so we want to return an
368 * appropriate tag.
369 *
370 * Null objects are tagged JT_OBJECT.
371 */
Ian Rogers98379392014-02-24 16:53:16 -0800372static JDWP::JdwpTag TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700373 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers98379392014-02-24 16:53:16 -0800374 return (o == NULL) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800375}
376
377static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
378 switch (tag) {
379 case JDWP::JT_BOOLEAN:
380 case JDWP::JT_BYTE:
381 case JDWP::JT_CHAR:
382 case JDWP::JT_FLOAT:
383 case JDWP::JT_DOUBLE:
384 case JDWP::JT_INT:
385 case JDWP::JT_LONG:
386 case JDWP::JT_SHORT:
387 case JDWP::JT_VOID:
388 return true;
389 default:
390 return false;
391 }
392}
393
Elliott Hughes3bb81562011-10-21 18:52:59 -0700394/*
395 * Handle one of the JDWP name/value pairs.
396 *
397 * JDWP options are:
398 * help: if specified, show help message and bail
399 * transport: may be dt_socket or dt_shmem
400 * address: for dt_socket, "host:port", or just "port" when listening
401 * server: if "y", wait for debugger to attach; if "n", attach to debugger
402 * timeout: how long to wait for debugger to connect / listen
403 *
404 * Useful with server=n (these aren't supported yet):
405 * onthrow=<exception-name>: connect to debugger when exception thrown
406 * onuncaught=y|n: connect to debugger when uncaught exception thrown
407 * launch=<command-line>: launch the debugger itself
408 *
409 * The "transport" option is required, as is "address" if server=n.
410 */
411static bool ParseJdwpOption(const std::string& name, const std::string& value) {
412 if (name == "transport") {
413 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700414 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700415 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700416 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700417 } else {
418 LOG(ERROR) << "JDWP transport not supported: " << value;
419 return false;
420 }
421 } else if (name == "server") {
422 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700423 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700424 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700425 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700426 } else {
427 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
428 return false;
429 }
430 } else if (name == "suspend") {
431 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700432 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700433 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700434 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700435 } else {
436 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
437 return false;
438 }
439 } else if (name == "address") {
440 /* this is either <port> or <host>:<port> */
441 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700442 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700443 std::string::size_type colon = value.find(':');
444 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700445 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700446 port_string = value.substr(colon + 1);
447 } else {
448 port_string = value;
449 }
450 if (port_string.empty()) {
451 LOG(ERROR) << "JDWP address missing port: " << value;
452 return false;
453 }
454 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800455 uint64_t port = strtoul(port_string.c_str(), &end, 10);
456 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700457 LOG(ERROR) << "JDWP address has junk in port field: " << value;
458 return false;
459 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700460 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700461 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
462 /* valid but unsupported */
463 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
464 } else {
465 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
466 }
467
468 return true;
469}
470
471/*
472 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
473 * "transport=dt_socket,address=8000,server=y,suspend=n"
474 */
475bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800476 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700477
Elliott Hughes3bb81562011-10-21 18:52:59 -0700478 std::vector<std::string> pairs;
479 Split(options, ',', pairs);
480
481 for (size_t i = 0; i < pairs.size(); ++i) {
482 std::string::size_type equals = pairs[i].find('=');
483 if (equals == std::string::npos) {
484 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
485 return false;
486 }
487 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
488 }
489
Elliott Hughes376a7a02011-10-24 18:35:55 -0700490 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700491 LOG(ERROR) << "Must specify JDWP transport: " << options;
492 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700493 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700494 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
495 return false;
496 }
497
498 gJdwpConfigured = true;
499 return true;
500}
501
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700502void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700503 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700504 // No JDWP for you!
505 return;
506 }
507
Ian Rogers719d1a32014-03-06 12:13:39 -0800508 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700509 gRegistry = new ObjectRegistry;
510
Ian Rogers719d1a32014-03-06 12:13:39 -0800511 alloc_tracker_lock_ = new Mutex("AllocTracker lock");
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100512 deoptimization_lock_ = new Mutex("deoptimization lock", kDeoptimizationLock);
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700513 // Init JDWP if the debugger is enabled. This may connect out to a
514 // debugger, passively listen for a debugger, or block waiting for a
515 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700516 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
517 if (gJdwpState == NULL) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800518 // We probably failed because some other process has the port already, which means that
519 // if we don't abort the user is likely to think they're talking to us when they're actually
520 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800521 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700522 }
523
524 // If a debugger has already attached, send the "welcome" message.
525 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700526 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700527 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes376a7a02011-10-24 18:35:55 -0700528 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800529 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700530 }
531 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700532}
533
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700534void Dbg::VisitRoots(RootCallback* callback, void* arg) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100535 {
536 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
537 for (Breakpoint& bp : gBreakpoints) {
538 bp.VisitRoots(callback, arg);
539 }
540 }
541 if (deoptimization_lock_ != nullptr) { // only true if the debugger is started.
542 MutexLock mu(Thread::Current(), *deoptimization_lock_);
543 for (DeoptimizationRequest& req : deoptimization_requests_) {
544 req.VisitRoots(callback, arg);
545 }
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700546 }
547}
548
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700549void Dbg::StopJdwp() {
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100550 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
551 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700552 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800553 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700554 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800555 gRegistry = nullptr;
556 delete alloc_tracker_lock_;
557 alloc_tracker_lock_ = nullptr;
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100558 delete deoptimization_lock_;
559 deoptimization_lock_ = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700560}
561
Elliott Hughes767a1472011-10-26 18:49:02 -0700562void Dbg::GcDidFinish() {
563 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700564 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes81ff3182012-03-23 20:35:56 -0700565 LOG(DEBUG) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700566 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700567 }
568 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700569 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes81ff3182012-03-23 20:35:56 -0700570 LOG(DEBUG) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700571 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700572 }
573 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700574 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes767a1472011-10-26 18:49:02 -0700575 LOG(DEBUG) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700576 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700577 }
578}
579
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700580void Dbg::SetJdwpAllowed(bool allowed) {
581 gJdwpAllowed = allowed;
582}
583
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700584DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700585 return Thread::Current()->GetInvokeReq();
586}
587
588Thread* Dbg::GetDebugThread() {
589 return (gJdwpState != NULL) ? gJdwpState->GetDebugThread() : NULL;
590}
591
592void Dbg::ClearWaitForEventThread() {
593 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700594}
595
596void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700597 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800598 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700599 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800600 gDisposed = false;
601}
602
603void Dbg::Disposed() {
604 gDisposed = true;
605}
606
607bool Dbg::IsDisposed() {
608 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700609}
610
Elliott Hughesa2155262011-11-16 16:26:58 -0800611void Dbg::GoActive() {
612 // Enable all debugging features, including scans for breakpoints.
613 // This is a no-op if we're already active.
614 // Only called from the JDWP handler thread.
615 if (gDebuggerActive) {
616 return;
617 }
618
Elliott Hughesc0f09332012-03-26 13:27:06 -0700619 {
620 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
jeffhao09bfc6a2012-12-11 18:11:43 -0800621 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700622 CHECK_EQ(gBreakpoints.size(), 0U);
623 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800624
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100625 {
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100626 MutexLock mu(Thread::Current(), *deoptimization_lock_);
627 CHECK_EQ(deoptimization_requests_.size(), 0U);
628 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100629 CHECK_EQ(delayed_full_undeoptimization_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100630 }
631
Ian Rogers62d6c772013-02-27 08:32:07 -0800632 Runtime* runtime = Runtime::Current();
633 runtime->GetThreadList()->SuspendAll();
634 Thread* self = Thread::Current();
635 ThreadState old_state = self->SetStateUnsafe(kRunnable);
636 CHECK_NE(old_state, kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100637 runtime->GetInstrumentation()->EnableDeoptimization();
Ian Rogers62d6c772013-02-27 08:32:07 -0800638 runtime->GetInstrumentation()->AddListener(&gDebugInstrumentationListener,
639 instrumentation::Instrumentation::kMethodEntered |
640 instrumentation::Instrumentation::kMethodExited |
Jeff Hao14dd5a82013-04-11 10:23:36 -0700641 instrumentation::Instrumentation::kDexPcMoved |
642 instrumentation::Instrumentation::kExceptionCaught);
Elliott Hughesa2155262011-11-16 16:26:58 -0800643 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800644 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
645 runtime->GetThreadList()->ResumeAll();
646
647 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700648}
649
650void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700651 CHECK(gDebuggerConnected);
652
Elliott Hughesc0f09332012-03-26 13:27:06 -0700653 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700654
Ian Rogers62d6c772013-02-27 08:32:07 -0800655 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
656 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
657 // and clear the object registry.
658 Runtime* runtime = Runtime::Current();
659 runtime->GetThreadList()->SuspendAll();
660 Thread* self = Thread::Current();
661 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100662
663 // Debugger may not be active at this point.
664 if (gDebuggerActive) {
665 {
666 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
667 // This prevents us from having any pending deoptimization request when the debugger attaches
668 // to us again while no event has been requested yet.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100669 MutexLock mu(Thread::Current(), *deoptimization_lock_);
670 deoptimization_requests_.clear();
671 full_deoptimization_event_count_ = 0U;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100672 delayed_full_undeoptimization_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100673 }
674 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
675 instrumentation::Instrumentation::kMethodEntered |
676 instrumentation::Instrumentation::kMethodExited |
677 instrumentation::Instrumentation::kDexPcMoved |
678 instrumentation::Instrumentation::kExceptionCaught);
679 runtime->GetInstrumentation()->DisableDeoptimization();
680 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100681 }
Elliott Hughes234ab152011-10-26 14:02:26 -0700682 gRegistry->Clear();
683 gDebuggerConnected = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800684 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
685 runtime->GetThreadList()->ResumeAll();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700686}
687
Elliott Hughesc0f09332012-03-26 13:27:06 -0700688bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700689 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700690}
691
Elliott Hughesc0f09332012-03-26 13:27:06 -0700692bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700693 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700694}
695
696int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800697 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700698}
699
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700700void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700701 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700702}
703
Elliott Hughes88d63092013-01-09 09:55:54 -0800704std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800705 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800706 if (o == NULL) {
707 return "NULL";
708 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800709 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes88d63092013-01-09 09:55:54 -0800710 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
Elliott Hughes436e3722012-02-17 20:01:47 -0800711 }
712 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700713 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800714 }
Elliott Hughesc308a5d2012-02-16 17:12:06 -0800715 return DescriptorToName(ClassHelper(o->AsClass()).GetDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700716}
717
Elliott Hughes88d63092013-01-09 09:55:54 -0800718JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800719 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800720 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800721 if (c == NULL) {
722 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800723 }
Elliott Hughes88d63092013-01-09 09:55:54 -0800724 class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800725 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800726}
727
Elliott Hughes88d63092013-01-09 09:55:54 -0800728JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800729 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800730 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800731 if (c == NULL) {
732 return status;
733 }
734 if (c->IsInterface()) {
735 // http://code.google.com/p/android/issues/detail?id=20856
Elliott Hughes88d63092013-01-09 09:55:54 -0800736 superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800737 } else {
Elliott Hughes88d63092013-01-09 09:55:54 -0800738 superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800739 }
740 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700741}
742
Elliott Hughes436e3722012-02-17 20:01:47 -0800743JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800744 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800745 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800746 return JDWP::ERR_INVALID_OBJECT;
747 }
748 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
749 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700750}
751
Elliott Hughes436e3722012-02-17 20:01:47 -0800752JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
753 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800754 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800755 if (c == NULL) {
756 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800757 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800758
759 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
760
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700761 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
762 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800763 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700764 if ((access_flags & kAccInterface) == 0) {
765 access_flags |= kAccSuper;
766 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800767
768 expandBufAdd4BE(pReply, access_flags);
769
770 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700771}
772
Elliott Hughesf327e072013-01-09 16:01:26 -0800773JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
774 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800775 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800776 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800777 return JDWP::ERR_INVALID_OBJECT;
778 }
779
780 // Ensure all threads are suspended while we read objects' lock words.
781 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100782 CHECK_EQ(self->GetState(), kRunnable);
783 self->TransitionFromRunnableToSuspended(kSuspended);
784 Runtime::Current()->GetThreadList()->SuspendAll();
Elliott Hughesf327e072013-01-09 16:01:26 -0800785
786 MonitorInfo monitor_info(o);
787
Sebastien Hertz54263242014-03-19 18:16:50 +0100788 Runtime::Current()->GetThreadList()->ResumeAll();
789 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800790
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700791 if (monitor_info.owner_ != NULL) {
792 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800793 } else {
794 expandBufAddObjectId(reply, gRegistry->Add(NULL));
795 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700796 expandBufAdd4BE(reply, monitor_info.entry_count_);
797 expandBufAdd4BE(reply, monitor_info.waiters_.size());
798 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
799 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800800 }
801 return JDWP::ERR_NONE;
802}
803
Elliott Hughes734b8c62013-01-11 15:32:45 -0800804JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
805 std::vector<JDWP::ObjectId>& monitors,
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100806 std::vector<uint32_t>& stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800807 ScopedObjectAccessUnchecked soa(Thread::Current());
808 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
809 Thread* thread;
810 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
811 if (error != JDWP::ERR_NONE) {
812 return error;
813 }
814 if (!IsSuspendedForDebugger(soa, thread)) {
815 return JDWP::ERR_THREAD_NOT_SUSPENDED;
816 }
817
818 struct OwnedMonitorVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800819 OwnedMonitorVisitor(Thread* thread, Context* context)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800820 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -0800821 : StackVisitor(thread, context), current_stack_depth(0) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800822
823 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
824 // annotalysis.
825 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
826 if (!GetMethod()->IsRuntimeMethod()) {
827 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800828 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800829 }
830 return true;
831 }
832
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800833 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800834 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800835 visitor->monitors.push_back(owned_monitor);
836 visitor->stack_depths.push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800837 }
838
Elliott Hughes734b8c62013-01-11 15:32:45 -0800839 size_t current_stack_depth;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800840 std::vector<mirror::Object*> monitors;
Elliott Hughes734b8c62013-01-11 15:32:45 -0800841 std::vector<uint32_t> stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800842 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800843 UniquePtr<Context> context(Context::Create());
844 OwnedMonitorVisitor visitor(thread, context.get());
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800845 visitor.WalkStack();
846
847 for (size_t i = 0; i < visitor.monitors.size(); ++i) {
848 monitors.push_back(gRegistry->Add(visitor.monitors[i]));
Elliott Hughes734b8c62013-01-11 15:32:45 -0800849 stack_depths.push_back(visitor.stack_depths[i]);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800850 }
851
852 return JDWP::ERR_NONE;
853}
854
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100855JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
856 JDWP::ObjectId& contended_monitor) {
Elliott Hughesf9501702013-01-11 11:22:27 -0800857 ScopedObjectAccessUnchecked soa(Thread::Current());
858 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
859 Thread* thread;
860 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
861 if (error != JDWP::ERR_NONE) {
862 return error;
863 }
864 if (!IsSuspendedForDebugger(soa, thread)) {
865 return JDWP::ERR_THREAD_NOT_SUSPENDED;
866 }
867
868 contended_monitor = gRegistry->Add(Monitor::GetContendedMonitor(thread));
869
870 return JDWP::ERR_NONE;
871}
872
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800873JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
874 std::vector<uint64_t>& counts)
875 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800876 gc::Heap* heap = Runtime::Current()->GetHeap();
877 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800878 std::vector<mirror::Class*> classes;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800879 counts.clear();
880 for (size_t i = 0; i < class_ids.size(); ++i) {
881 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800882 mirror::Class* c = DecodeClass(class_ids[i], status);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800883 if (c == NULL) {
884 return status;
885 }
886 classes.push_back(c);
887 counts.push_back(0);
888 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800889 heap->CountInstances(classes, false, &counts[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800890 return JDWP::ERR_NONE;
891}
892
Elliott Hughes3b78c942013-01-15 17:35:41 -0800893JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::ObjectId>& instances)
894 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800895 gc::Heap* heap = Runtime::Current()->GetHeap();
896 // We only want reachable instances, so do a GC.
897 heap->CollectGarbage(false);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800898 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800899 mirror::Class* c = DecodeClass(class_id, status);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800900 if (c == nullptr) {
Elliott Hughes3b78c942013-01-15 17:35:41 -0800901 return status;
902 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800903 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800904 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
905 for (size_t i = 0; i < raw_instances.size(); ++i) {
906 instances.push_back(gRegistry->Add(raw_instances[i]));
907 }
908 return JDWP::ERR_NONE;
909}
910
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800911JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
912 std::vector<JDWP::ObjectId>& referring_objects)
913 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800914 gc::Heap* heap = Runtime::Current()->GetHeap();
915 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800916 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800917 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800918 return JDWP::ERR_INVALID_OBJECT;
919 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800920 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800921 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800922 for (size_t i = 0; i < raw_instances.size(); ++i) {
923 referring_objects.push_back(gRegistry->Add(raw_instances[i]));
924 }
925 return JDWP::ERR_NONE;
926}
927
Elliott Hughes64f574f2013-02-20 14:57:12 -0800928JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id)
929 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100930 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
931 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
932 return JDWP::ERR_INVALID_OBJECT;
933 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800934 gRegistry->DisableCollection(object_id);
935 return JDWP::ERR_NONE;
936}
937
938JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id)
939 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100940 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
941 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
942 // also ignores these cases and never return an error. However it's not obvious why this command
943 // should behave differently from DisableCollection and IsCollected commands. So let's be more
944 // strict and return an error if this happens.
945 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
946 return JDWP::ERR_INVALID_OBJECT;
947 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800948 gRegistry->EnableCollection(object_id);
949 return JDWP::ERR_NONE;
950}
951
952JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool& is_collected)
953 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100954 if (object_id == 0) {
955 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +0100956 return JDWP::ERR_INVALID_OBJECT;
957 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100958 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
959 // the RI seems to ignore this and assume object has been collected.
960 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
961 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
962 is_collected = true;
963 } else {
964 is_collected = gRegistry->IsCollected(object_id);
965 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800966 return JDWP::ERR_NONE;
967}
968
969void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
970 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
971 gRegistry->DisposeObject(object_id, reference_count);
972}
973
Sebastien Hertz4d8fd492014-03-28 16:29:41 +0100974static JDWP::JdwpTypeTag GetTypeTag(mirror::Class* klass)
975 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
976 DCHECK(klass != nullptr);
977 if (klass->IsArrayClass()) {
978 return JDWP::TT_ARRAY;
979 } else if (klass->IsInterface()) {
980 return JDWP::TT_INTERFACE;
981 } else {
982 return JDWP::TT_CLASS;
983 }
984}
985
Elliott Hughes88d63092013-01-09 09:55:54 -0800986JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800987 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800988 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800989 if (c == NULL) {
990 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800991 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800992
Sebastien Hertz4d8fd492014-03-28 16:29:41 +0100993 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
994 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -0800995 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800996 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700997}
998
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800999void Dbg::GetClassList(std::vector<JDWP::RefTypeId>& classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001000 // Get the complete list of reference classes (i.e. all classes except
1001 // the primitive types).
1002 // Returns a newly-allocated buffer full of RefTypeId values.
1003 struct ClassListCreator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001004 explicit ClassListCreator(std::vector<JDWP::RefTypeId>& classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001005 }
1006
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001007 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001008 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1009 }
1010
Elliott Hughes64f574f2013-02-20 14:57:12 -08001011 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1012 // annotalysis.
1013 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001014 if (!c->IsPrimitive()) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001015 classes.push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001016 }
1017 return true;
1018 }
1019
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001020 std::vector<JDWP::RefTypeId>& classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001021 };
1022
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001023 ClassListCreator clc(classes);
Elliott Hughesa2155262011-11-16 16:26:58 -08001024 Runtime::Current()->GetClassLinker()->VisitClasses(ClassListCreator::Visit, &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001025}
1026
Elliott Hughes88d63092013-01-09 09:55:54 -08001027JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, uint32_t* pStatus, std::string* pDescriptor) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001028 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001029 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001030 if (c == NULL) {
1031 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001032 }
1033
Elliott Hughesa2155262011-11-16 16:26:58 -08001034 if (c->IsArrayClass()) {
1035 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1036 *pTypeTag = JDWP::TT_ARRAY;
1037 } else {
1038 if (c->IsErroneous()) {
1039 *pStatus = JDWP::CS_ERROR;
1040 } else {
1041 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1042 }
1043 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1044 }
1045
1046 if (pDescriptor != NULL) {
Ian Rogersdfb325e2013-10-30 01:00:44 -07001047 *pDescriptor = ClassHelper(c).GetDescriptor();
Elliott Hughesa2155262011-11-16 16:26:58 -08001048 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001049 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001050}
1051
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001052void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001053 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001054 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
1055 ids.clear();
1056 for (size_t i = 0; i < classes.size(); ++i) {
1057 ids.push_back(gRegistry->Add(classes[i]));
1058 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001059}
1060
Elliott Hughes64f574f2013-02-20 14:57:12 -08001061JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
1062 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001063 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001064 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001065 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001066 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001067
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001068 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001069 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001070
1071 expandBufAdd1(pReply, type_tag);
1072 expandBufAddRefTypeId(pReply, type_id);
1073
1074 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001075}
1076
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001077JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001078 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001079 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001080 if (c == NULL) {
1081 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001082 }
Ian Rogersdfb325e2013-10-30 01:00:44 -07001083 *signature = ClassHelper(c).GetDescriptor();
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001084 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001085}
1086
Elliott Hughes88d63092013-01-09 09:55:54 -08001087JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string& result) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001088 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001089 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001090 if (c == NULL) {
1091 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001092 }
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001093 if (c->IsProxyClass()) {
1094 return JDWP::ERR_ABSENT_INFORMATION;
1095 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001096 result = ClassHelper(c).GetSourceFile();
1097 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001098}
1099
Elliott Hughes88d63092013-01-09 09:55:54 -08001100JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t& tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001101 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001102 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001103 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes546b9862012-06-20 16:06:13 -07001104 return JDWP::ERR_INVALID_OBJECT;
1105 }
Ian Rogers98379392014-02-24 16:53:16 -08001106 tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001107 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001108}
1109
Elliott Hughesaed4be92011-12-02 16:16:23 -08001110size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001111 switch (tag) {
1112 case JDWP::JT_VOID:
1113 return 0;
1114 case JDWP::JT_BYTE:
1115 case JDWP::JT_BOOLEAN:
1116 return 1;
1117 case JDWP::JT_CHAR:
1118 case JDWP::JT_SHORT:
1119 return 2;
1120 case JDWP::JT_FLOAT:
1121 case JDWP::JT_INT:
1122 return 4;
1123 case JDWP::JT_ARRAY:
1124 case JDWP::JT_OBJECT:
1125 case JDWP::JT_STRING:
1126 case JDWP::JT_THREAD:
1127 case JDWP::JT_THREAD_GROUP:
1128 case JDWP::JT_CLASS_LOADER:
1129 case JDWP::JT_CLASS_OBJECT:
1130 return sizeof(JDWP::ObjectId);
1131 case JDWP::JT_DOUBLE:
1132 case JDWP::JT_LONG:
1133 return 8;
1134 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001135 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001136 return -1;
1137 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001138}
1139
Elliott Hughes88d63092013-01-09 09:55:54 -08001140JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int& length) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001141 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001142 mirror::Array* a = DecodeArray(array_id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001143 if (a == NULL) {
1144 return status;
Elliott Hughes24437992011-11-30 14:49:33 -08001145 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001146 length = a->GetLength();
1147 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001148}
1149
Elliott Hughes88d63092013-01-09 09:55:54 -08001150JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001151 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001152 mirror::Array* a = DecodeArray(array_id, status);
Ian Rogers98379392014-02-24 16:53:16 -08001153 if (a == nullptr) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001154 return status;
1155 }
Elliott Hughes24437992011-11-30 14:49:33 -08001156
1157 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1158 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001159 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001160 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001161 std::string descriptor(ClassHelper(a->GetClass()).GetDescriptor());
Elliott Hughes24437992011-11-30 14:49:33 -08001162 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
1163
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001164 expandBufAdd1(pReply, tag);
1165 expandBufAdd4BE(pReply, count);
1166
Elliott Hughes24437992011-11-30 14:49:33 -08001167 if (IsPrimitiveTag(tag)) {
1168 size_t width = GetTagWidth(tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001169 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1170 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001171 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001172 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1173 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001174 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001175 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1176 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001177 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001178 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1179 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001180 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001181 memcpy(dst, &src[offset * width], count * width);
1182 }
1183 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001184 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001185 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001186 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001187 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001188 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
1189 : tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001190 expandBufAdd1(pReply, specific_tag);
1191 expandBufAddObjectId(pReply, gRegistry->Add(element));
1192 }
1193 }
1194
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001195 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001196}
1197
Ian Rogersef7d42f2014-01-06 12:55:46 -08001198template <typename T>
1199static void CopyArrayData(mirror::Array* a, JDWP::Request& src, int offset, int count)
1200 NO_THREAD_SAFETY_ANALYSIS {
1201 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001202 DCHECK(a->GetClass()->IsPrimitiveArray());
1203
Ian Rogersef7d42f2014-01-06 12:55:46 -08001204 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001205 for (int i = 0; i < count; ++i) {
1206 *dst++ = src.ReadValue(sizeof(T));
1207 }
1208}
1209
Elliott Hughes88d63092013-01-09 09:55:54 -08001210JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001211 JDWP::Request& request)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001212 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001213 JDWP::JdwpError status;
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001214 mirror::Array* dst = DecodeArray(array_id, status);
1215 if (dst == NULL) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001216 return status;
1217 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001218
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001219 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001220 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001221 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001222 }
nikolay serdjuk1d66e882014-04-07 13:54:24 +07001223 ClassHelper ch(dst->GetClass());
1224 const char* descriptor = ch.GetDescriptor();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001225 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor + 1);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001226
1227 if (IsPrimitiveTag(tag)) {
1228 size_t width = GetTagWidth(tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001229 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001230 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001231 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001232 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001233 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001234 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001235 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001236 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001237 }
1238 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001239 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001240 for (int i = 0; i < count; ++i) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001241 JDWP::ObjectId id = request.ReadObjectId();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001242 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001243 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001244 return JDWP::ERR_INVALID_OBJECT;
1245 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001246 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001247 }
1248 }
1249
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001250 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001251}
1252
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001253JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001254 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001255}
1256
Elliott Hughes88d63092013-01-09 09:55:54 -08001257JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001258 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001259 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001260 if (c == NULL) {
1261 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001262 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001263 new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001264 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001265}
1266
Elliott Hughesbf13d362011-12-08 15:51:37 -08001267/*
1268 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1269 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001270JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001271 JDWP::ObjectId& new_array) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001272 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001273 mirror::Class* c = DecodeClass(array_class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001274 if (c == NULL) {
1275 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001276 }
Ian Rogers6fac4472014-02-25 17:01:10 -08001277 new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
1278 c->GetComponentSize(),
1279 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001280 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001281}
1282
Elliott Hughes88d63092013-01-09 09:55:54 -08001283bool Dbg::MatchType(JDWP::RefTypeId instance_class_id, JDWP::RefTypeId class_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001284 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001285 mirror::Class* c1 = DecodeClass(instance_class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001286 CHECK(c1 != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001287 mirror::Class* c2 = DecodeClass(class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001288 CHECK(c2 != NULL);
Sebastien Hertz123756a2013-11-27 15:49:42 +01001289 return c2->IsAssignableFrom(c1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001290}
1291
Brian Carlstromea46f952013-07-30 01:26:50 -07001292static JDWP::FieldId ToFieldId(const mirror::ArtField* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001293 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001294 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001295 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001296}
1297
Brian Carlstromea46f952013-07-30 01:26:50 -07001298static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001299 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001300 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001301 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001302}
1303
Brian Carlstromea46f952013-07-30 01:26:50 -07001304static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001305 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001306 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001307 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001308}
1309
Brian Carlstromea46f952013-07-30 01:26:50 -07001310static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001311 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001312 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001313 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001314}
1315
Brian Carlstromea46f952013-07-30 01:26:50 -07001316static void SetLocation(JDWP::JdwpLocation& location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001317 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001318 if (m == NULL) {
1319 memset(&location, 0, sizeof(location));
1320 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001321 mirror::Class* c = m->GetDeclaringClass();
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001322 location.type_tag = GetTypeTag(c);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001323 location.class_id = gRegistry->AddRefType(c);
Elliott Hughes74847412012-06-20 18:10:21 -07001324 location.method_id = ToMethodId(m);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001325 location.dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001326 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001327}
1328
Elliott Hughesa96836a2013-01-17 12:27:49 -08001329std::string Dbg::GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001330 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001331 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001332 return MethodHelper(m).GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001333}
1334
Elliott Hughesa96836a2013-01-17 12:27:49 -08001335std::string Dbg::GetFieldName(JDWP::FieldId field_id)
1336 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001337 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughesa96836a2013-01-17 12:27:49 -08001338 return FieldHelper(f).GetName();
1339}
1340
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001341/*
1342 * Augment the access flags for synthetic methods and fields by setting
1343 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1344 * flags not specified by the Java programming language.
1345 */
1346static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1347 accessFlags &= kAccJavaFlagsMask;
1348 if ((accessFlags & kAccSynthetic) != 0) {
1349 accessFlags |= 0xf0000000;
1350 }
1351 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001352}
1353
Elliott Hughesdbb40792011-11-18 17:05:22 -08001354/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001355 * Circularly shifts registers so that arguments come first. Debuggers
1356 * expect slots to begin with arguments, but dex code places them at
1357 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001358 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001359static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1360 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1361 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001362 if (code_item == nullptr) {
1363 // We should not get here for a method without code (native, proxy or abstract). Log it and
1364 // return the slot as is since all registers are arguments.
1365 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1366 return slot;
1367 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001368 uint16_t ins_size = code_item->ins_size_;
1369 uint16_t locals_size = code_item->registers_size_ - ins_size;
1370 if (slot >= locals_size) {
1371 return slot - locals_size;
1372 } else {
1373 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001374 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001375}
1376
Jeff Haob7cefc72013-11-14 14:51:09 -08001377/*
1378 * Circularly shifts registers so that arguments come last. Reverts
1379 * slots to dex style argument placement.
1380 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001381static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001382 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Jeff Haob7cefc72013-11-14 14:51:09 -08001383 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001384 if (code_item == nullptr) {
1385 // We should not get here for a method without code (native, proxy or abstract). Log it and
1386 // return the slot as is since all registers are arguments.
1387 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1388 return slot;
1389 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001390 uint16_t ins_size = code_item->ins_size_;
1391 uint16_t locals_size = code_item->registers_size_ - ins_size;
1392 if (slot < ins_size) {
1393 return slot + locals_size;
1394 } else {
1395 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001396 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001397}
1398
Elliott Hughes88d63092013-01-09 09:55:54 -08001399JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001400 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001401 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001402 if (c == NULL) {
1403 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001404 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001405
1406 size_t instance_field_count = c->NumInstanceFields();
1407 size_t static_field_count = c->NumStaticFields();
1408
1409 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1410
1411 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001412 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001413 FieldHelper fh(f);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001414 expandBufAddFieldId(pReply, ToFieldId(f));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001415 expandBufAddUtf8String(pReply, fh.GetName());
1416 expandBufAddUtf8String(pReply, fh.GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001417 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001418 static const char genericSignature[1] = "";
1419 expandBufAddUtf8String(pReply, genericSignature);
1420 }
1421 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1422 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001423 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001424}
1425
Elliott Hughes88d63092013-01-09 09:55:54 -08001426JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001427 JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001428 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001429 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001430 if (c == NULL) {
1431 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001432 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001433
1434 size_t direct_method_count = c->NumDirectMethods();
1435 size_t virtual_method_count = c->NumVirtualMethods();
1436
1437 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1438
1439 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001440 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001441 MethodHelper mh(m);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001442 expandBufAddMethodId(pReply, ToMethodId(m));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001443 expandBufAddUtf8String(pReply, mh.GetName());
Ian Rogersd91d6d62013-09-25 20:26:14 -07001444 expandBufAddUtf8String(pReply, mh.GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001445 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001446 static const char genericSignature[1] = "";
1447 expandBufAddUtf8String(pReply, genericSignature);
1448 }
1449 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1450 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001451 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001452}
1453
Elliott Hughes88d63092013-01-09 09:55:54 -08001454JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001455 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001456 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001457 if (c == NULL) {
1458 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001459 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001460
1461 ClassHelper kh(c);
Ian Rogersd24e2642012-06-06 21:21:43 -07001462 size_t interface_count = kh.NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001463 expandBufAdd4BE(pReply, interface_count);
1464 for (size_t i = 0; i < interface_count; ++i) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001465 expandBufAddRefTypeId(pReply, gRegistry->AddRefType(kh.GetDirectInterface(i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001466 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001467 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001468}
1469
Elliott Hughes88d63092013-01-09 09:55:54 -08001470void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001471 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001472 struct DebugCallbackContext {
1473 int numItems;
1474 JDWP::ExpandBuf* pReply;
1475
Elliott Hughes2435a572012-02-17 16:07:41 -08001476 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001477 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1478 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001479 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001480 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001481 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001482 }
1483 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001484 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001485 MethodHelper mh(m);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001486 const DexFile::CodeItem* code_item = mh.GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001487 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001488 if (code_item == nullptr) {
1489 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001490 start = -1;
1491 end = -1;
1492 } else {
1493 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001494 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001495 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001496 }
1497
1498 expandBufAdd8BE(pReply, start);
1499 expandBufAdd8BE(pReply, end);
1500
1501 // Add numLines later
1502 size_t numLinesOffset = expandBufGetLength(pReply);
1503 expandBufAdd4BE(pReply, 0);
1504
1505 DebugCallbackContext context;
1506 context.numItems = 0;
1507 context.pReply = pReply;
1508
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001509 if (code_item != nullptr) {
1510 mh.GetDexFile().DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
1511 DebugCallbackContext::Callback, NULL, &context);
1512 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001513
1514 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001515}
1516
Elliott Hughes88d63092013-01-09 09:55:54 -08001517void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001518 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001519 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001520 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001521 size_t variable_count;
1522 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001523
Jeff Haob7cefc72013-11-14 14:51:09 -08001524 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress, const char* name, const char* descriptor, const char* signature)
1525 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001526 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1527
Jeff Haob7cefc72013-11-14 14:51:09 -08001528 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 -08001529
Jeff Haob7cefc72013-11-14 14:51:09 -08001530 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001531
Elliott Hughesdbb40792011-11-18 17:05:22 -08001532 expandBufAdd8BE(pContext->pReply, startAddress);
1533 expandBufAddUtf8String(pContext->pReply, name);
1534 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001535 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001536 expandBufAddUtf8String(pContext->pReply, signature);
1537 }
1538 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1539 expandBufAdd4BE(pContext->pReply, slot);
1540
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001541 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001542 }
1543 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001544 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001545 MethodHelper mh(m);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001546
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001547 // arg_count considers doubles and longs to take 2 units.
1548 // variable_count considers everything to take 1 unit.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001549 std::string shorty(mh.GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001550 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001551
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001552 // We don't know the total number of variables yet, so leave a blank and update it later.
1553 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001554 expandBufAdd4BE(pReply, 0);
1555
1556 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001557 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001558 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001559 context.variable_count = 0;
1560 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001561
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001562 const DexFile::CodeItem* code_item = mh.GetCodeItem();
1563 if (code_item != nullptr) {
1564 mh.GetDexFile().DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), NULL,
1565 DebugCallbackContext::Callback, &context);
1566 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001567
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001568 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001569}
1570
Jeff Hao579b0242013-11-18 13:16:49 -08001571void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1572 JDWP::ExpandBuf* pReply) {
1573 mirror::ArtMethod* m = FromMethodId(method_id);
1574 JDWP::JdwpTag tag = BasicTagFromDescriptor(MethodHelper(m).GetShorty());
1575 OutputJValue(tag, return_value, pReply);
1576}
1577
Elliott Hughes9777ba22013-01-17 09:04:19 -08001578JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
1579 std::vector<uint8_t>& bytecodes)
1580 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001581 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001582 if (m == NULL) {
1583 return JDWP::ERR_INVALID_METHODID;
1584 }
1585 MethodHelper mh(m);
1586 const DexFile::CodeItem* code_item = mh.GetCodeItem();
1587 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1588 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1589 const uint8_t* end = begin + byte_count;
1590 for (const uint8_t* p = begin; p != end; ++p) {
1591 bytecodes.push_back(*p);
1592 }
1593 return JDWP::ERR_NONE;
1594}
1595
Elliott Hughes88d63092013-01-09 09:55:54 -08001596JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
1597 return BasicTagFromDescriptor(FieldHelper(FromFieldId(field_id)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001598}
1599
Elliott Hughes88d63092013-01-09 09:55:54 -08001600JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
1601 return BasicTagFromDescriptor(FieldHelper(FromFieldId(field_id)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001602}
1603
Elliott Hughes88d63092013-01-09 09:55:54 -08001604static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1605 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001606 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001607 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001608 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001609 mirror::Class* c = DecodeClass(ref_type_id, status);
Elliott Hughes88d63092013-01-09 09:55:54 -08001610 if (ref_type_id != 0 && c == NULL) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001611 return status;
1612 }
1613
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001614 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001615 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001616 return JDWP::ERR_INVALID_OBJECT;
1617 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001618 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001619
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001620 mirror::Class* receiver_class = c;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001621 if (receiver_class == NULL && o != NULL) {
1622 receiver_class = o->GetClass();
1623 }
1624 // TODO: should we give up now if receiver_class is NULL?
1625 if (receiver_class != NULL && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
1626 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001627 return JDWP::ERR_INVALID_FIELDID;
1628 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001629
Elliott Hughes0cf74332012-02-23 23:14:00 -08001630 // The RI only enforces the static/non-static mismatch in one direction.
1631 // TODO: should we change the tests and check both?
1632 if (is_static) {
1633 if (!f->IsStatic()) {
1634 return JDWP::ERR_INVALID_FIELDID;
1635 }
1636 } else {
1637 if (f->IsStatic()) {
1638 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001639 }
1640 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001641 if (f->IsStatic()) {
1642 o = f->GetDeclaringClass();
1643 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001644
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001645 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001646 JValue field_value;
1647 if (tag == JDWP::JT_VOID) {
1648 LOG(FATAL) << "Unknown tag: " << tag;
1649 } else if (!IsPrimitiveTag(tag)) {
1650 field_value.SetL(f->GetObject(o));
1651 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1652 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001653 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001654 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001655 }
Jeff Hao579b0242013-11-18 13:16:49 -08001656 Dbg::OutputJValue(tag, &field_value, pReply);
1657
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001658 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001659}
1660
Elliott Hughes88d63092013-01-09 09:55:54 -08001661JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001662 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001663 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001664}
1665
Elliott Hughes88d63092013-01-09 09:55:54 -08001666JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) {
1667 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001668}
1669
Elliott Hughes88d63092013-01-09 09:55:54 -08001670static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001671 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001672 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001673 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001674 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001675 return JDWP::ERR_INVALID_OBJECT;
1676 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001677 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001678
1679 // The RI only enforces the static/non-static mismatch in one direction.
1680 // TODO: should we change the tests and check both?
1681 if (is_static) {
1682 if (!f->IsStatic()) {
1683 return JDWP::ERR_INVALID_FIELDID;
1684 }
1685 } else {
1686 if (f->IsStatic()) {
1687 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001688 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001689 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001690 if (f->IsStatic()) {
1691 o = f->GetDeclaringClass();
1692 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001693
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001694 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001695
1696 if (IsPrimitiveTag(tag)) {
1697 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001698 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001699 // Debugging can't use transactional mode (runtime only).
1700 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001701 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001702 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001703 // Debugging can't use transactional mode (runtime only).
1704 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001705 }
1706 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001707 mirror::Object* v = gRegistry->Get<mirror::Object*>(value);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001708 if (v == ObjectRegistry::kInvalidObject) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001709 return JDWP::ERR_INVALID_OBJECT;
1710 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001711 if (v != NULL) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001712 mirror::Class* field_type = FieldHelper(f).GetType();
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001713 if (!field_type->IsAssignableFrom(v->GetClass())) {
1714 return JDWP::ERR_INVALID_OBJECT;
1715 }
1716 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001717 // Debugging can't use transactional mode (runtime only).
1718 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001719 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001720
1721 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001722}
1723
Elliott Hughes88d63092013-01-09 09:55:54 -08001724JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001725 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001726 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001727}
1728
Elliott Hughes88d63092013-01-09 09:55:54 -08001729JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1730 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001731}
1732
Elliott Hughes88d63092013-01-09 09:55:54 -08001733std::string Dbg::StringToUtf8(JDWP::ObjectId string_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001734 mirror::String* s = gRegistry->Get<mirror::String*>(string_id);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001735 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001736}
1737
Jeff Hao579b0242013-11-18 13:16:49 -08001738void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1739 if (IsPrimitiveTag(tag)) {
1740 expandBufAdd1(pReply, tag);
1741 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1742 expandBufAdd1(pReply, return_value->GetI());
1743 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1744 expandBufAdd2BE(pReply, return_value->GetI());
1745 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1746 expandBufAdd4BE(pReply, return_value->GetI());
1747 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1748 expandBufAdd8BE(pReply, return_value->GetJ());
1749 } else {
1750 CHECK_EQ(tag, JDWP::JT_VOID);
1751 }
1752 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001753 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001754 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001755 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001756 expandBufAddObjectId(pReply, gRegistry->Add(value));
1757 }
1758}
1759
Elliott Hughes221229c2013-01-08 18:17:50 -08001760JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string& name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001761 ScopedObjectAccessUnchecked soa(Thread::Current());
1762 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001763 Thread* thread;
1764 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1765 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1766 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001767 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001768
1769 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001770 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Brian Carlstromea46f952013-07-30 01:26:50 -07001771 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001772 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1773 mirror::String* s =
1774 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Elliott Hughes221229c2013-01-08 18:17:50 -08001775 if (s != NULL) {
1776 name = s->ToModifiedUtf8();
1777 }
1778 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001779}
1780
Elliott Hughes221229c2013-01-08 18:17:50 -08001781JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001782 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001783 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001784 if (thread_object == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001785 return JDWP::ERR_INVALID_OBJECT;
1786 }
Ian Rogers98379392014-02-24 16:53:16 -08001787 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001788 // Okay, so it's an object, but is it actually a thread?
Ian Rogers50b35e22012-10-04 10:09:15 -07001789 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001790 Thread* thread;
1791 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1792 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1793 // Zombie threads are in the null group.
1794 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001795 error = JDWP::ERR_NONE;
1796 } else if (error == JDWP::ERR_NONE) {
1797 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1798 CHECK(c != nullptr);
1799 mirror::ArtField* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
1800 CHECK(f != NULL);
1801 mirror::Object* group = f->GetObject(thread_object);
1802 CHECK(group != NULL);
1803 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1804 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001805 }
Ian Rogers98379392014-02-24 16:53:16 -08001806 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001807 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001808}
1809
Elliott Hughes88d63092013-01-09 09:55:54 -08001810std::string Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001811 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001812 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001813 CHECK(thread_group != nullptr);
1814 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupName");
1815 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1816 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001817 mirror::ArtField* f = c->FindInstanceField("name", "Ljava/lang/String;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001818 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001819 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Ian Rogers98379392014-02-24 16:53:16 -08001820 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes499c5132011-11-17 14:55:11 -08001821 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001822}
1823
Elliott Hughes88d63092013-01-09 09:55:54 -08001824JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id) {
Ian Rogers98379392014-02-24 16:53:16 -08001825 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001826 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001827 CHECK(thread_group != nullptr);
1828 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupParent");
1829 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1830 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001831 mirror::ArtField* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
Elliott Hughes4e235312011-12-02 11:34:15 -08001832 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001833 mirror::Object* parent = f->GetObject(thread_group);
Ian Rogers98379392014-02-24 16:53:16 -08001834 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes4e235312011-12-02 11:34:15 -08001835 return gRegistry->Add(parent);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001836}
1837
1838JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001839 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001840 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001841 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001842 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001843}
1844
1845JDWP::ObjectId Dbg::GetMainThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001846 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001847 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001848 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001849 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001850}
1851
Jeff Hao920af3e2013-08-28 15:46:38 -07001852JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
1853 switch (state) {
1854 case kBlocked:
1855 return JDWP::TS_MONITOR;
1856 case kNative:
1857 case kRunnable:
1858 case kSuspended:
1859 return JDWP::TS_RUNNING;
1860 case kSleeping:
1861 return JDWP::TS_SLEEPING;
1862 case kStarting:
1863 case kTerminated:
1864 return JDWP::TS_ZOMBIE;
1865 case kTimedWaiting:
1866 case kWaitingForDebuggerSend:
1867 case kWaitingForDebuggerSuspension:
1868 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01001869 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07001870 case kWaitingForGcToComplete:
1871 case kWaitingForCheckPointsToRun:
1872 case kWaitingForJniOnLoad:
1873 case kWaitingForSignalCatcherOutput:
1874 case kWaitingInMainDebuggerLoop:
1875 case kWaitingInMainSignalCatcherLoop:
1876 case kWaitingPerformingGc:
1877 case kWaiting:
1878 return JDWP::TS_WAIT;
1879 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
1880 }
1881 LOG(FATAL) << "Unknown thread state: " << state;
1882 return JDWP::TS_ZOMBIE;
1883}
1884
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001885JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
1886 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001887 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08001888
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001889 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
1890
Ian Rogers50b35e22012-10-04 10:09:15 -07001891 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001892 Thread* thread;
1893 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1894 if (error != JDWP::ERR_NONE) {
1895 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1896 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08001897 return JDWP::ERR_NONE;
1898 }
1899 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08001900 }
1901
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001902 if (IsSuspendedForDebugger(soa, thread)) {
1903 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08001904 }
1905
Jeff Hao920af3e2013-08-28 15:46:38 -07001906 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08001907 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001908}
1909
Elliott Hughes221229c2013-01-08 18:17:50 -08001910JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001911 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07001912 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001913 Thread* thread;
1914 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1915 if (error != JDWP::ERR_NONE) {
1916 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08001917 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001918 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001919 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08001920 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001921}
1922
Elliott Hughesf9501702013-01-11 11:22:27 -08001923JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
1924 ScopedObjectAccess soa(Thread::Current());
1925 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
1926 Thread* thread;
1927 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1928 if (error != JDWP::ERR_NONE) {
1929 return error;
1930 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07001931 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08001932 return JDWP::ERR_NONE;
1933}
1934
Elliott Hughescaf76542012-06-28 16:08:22 -07001935void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids) {
Ian Rogers365c1022012-06-22 15:05:28 -07001936 class ThreadListVisitor {
1937 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001938 ThreadListVisitor(const ScopedObjectAccessUnchecked& soa, mirror::Object* desired_thread_group,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001939 std::vector<JDWP::ObjectId>& thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001940 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001941 : soa_(soa), desired_thread_group_(desired_thread_group), thread_ids_(thread_ids) {}
Ian Rogers365c1022012-06-22 15:05:28 -07001942
Elliott Hughesa2155262011-11-16 16:26:58 -08001943 static void Visit(Thread* t, void* arg) {
1944 reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t);
1945 }
1946
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001947 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1948 // annotalysis.
1949 void Visit(Thread* t) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001950 if (t == Dbg::GetDebugThread()) {
1951 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
1952 // query all threads, so it's easier if we just don't tell them about this thread.
1953 return;
1954 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001955 mirror::Object* peer = t->GetPeer();
jeffhao0dfbb7e2012-11-28 15:26:03 -08001956 if (IsInDesiredThreadGroup(peer)) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001957 thread_ids_.push_back(gRegistry->Add(peer));
Elliott Hughesa2155262011-11-16 16:26:58 -08001958 }
1959 }
1960
Ian Rogers365c1022012-06-22 15:05:28 -07001961 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001962 bool IsInDesiredThreadGroup(mirror::Object* peer)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001963 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao0dfbb7e2012-11-28 15:26:03 -08001964 // peer might be NULL if the thread is still starting up.
1965 if (peer == NULL) {
1966 // We can't tell the debugger about this thread yet.
1967 // TODO: if we identified threads to the debugger by their Thread*
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001968 // rather than their peer's mirror::Object*, we could fix this.
jeffhao0dfbb7e2012-11-28 15:26:03 -08001969 // Doing so might help us report ZOMBIE threads too.
1970 return false;
1971 }
jeffhaoc1e04902012-12-13 12:41:10 -08001972 // Do we want threads from all thread groups?
1973 if (desired_thread_group_ == NULL) {
1974 return true;
1975 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001976 mirror::Object* group = soa_.DecodeField(WellKnownClasses::java_lang_Thread_group)->GetObject(peer);
jeffhao0dfbb7e2012-11-28 15:26:03 -08001977 return (group == desired_thread_group_);
1978 }
1979
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07001980 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001981 mirror::Object* const desired_thread_group_;
Elliott Hughescaf76542012-06-28 16:08:22 -07001982 std::vector<JDWP::ObjectId>& thread_ids_;
Elliott Hughesa2155262011-11-16 16:26:58 -08001983 };
1984
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001985 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001986 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001987 ThreadListVisitor tlv(soa, thread_group, thread_ids);
Ian Rogers50b35e22012-10-04 10:09:15 -07001988 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -07001989 Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv);
Elliott Hughescaf76542012-06-28 16:08:22 -07001990}
Elliott Hughesa2155262011-11-16 16:26:58 -08001991
Elliott Hughescaf76542012-06-28 16:08:22 -07001992void Dbg::GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001993 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001994 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughescaf76542012-06-28 16:08:22 -07001995
1996 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Brian Carlstromea46f952013-07-30 01:26:50 -07001997 mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001998 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Elliott Hughescaf76542012-06-28 16:08:22 -07001999
2000 // Get the array and size out of the ArrayList<ThreadGroup>...
Brian Carlstromea46f952013-07-30 01:26:50 -07002001 mirror::ArtField* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;");
2002 mirror::ArtField* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002003 mirror::ObjectArray<mirror::Object>* groups_array =
2004 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
Elliott Hughescaf76542012-06-28 16:08:22 -07002005 const int32_t size = size_field->GetInt(groups_array_list);
2006
2007 // Copy the first 'size' elements out of the array into the result.
2008 for (int32_t i = 0; i < size; ++i) {
2009 child_thread_group_ids.push_back(gRegistry->Add(groups_array->Get(i)));
Elliott Hughesa2155262011-11-16 16:26:58 -08002010 }
2011}
2012
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002013static int GetStackDepth(Thread* thread)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002014 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002015 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07002016 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002017 : StackVisitor(thread, NULL), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002018
Elliott Hughes64f574f2013-02-20 14:57:12 -08002019 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2020 // annotalysis.
2021 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002022 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002023 ++depth;
2024 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002025 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002026 }
2027 size_t depth;
2028 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002029
Ian Rogers7a22fa62013-01-23 12:16:16 -08002030 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002031 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002032 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002033}
2034
Elliott Hughes221229c2013-01-08 18:17:50 -08002035JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002036 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002037 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002038 Thread* thread;
2039 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2040 if (error != JDWP::ERR_NONE) {
2041 return error;
2042 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002043 if (!IsSuspendedForDebugger(soa, thread)) {
2044 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2045 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002046 result = GetStackDepth(thread);
2047 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002048}
2049
Ian Rogers306057f2012-11-26 12:45:53 -08002050JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2051 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002052 class GetFrameVisitor : public StackVisitor {
2053 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08002054 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002055 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002056 : StackVisitor(thread, NULL), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002057 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
2058 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002059 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002060
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002061 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2062 // annotalysis.
2063 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002064 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002065 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002066 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002067 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002068 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002069 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002070 if (depth_ >= start_frame_) {
2071 JDWP::FrameId frame_id(GetFrameId());
2072 JDWP::JdwpLocation location;
2073 SetLocation(location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002074 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002075 expandBufAdd8BE(buf_, frame_id);
2076 expandBufAddLocation(buf_, location);
2077 }
2078 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002079 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002080 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002081
2082 private:
2083 size_t depth_;
2084 const size_t start_frame_;
2085 const size_t frame_count_;
2086 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002087 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002088
2089 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002090 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002091 Thread* thread;
2092 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2093 if (error != JDWP::ERR_NONE) {
2094 return error;
2095 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002096 if (!IsSuspendedForDebugger(soa, thread)) {
2097 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2098 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002099 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002100 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002101 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002102}
2103
2104JDWP::ObjectId Dbg::GetThreadSelfId() {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002105 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08002106 return gRegistry->Add(soa.Self()->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002107}
2108
Elliott Hughes475fc232011-10-25 15:00:35 -07002109void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002110 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002111}
2112
2113void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07002114 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002115}
2116
Elliott Hughes221229c2013-01-08 18:17:50 -08002117JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002118 ScopedLocalRef<jobject> peer(Thread::Current()->GetJniEnv(), NULL);
2119 {
2120 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002121 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002122 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002123 if (peer.get() == NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002124 return JDWP::ERR_THREAD_NOT_ALIVE;
2125 }
2126 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002127 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002128 Thread* thread = ThreadList::SuspendThreadByPeer(peer.get(), request_suspension, true,
2129 &timed_out);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002130 if (thread != NULL) {
2131 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002132 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002133 return JDWP::ERR_INTERNAL;
2134 } else {
2135 return JDWP::ERR_THREAD_NOT_ALIVE;
2136 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002137}
2138
Elliott Hughes221229c2013-01-08 18:17:50 -08002139void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002140 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002141 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
jeffhaoa77f0f62012-12-05 17:19:31 -08002142 Thread* thread;
2143 {
2144 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2145 thread = Thread::FromManagedThread(soa, peer);
2146 }
Elliott Hughes4e235312011-12-02 11:34:15 -08002147 if (thread == NULL) {
2148 LOG(WARNING) << "No such thread for resume: " << peer;
2149 return;
2150 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002151 bool needs_resume;
2152 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002153 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002154 needs_resume = thread->GetSuspendCount() > 0;
2155 }
2156 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002157 Runtime::Current()->GetThreadList()->Resume(thread, true);
2158 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002159}
2160
2161void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002162 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002163}
2164
Ian Rogers0399dde2012-06-06 17:09:28 -07002165struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002166 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002167 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002168 : StackVisitor(thread, context), this_object(NULL), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002169
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002170 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2171 // annotalysis.
2172 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002173 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002174 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002175 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002176 this_object = GetThisObject();
2177 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002178 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002179 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002180
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002181 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002182 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002183};
2184
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002185JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2186 JDWP::ObjectId* result) {
2187 ScopedObjectAccessUnchecked soa(Thread::Current());
2188 Thread* thread;
2189 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002190 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002191 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2192 if (error != JDWP::ERR_NONE) {
2193 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002194 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002195 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002196 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2197 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002198 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002199 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002200 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002201 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002202 *result = gRegistry->Add(visitor.this_object);
2203 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002204}
2205
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002206JDWP::JdwpError Dbg::GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2207 JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002208 struct GetLocalVisitor : public StackVisitor {
Ian Rogers98379392014-02-24 16:53:16 -08002209 GetLocalVisitor(const ScopedObjectAccessUnchecked& soa, Thread* thread, Context* context,
2210 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002211 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers98379392014-02-24 16:53:16 -08002212 : StackVisitor(thread, context), soa_(soa), frame_id_(frame_id), slot_(slot), tag_(tag),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002213 buf_(buf), width_(width), error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002214
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002215 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2216 // annotalysis.
2217 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002218 if (GetFrameId() != frame_id_) {
2219 return true; // Not our frame, carry on.
Elliott Hughesdbb40792011-11-18 17:05:22 -08002220 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002221 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002222 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002223 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002224 if (m->IsNative()) {
2225 // We can't read local value from native method.
2226 error_ = JDWP::ERR_OPAQUE_FRAME;
2227 return false;
2228 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002229 uint16_t reg = DemangleSlot(slot_, m);
Elliott Hughesdbb40792011-11-18 17:05:22 -08002230
Ian Rogers0399dde2012-06-06 17:09:28 -07002231 switch (tag_) {
2232 case JDWP::JT_BOOLEAN:
2233 {
2234 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002235 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002236 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2237 JDWP::Set1(buf_+1, intVal != 0);
2238 }
2239 break;
2240 case JDWP::JT_BYTE:
2241 {
2242 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002243 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002244 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2245 JDWP::Set1(buf_+1, intVal);
2246 }
2247 break;
2248 case JDWP::JT_SHORT:
2249 case JDWP::JT_CHAR:
2250 {
2251 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002252 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002253 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2254 JDWP::Set2BE(buf_+1, intVal);
2255 }
2256 break;
2257 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002258 {
2259 CHECK_EQ(width_, 4U);
2260 uint32_t intVal = GetVReg(m, reg, kIntVReg);
2261 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2262 JDWP::Set4BE(buf_+1, intVal);
2263 }
2264 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002265 case JDWP::JT_FLOAT:
2266 {
2267 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002268 uint32_t intVal = GetVReg(m, reg, kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002269 VLOG(jdwp) << "get int/float local " << reg << " = " << intVal;
2270 JDWP::Set4BE(buf_+1, intVal);
2271 }
2272 break;
2273 case JDWP::JT_ARRAY:
2274 {
2275 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002276 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002277 VLOG(jdwp) << "get array local " << reg << " = " << o;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002278 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002279 LOG(FATAL) << "Register " << reg << " expected to hold array: " << o;
2280 }
2281 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2282 }
2283 break;
2284 case JDWP::JT_CLASS_LOADER:
2285 case JDWP::JT_CLASS_OBJECT:
2286 case JDWP::JT_OBJECT:
2287 case JDWP::JT_STRING:
2288 case JDWP::JT_THREAD:
2289 case JDWP::JT_THREAD_GROUP:
2290 {
2291 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002292 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002293 VLOG(jdwp) << "get object local " << reg << " = " << o;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002294 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002295 LOG(FATAL) << "Register " << reg << " expected to hold object: " << o;
2296 }
Ian Rogers98379392014-02-24 16:53:16 -08002297 tag_ = TagFromObject(soa_, o);
Ian Rogers0399dde2012-06-06 17:09:28 -07002298 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2299 }
2300 break;
2301 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002302 {
2303 CHECK_EQ(width_, 8U);
2304 uint32_t lo = GetVReg(m, reg, kDoubleLoVReg);
2305 uint64_t hi = GetVReg(m, reg + 1, kDoubleHiVReg);
2306 uint64_t longVal = (hi << 32) | lo;
2307 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2308 JDWP::Set8BE(buf_+1, longVal);
2309 }
2310 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002311 case JDWP::JT_LONG:
2312 {
2313 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002314 uint32_t lo = GetVReg(m, reg, kLongLoVReg);
2315 uint64_t hi = GetVReg(m, reg + 1, kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002316 uint64_t longVal = (hi << 32) | lo;
2317 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2318 JDWP::Set8BE(buf_+1, longVal);
2319 }
2320 break;
2321 default:
2322 LOG(FATAL) << "Unknown tag " << tag_;
2323 break;
2324 }
2325
2326 // Prepend tag, which may have been updated.
2327 JDWP::Set1(buf_, tag_);
2328 return false;
2329 }
Ian Rogers98379392014-02-24 16:53:16 -08002330 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002331 const JDWP::FrameId frame_id_;
2332 const int slot_;
2333 JDWP::JdwpTag tag_;
2334 uint8_t* const buf_;
2335 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002336 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002337 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002338
2339 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002340 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002341 Thread* thread;
2342 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2343 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002344 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002345 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002346 // TODO check thread is suspended by the debugger ?
Ian Rogers0399dde2012-06-06 17:09:28 -07002347 UniquePtr<Context> context(Context::Create());
Ian Rogers98379392014-02-24 16:53:16 -08002348 GetLocalVisitor visitor(soa, thread, context.get(), frame_id, slot, tag, buf, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002349 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002350 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002351}
2352
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002353JDWP::JdwpError Dbg::SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2354 JDWP::JdwpTag tag, uint64_t value, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002355 struct SetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002356 SetLocalVisitor(Thread* thread, Context* context,
Ian Rogers0399dde2012-06-06 17:09:28 -07002357 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
Ian Rogersca190662012-06-26 15:45:57 -07002358 size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002359 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002360 : StackVisitor(thread, context),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002361 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width),
2362 error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002363
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002364 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2365 // annotalysis.
2366 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002367 if (GetFrameId() != frame_id_) {
2368 return true; // Not our frame, carry on.
2369 }
2370 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002371 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002372 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002373 if (m->IsNative()) {
2374 // We can't read local value from native method.
2375 error_ = JDWP::ERR_OPAQUE_FRAME;
2376 return false;
2377 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002378 uint16_t reg = DemangleSlot(slot_, m);
2379
2380 switch (tag_) {
2381 case JDWP::JT_BOOLEAN:
2382 case JDWP::JT_BYTE:
2383 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002384 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002385 break;
2386 case JDWP::JT_SHORT:
2387 case JDWP::JT_CHAR:
2388 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002389 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002390 break;
2391 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002392 CHECK_EQ(width_, 4U);
2393 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
2394 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002395 case JDWP::JT_FLOAT:
2396 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002397 SetVReg(m, reg, static_cast<uint32_t>(value_), kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002398 break;
2399 case JDWP::JT_ARRAY:
2400 case JDWP::JT_OBJECT:
2401 case JDWP::JT_STRING:
2402 {
2403 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002404 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value_));
Elliott Hughes64f574f2013-02-20 14:57:12 -08002405 if (o == ObjectRegistry::kInvalidObject) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002406 UNIMPLEMENTED(FATAL) << "return an error code when given an invalid object to store";
2407 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002408 SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)), kReferenceVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002409 }
2410 break;
2411 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002412 CHECK_EQ(width_, 8U);
2413 SetVReg(m, reg, static_cast<uint32_t>(value_), kDoubleLoVReg);
2414 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kDoubleHiVReg);
2415 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002416 case JDWP::JT_LONG:
2417 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002418 SetVReg(m, reg, static_cast<uint32_t>(value_), kLongLoVReg);
2419 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002420 break;
2421 default:
2422 LOG(FATAL) << "Unknown tag " << tag_;
2423 break;
2424 }
2425 return false;
2426 }
2427
2428 const JDWP::FrameId frame_id_;
2429 const int slot_;
2430 const JDWP::JdwpTag tag_;
2431 const uint64_t value_;
2432 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002433 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002434 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002435
2436 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002437 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002438 Thread* thread;
2439 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2440 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002441 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002442 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002443 // TODO check thread is suspended by the debugger ?
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002444 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002445 SetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, value, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002446 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002447 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002448}
2449
Ian Rogersef7d42f2014-01-06 12:55:46 -08002450void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002451 int event_flags, const JValue* return_value) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002452 JDWP::JdwpLocation location;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002453 SetLocation(location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002454
Elliott Hughes64f574f2013-02-20 14:57:12 -08002455 // If 'this_object' isn't already in the registry, we know that we're not looking for it,
2456 // so there's no point adding it to the registry and burning through ids.
2457 JDWP::ObjectId this_id = 0;
2458 if (gRegistry->Contains(this_object)) {
2459 this_id = gRegistry->Add(this_object);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002460 }
Jeff Hao579b0242013-11-18 13:16:49 -08002461 gJdwpState->PostLocationEvent(&location, this_id, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002462}
2463
Ian Rogers62d6c772013-02-27 08:32:07 -08002464void Dbg::PostException(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002465 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002466 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002467 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002468 return;
2469 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002470
Ian Rogers62d6c772013-02-27 08:32:07 -08002471 JDWP::JdwpLocation jdwp_throw_location;
2472 SetLocation(jdwp_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002473 JDWP::JdwpLocation catch_location;
Elliott Hughescaf76542012-06-28 16:08:22 -07002474 SetLocation(catch_location, catch_method, catch_dex_pc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002475
2476 // We need 'this' for InstanceOnly filters.
Ian Rogers62d6c772013-02-27 08:32:07 -08002477 JDWP::ObjectId this_id = gRegistry->Add(throw_location.GetThis());
Elliott Hughes64f574f2013-02-20 14:57:12 -08002478 JDWP::ObjectId exception_id = gRegistry->Add(exception_object);
2479 JDWP::RefTypeId exception_class_id = gRegistry->AddRefType(exception_object->GetClass());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002480
Ian Rogers62d6c772013-02-27 08:32:07 -08002481 gJdwpState->PostException(&jdwp_throw_location, exception_id, exception_class_id, &catch_location,
2482 this_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002483}
2484
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002485void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002486 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002487 return;
2488 }
2489
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002490 // OLD-TODO - we currently always send both "verified" and "prepared" since
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002491 // debuggers seem to like that. There might be some advantage to honesty,
2492 // since the class may not yet be verified.
2493 int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01002494 JDWP::JdwpTypeTag tag = GetTypeTag(c);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002495 gJdwpState->PostClassPrepare(tag, gRegistry->Add(c),
Ian Rogersdfb325e2013-10-30 01:00:44 -07002496 ClassHelper(c).GetDescriptor(), state);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002497}
2498
Ian Rogers62d6c772013-02-27 08:32:07 -08002499void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -08002500 mirror::ArtMethod* m, uint32_t dex_pc) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002501 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002502 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002503 }
2504
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002505 int event_flags = 0;
2506
Elliott Hughes86964332012-02-15 19:37:42 -08002507 if (IsBreakpoint(m, dex_pc)) {
2508 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002509 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002510
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002511 // If the debugger is single-stepping one of our threads, check to
2512 // see if we're that thread and we've reached a step point.
2513 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2514 DCHECK(single_step_control != nullptr);
2515 if (single_step_control->is_active) {
2516 CHECK(!m->IsNative());
2517 if (single_step_control->step_depth == JDWP::SD_INTO) {
2518 // Step into method calls. We break when the line number
2519 // or method pointer changes. If we're in SS_MIN mode, we
2520 // always stop.
2521 if (single_step_control->method != m) {
2522 event_flags |= kSingleStep;
2523 VLOG(jdwp) << "SS new method";
2524 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2525 event_flags |= kSingleStep;
2526 VLOG(jdwp) << "SS new instruction";
2527 } else if (single_step_control->dex_pcs.find(dex_pc) == single_step_control->dex_pcs.end()) {
2528 event_flags |= kSingleStep;
2529 VLOG(jdwp) << "SS new line";
2530 }
2531 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2532 // Step over method calls. We break when the line number is
2533 // different and the frame depth is <= the original frame
2534 // depth. (We can't just compare on the method, because we
2535 // might get unrolled past it by an exception, and it's tricky
2536 // to identify recursion.)
2537
2538 int stack_depth = GetStackDepth(thread);
2539
2540 if (stack_depth < single_step_control->stack_depth) {
2541 // Popped up one or more frames, always trigger.
2542 event_flags |= kSingleStep;
2543 VLOG(jdwp) << "SS method pop";
2544 } else if (stack_depth == single_step_control->stack_depth) {
2545 // Same depth, see if we moved.
2546 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002547 event_flags |= kSingleStep;
2548 VLOG(jdwp) << "SS new instruction";
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002549 } else if (single_step_control->dex_pcs.find(dex_pc) == single_step_control->dex_pcs.end()) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002550 event_flags |= kSingleStep;
2551 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002552 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002553 }
2554 } else {
2555 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2556 // Return from the current method. We break when the frame
2557 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002558
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002559 // This differs from the "method exit" break in that it stops
2560 // with the PC at the next instruction in the returned-to
2561 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002562
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002563 int stack_depth = GetStackDepth(thread);
2564 if (stack_depth < single_step_control->stack_depth) {
2565 event_flags |= kSingleStep;
2566 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002567 }
2568 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002569 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002570
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002571 // If there's something interesting going on, see if it matches one
2572 // of the debugger filters.
2573 if (event_flags != 0) {
Jeff Hao579b0242013-11-18 13:16:49 -08002574 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, nullptr);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002575 }
2576}
2577
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002578// Process request while all mutator threads are suspended.
2579void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002580 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002581 switch (request.kind) {
2582 case DeoptimizationRequest::kNothing:
2583 LOG(WARNING) << "Ignoring empty deoptimization request.";
2584 break;
2585 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002586 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002587 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002588 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002589 break;
2590 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002591 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002592 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002593 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002594 break;
2595 case DeoptimizationRequest::kSelectiveDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002596 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.method) << " ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002597 instrumentation->Deoptimize(request.method);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002598 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.method) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002599 break;
2600 case DeoptimizationRequest::kSelectiveUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002601 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.method) << " ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002602 instrumentation->Undeoptimize(request.method);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002603 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.method) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002604 break;
2605 default:
2606 LOG(FATAL) << "Unsupported deoptimization request kind " << request.kind;
2607 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002608 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002609}
2610
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002611void Dbg::DelayFullUndeoptimization() {
2612 MutexLock mu(Thread::Current(), *deoptimization_lock_);
2613 ++delayed_full_undeoptimization_count_;
2614 DCHECK_LE(delayed_full_undeoptimization_count_, full_deoptimization_event_count_);
2615}
2616
2617void Dbg::ProcessDelayedFullUndeoptimizations() {
2618 // TODO: avoid taking the lock twice (once here and once in ManageDeoptimization).
2619 {
2620 MutexLock mu(Thread::Current(), *deoptimization_lock_);
2621 while (delayed_full_undeoptimization_count_ > 0) {
2622 DeoptimizationRequest req;
2623 req.kind = DeoptimizationRequest::kFullUndeoptimization;
2624 req.method = nullptr;
2625 RequestDeoptimizationLocked(req);
2626 --delayed_full_undeoptimization_count_;
2627 }
2628 }
2629 ManageDeoptimization();
2630}
2631
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002632void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
2633 if (req.kind == DeoptimizationRequest::kNothing) {
2634 // Nothing to do.
2635 return;
2636 }
2637 MutexLock mu(Thread::Current(), *deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002638 RequestDeoptimizationLocked(req);
2639}
2640
2641void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002642 switch (req.kind) {
2643 case DeoptimizationRequest::kFullDeoptimization: {
2644 DCHECK(req.method == nullptr);
2645 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002646 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2647 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002648 deoptimization_requests_.push_back(req);
2649 }
2650 ++full_deoptimization_event_count_;
2651 break;
2652 }
2653 case DeoptimizationRequest::kFullUndeoptimization: {
2654 DCHECK(req.method == nullptr);
2655 DCHECK_GT(full_deoptimization_event_count_, 0U);
2656 --full_deoptimization_event_count_;
2657 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002658 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2659 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002660 deoptimization_requests_.push_back(req);
2661 }
2662 break;
2663 }
2664 case DeoptimizationRequest::kSelectiveDeoptimization: {
2665 DCHECK(req.method != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002666 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2667 << " for deoptimization of " << PrettyMethod(req.method);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002668 deoptimization_requests_.push_back(req);
2669 break;
2670 }
2671 case DeoptimizationRequest::kSelectiveUndeoptimization: {
2672 DCHECK(req.method != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002673 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2674 << " for undeoptimization of " << PrettyMethod(req.method);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002675 deoptimization_requests_.push_back(req);
2676 break;
2677 }
2678 default: {
2679 LOG(FATAL) << "Unknown deoptimization request kind " << req.kind;
2680 break;
2681 }
2682 }
2683}
2684
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002685void Dbg::ManageDeoptimization() {
2686 Thread* const self = Thread::Current();
2687 {
2688 // Avoid suspend/resume if there is no pending request.
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002689 MutexLock mu(self, *deoptimization_lock_);
2690 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002691 return;
2692 }
2693 }
2694 CHECK_EQ(self->GetState(), kRunnable);
2695 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
2696 // We need to suspend mutator threads first.
2697 Runtime* const runtime = Runtime::Current();
2698 runtime->GetThreadList()->SuspendAll();
2699 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002700 {
2701 MutexLock mu(self, *deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002702 size_t req_index = 0;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002703 for (const DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002704 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002705 ProcessDeoptimizationRequest(request);
2706 }
2707 deoptimization_requests_.clear();
2708 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002709 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
2710 runtime->GetThreadList()->ResumeAll();
2711 self->TransitionFromSuspendedToRunnable();
2712}
2713
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002714static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
2715 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2716 MethodHelper mh(m);
2717 const DexFile::CodeItem* code_item = mh.GetCodeItem();
2718 if (code_item == nullptr) {
2719 // TODO We should not be asked to watch location in a native or abstract method so the code item
2720 // should never be null. We could just check we never encounter this case.
2721 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002722 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002723 SirtRef<mirror::DexCache> dex_cache(self, mh.GetDexCache());
2724 SirtRef<mirror::ClassLoader> class_loader(self, mh.GetClassLoader());
2725 verifier::MethodVerifier verifier(&mh.GetDexFile(), &dex_cache, &class_loader,
2726 &mh.GetClassDef(), code_item, m->GetDexMethodIndex(), m,
2727 m->GetAccessFlags(), false, true);
2728 // Note: we don't need to verify the method.
2729 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
2730}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002731
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002732static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
2733 EXCLUSIVE_LOCKS_REQUIRED(Locks::breakpoint_lock_) {
2734 for (const Breakpoint& breakpoint : gBreakpoints) {
2735 if (breakpoint.method == m) {
2736 return &breakpoint;
2737 }
2738 }
2739 return nullptr;
2740}
2741
2742// Sanity checks all existing breakpoints on the same method.
2743static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m, bool need_full_deoptimization)
2744 EXCLUSIVE_LOCKS_REQUIRED(Locks::breakpoint_lock_) {
2745 if (kIsDebugBuild) {
2746 for (const Breakpoint& breakpoint : gBreakpoints) {
2747 CHECK_EQ(need_full_deoptimization, breakpoint.need_full_deoptimization);
2748 }
2749 if (need_full_deoptimization) {
2750 // We should have deoptimized everything but not "selectively" deoptimized this method.
2751 CHECK(Runtime::Current()->GetInstrumentation()->AreAllMethodsDeoptimized());
2752 CHECK(!Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2753 } else {
2754 // We should have "selectively" deoptimized this method.
2755 // Note: while we have not deoptimized everything for this method, we may have done it for
2756 // another event.
2757 CHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2758 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002759 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002760}
2761
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002762// Installs a breakpoint at the specified location. Also indicates through the deoptimization
2763// request if we need to deoptimize.
2764void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
2765 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07002766 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002767 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002768
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002769 MutexLock mu(self, *Locks::breakpoint_lock_);
2770 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
2771 bool need_full_deoptimization;
2772 if (existing_breakpoint == nullptr) {
2773 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
2774 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
2775 need_full_deoptimization = IsMethodPossiblyInlined(self, m);
2776 if (need_full_deoptimization) {
2777 req->kind = DeoptimizationRequest::kFullDeoptimization;
2778 req->method = nullptr;
2779 } else {
2780 req->kind = DeoptimizationRequest::kSelectiveDeoptimization;
2781 req->method = m;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002782 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002783 } else {
2784 // There is at least one breakpoint for this method: we don't need to deoptimize.
2785 req->kind = DeoptimizationRequest::kNothing;
2786 req->method = nullptr;
2787
2788 need_full_deoptimization = existing_breakpoint->need_full_deoptimization;
2789 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002790 }
2791
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002792 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, need_full_deoptimization));
2793 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
2794 << gBreakpoints[gBreakpoints.size() - 1];
2795}
2796
2797// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
2798// request if we need to undeoptimize.
2799void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
2800 mirror::ArtMethod* m = FromMethodId(location->method_id);
2801 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
2802
2803 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
2804 bool need_full_deoptimization = false;
2805 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
2806 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == location->dex_pc) {
2807 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
2808 need_full_deoptimization = gBreakpoints[i].need_full_deoptimization;
2809 DCHECK_NE(need_full_deoptimization, Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2810 gBreakpoints.erase(gBreakpoints.begin() + i);
2811 break;
2812 }
2813 }
2814 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
2815 if (existing_breakpoint == nullptr) {
2816 // There is no more breakpoint on this method: we need to undeoptimize.
2817 if (need_full_deoptimization) {
2818 // This method required full deoptimization: we need to undeoptimize everything.
2819 req->kind = DeoptimizationRequest::kFullUndeoptimization;
2820 req->method = nullptr;
2821 } else {
2822 // This method required selective deoptimization: we need to undeoptimize only that method.
2823 req->kind = DeoptimizationRequest::kSelectiveUndeoptimization;
2824 req->method = m;
2825 }
2826 } else {
2827 // There is at least one breakpoint for this method: we don't need to undeoptimize.
2828 req->kind = DeoptimizationRequest::kNothing;
2829 req->method = nullptr;
2830 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
Elliott Hughes86964332012-02-15 19:37:42 -08002831 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002832}
2833
Jeff Hao449db332013-04-12 18:30:52 -07002834// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
2835// cause suspension if the thread is the current thread.
2836class ScopedThreadSuspension {
2837 public:
Ian Rogers33e95662013-05-20 20:29:14 -07002838 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002839 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07002840 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Jeff Hao449db332013-04-12 18:30:52 -07002841 thread_(NULL),
2842 error_(JDWP::ERR_NONE),
2843 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07002844 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07002845 ScopedObjectAccessUnchecked soa(self);
2846 {
2847 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2848 error_ = DecodeThread(soa, thread_id, thread_);
2849 }
2850 if (error_ == JDWP::ERR_NONE) {
2851 if (thread_ == soa.Self()) {
2852 self_suspend_ = true;
2853 } else {
2854 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
2855 jobject thread_peer = gRegistry->GetJObject(thread_id);
2856 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002857 Thread* suspended_thread = ThreadList::SuspendThreadByPeer(thread_peer, true, true,
2858 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07002859 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
2860 if (suspended_thread == NULL) {
2861 // Thread terminated from under us while suspending.
2862 error_ = JDWP::ERR_INVALID_THREAD;
2863 } else {
2864 CHECK_EQ(suspended_thread, thread_);
2865 other_suspend_ = true;
2866 }
2867 }
2868 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002869 }
Elliott Hughes86964332012-02-15 19:37:42 -08002870
Jeff Hao449db332013-04-12 18:30:52 -07002871 Thread* GetThread() const {
2872 return thread_;
2873 }
2874
2875 JDWP::JdwpError GetError() const {
2876 return error_;
2877 }
2878
2879 ~ScopedThreadSuspension() {
2880 if (other_suspend_) {
2881 Runtime::Current()->GetThreadList()->Resume(thread_, true);
2882 }
2883 }
2884
2885 private:
2886 Thread* thread_;
2887 JDWP::JdwpError error_;
2888 bool self_suspend_;
2889 bool other_suspend_;
2890};
2891
2892JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
2893 JDWP::JdwpStepDepth step_depth) {
2894 Thread* self = Thread::Current();
2895 ScopedThreadSuspension sts(self, thread_id);
2896 if (sts.GetError() != JDWP::ERR_NONE) {
2897 return sts.GetError();
2898 }
2899
Elliott Hughes2435a572012-02-17 16:07:41 -08002900 //
2901 // Work out what Method* we're in, the current line number, and how deep the stack currently
2902 // is for step-out.
2903 //
2904
Ian Rogers0399dde2012-06-06 17:09:28 -07002905 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002906 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
2907 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002908 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002909 : StackVisitor(thread, NULL), single_step_control_(single_step_control),
2910 line_number_(line_number) {
2911 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
2912 single_step_control_->method = NULL;
2913 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08002914 }
Ian Rogersca190662012-06-26 15:45:57 -07002915
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002916 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2917 // annotalysis.
2918 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002919 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002920 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002921 ++single_step_control_->stack_depth;
2922 if (single_step_control_->method == NULL) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08002923 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002924 single_step_control_->method = m;
2925 *line_number_ = -1;
Elliott Hughes2435a572012-02-17 16:07:41 -08002926 if (dex_cache != NULL) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07002927 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002928 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08002929 }
Elliott Hughes86964332012-02-15 19:37:42 -08002930 }
2931 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002932 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08002933 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002934
2935 SingleStepControl* const single_step_control_;
2936 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08002937 };
Jeff Hao449db332013-04-12 18:30:52 -07002938
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002939 Thread* const thread = sts.GetThread();
2940 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
2941 DCHECK(single_step_control != nullptr);
2942 int32_t line_number = -1;
2943 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07002944 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08002945
Elliott Hughes2435a572012-02-17 16:07:41 -08002946 //
2947 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
2948 //
2949
2950 struct DebugCallbackContext {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002951 explicit DebugCallbackContext(SingleStepControl* single_step_control, int32_t line_number)
2952 : single_step_control_(single_step_control), line_number_(line_number),
2953 last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002954 }
2955
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002956 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002957 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002958 if (static_cast<int32_t>(line_number) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002959 if (!context->last_pc_valid) {
2960 // Everything from this address until the next line change is ours.
2961 context->last_pc = address;
2962 context->last_pc_valid = true;
2963 }
2964 // Otherwise, if we're already in a valid range for this line,
2965 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002966 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08002967 // Add everything from the last entry up until here to the set
2968 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002969 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08002970 }
2971 context->last_pc_valid = false;
2972 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002973 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08002974 }
2975
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002976 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08002977 // If the line number was the last in the position table...
2978 if (last_pc_valid) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002979 size_t end = MethodHelper(single_step_control_->method).GetCodeItem()->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08002980 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002981 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08002982 }
2983 }
2984 }
2985
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002986 SingleStepControl* const single_step_control_;
2987 const int32_t line_number_;
Elliott Hughes2435a572012-02-17 16:07:41 -08002988 bool last_pc_valid;
2989 uint32_t last_pc;
2990 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002991 single_step_control->dex_pcs.clear();
Ian Rogersef7d42f2014-01-06 12:55:46 -08002992 mirror::ArtMethod* m = single_step_control->method;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002993 if (!m->IsNative()) {
2994 DebugCallbackContext context(single_step_control, line_number);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08002995 MethodHelper mh(m);
2996 mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(),
2997 DebugCallbackContext::Callback, NULL, &context);
2998 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002999
3000 //
3001 // Everything else...
3002 //
3003
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003004 single_step_control->step_size = step_size;
3005 single_step_control->step_depth = step_depth;
3006 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08003007
Elliott Hughes2435a572012-02-17 16:07:41 -08003008 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003009 VLOG(jdwp) << "Single-step thread: " << *thread;
3010 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
3011 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
3012 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
3013 VLOG(jdwp) << "Single-step current line: " << line_number;
3014 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08003015 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003016 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 -08003017 VLOG(jdwp) << StringPrintf(" %#x", *it);
Elliott Hughes2435a572012-02-17 16:07:41 -08003018 }
3019 }
3020
3021 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003022}
3023
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003024void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3025 ScopedObjectAccessUnchecked soa(Thread::Current());
3026 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
3027 Thread* thread;
3028 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003029 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003030 SingleStepControl* single_step_control = thread->GetSingleStepControl();
3031 DCHECK(single_step_control != nullptr);
3032 single_step_control->is_active = false;
3033 single_step_control->dex_pcs.clear();
3034 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003035}
3036
Elliott Hughes45651fd2012-02-21 15:48:20 -08003037static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3038 switch (tag) {
3039 default:
3040 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
3041
3042 // Primitives.
3043 case JDWP::JT_BYTE: return 'B';
3044 case JDWP::JT_CHAR: return 'C';
3045 case JDWP::JT_FLOAT: return 'F';
3046 case JDWP::JT_DOUBLE: return 'D';
3047 case JDWP::JT_INT: return 'I';
3048 case JDWP::JT_LONG: return 'J';
3049 case JDWP::JT_SHORT: return 'S';
3050 case JDWP::JT_VOID: return 'V';
3051 case JDWP::JT_BOOLEAN: return 'Z';
3052
3053 // Reference types.
3054 case JDWP::JT_ARRAY:
3055 case JDWP::JT_OBJECT:
3056 case JDWP::JT_STRING:
3057 case JDWP::JT_THREAD:
3058 case JDWP::JT_THREAD_GROUP:
3059 case JDWP::JT_CLASS_LOADER:
3060 case JDWP::JT_CLASS_OBJECT:
3061 return 'L';
3062 }
3063}
3064
Elliott Hughes88d63092013-01-09 09:55:54 -08003065JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3066 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003067 uint32_t arg_count, uint64_t* arg_values,
3068 JDWP::JdwpTag* arg_types, uint32_t options,
3069 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3070 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003071 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3072
3073 Thread* targetThread = NULL;
3074 DebugInvokeReq* req = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003075 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003076 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003077 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003078 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08003079 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread);
3080 if (error != JDWP::ERR_NONE) {
3081 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3082 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003083 }
3084 req = targetThread->GetInvokeReq();
3085 if (!req->ready) {
3086 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3087 return JDWP::ERR_INVALID_THREAD;
3088 }
3089
3090 /*
3091 * We currently have a bug where we don't successfully resume the
3092 * target thread if the suspend count is too deep. We're expected to
3093 * require one "resume" for each "suspend", but when asked to execute
3094 * a method we have to resume fully and then re-suspend it back to the
3095 * same level. (The easiest way to cause this is to type "suspend"
3096 * multiple times in jdb.)
3097 *
3098 * It's unclear what this means when the event specifies "resume all"
3099 * and some threads are suspended more deeply than others. This is
3100 * a rare problem, so for now we just prevent it from hanging forever
3101 * by rejecting the method invocation request. Without this, we will
3102 * be stuck waiting on a suspended thread.
3103 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003104 int suspend_count;
3105 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003106 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003107 suspend_count = targetThread->GetSuspendCount();
3108 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003109 if (suspend_count > 1) {
3110 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003111 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003112 }
3113
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003114 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003115 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08003116 if (receiver == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003117 return JDWP::ERR_INVALID_OBJECT;
3118 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003119
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003120 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08003121 if (thread == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003122 return JDWP::ERR_INVALID_OBJECT;
3123 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003124 // TODO: check that 'thread' is actually a java.lang.Thread!
3125
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003126 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003127 if (c == NULL) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003128 return status;
3129 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003130
Brian Carlstromea46f952013-07-30 01:26:50 -07003131 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003132 if (m->IsStatic() != (receiver == NULL)) {
3133 return JDWP::ERR_INVALID_METHODID;
3134 }
3135 if (m->IsStatic()) {
3136 if (m->GetDeclaringClass() != c) {
3137 return JDWP::ERR_INVALID_METHODID;
3138 }
3139 } else {
3140 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3141 return JDWP::ERR_INVALID_METHODID;
3142 }
3143 }
3144
3145 // Check the argument list matches the method.
3146 MethodHelper mh(m);
3147 if (mh.GetShortyLength() - 1 != arg_count) {
3148 return JDWP::ERR_ILLEGAL_ARGUMENT;
3149 }
3150 const char* shorty = mh.GetShorty();
Elliott Hughes09201632013-04-15 15:50:07 -07003151 const DexFile::TypeList* types = mh.GetParameterTypeList();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003152 for (size_t i = 0; i < arg_count; ++i) {
3153 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
3154 return JDWP::ERR_ILLEGAL_ARGUMENT;
3155 }
Elliott Hughes09201632013-04-15 15:50:07 -07003156
3157 if (shorty[i + 1] == 'L') {
3158 // Did we really get an argument of an appropriate reference type?
3159 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
3160 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i]);
3161 if (argument == ObjectRegistry::kInvalidObject) {
3162 return JDWP::ERR_INVALID_OBJECT;
3163 }
Sebastien Hertz0630ab52013-11-28 18:53:35 +01003164 if (argument != NULL && !argument->InstanceOf(parameter_type)) {
Elliott Hughes09201632013-04-15 15:50:07 -07003165 return JDWP::ERR_ILLEGAL_ARGUMENT;
3166 }
3167
3168 // Turn the on-the-wire ObjectId into a jobject.
3169 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3170 v.l = gRegistry->GetJObject(arg_values[i]);
3171 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003172 }
3173
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003174 req->receiver = receiver;
3175 req->thread = thread;
3176 req->klass = c;
3177 req->method = m;
3178 req->arg_count = arg_count;
3179 req->arg_values = arg_values;
3180 req->options = options;
3181 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003182 }
3183
3184 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3185 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3186 // call, and it's unwise to hold it during WaitForSuspend.
3187
3188 {
3189 /*
3190 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003191 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003192 * run out of memory. It's also a good idea to change it before locking
3193 * the invokeReq mutex, although that should never be held for long.
3194 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003195 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003196
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003197 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003198 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003199 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003200
3201 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003202 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003203 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003204 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003205 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003206 thread_list->Resume(targetThread, true);
3207 }
3208
3209 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003210 while (req->invoke_needed) {
3211 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003212 }
3213 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003214 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003215
3216 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003217 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003218 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003219 }
3220
3221 /*
3222 * Suspend the threads. We waited for the target thread to suspend
3223 * itself, so all we need to do is suspend the others.
3224 *
3225 * The suspendAllThreads() call will double-suspend the event thread,
3226 * so we want to resume the target thread once to keep the books straight.
3227 */
3228 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003229 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003230 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003231 thread_list->SuspendAllForDebugger();
3232 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003233 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003234 thread_list->Resume(targetThread, true);
3235 }
3236
3237 // Copy the result.
3238 *pResultTag = req->result_tag;
3239 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003240 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003241 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003242 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003243 }
3244 *pExceptionId = req->exception;
3245 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003246}
3247
3248void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003249 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003250
Elliott Hughes81ff3182012-03-23 20:35:56 -07003251 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003252 // to preserve that across the method invocation.
Ian Rogers62d6c772013-02-27 08:32:07 -08003253 SirtRef<mirror::Object> old_throw_this_object(soa.Self(), NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -07003254 SirtRef<mirror::ArtMethod> old_throw_method(soa.Self(), NULL);
Ian Rogers62d6c772013-02-27 08:32:07 -08003255 SirtRef<mirror::Throwable> old_exception(soa.Self(), NULL);
3256 uint32_t old_throw_dex_pc;
3257 {
3258 ThrowLocation old_throw_location;
3259 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
3260 old_throw_this_object.reset(old_throw_location.GetThis());
3261 old_throw_method.reset(old_throw_location.GetMethod());
3262 old_exception.reset(old_exception_obj);
3263 old_throw_dex_pc = old_throw_location.GetDexPc();
3264 soa.Self()->ClearException();
3265 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003266
3267 // Translate the method through the vtable, unless the debugger wants to suppress it.
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003268 SirtRef<mirror::ArtMethod> m(soa.Self(), pReq->method);
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003269 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != NULL) {
Sebastien Hertz83a47d82014-03-20 09:57:40 +01003270 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.get());
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003271 if (actual_method != m.get()) {
3272 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.get()) << " to " << PrettyMethod(actual_method);
3273 m.reset(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003274 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003275 }
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003276 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003277 << " receiver=" << pReq->receiver
3278 << " arg_count=" << pReq->arg_count;
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003279 CHECK(m.get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003280
3281 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3282
Sebastien Hertz83a47d82014-03-20 09:57:40 +01003283 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.get()),
Ian Rogers53b8b092014-03-13 23:45:53 -07003284 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003285
Ian Rogers62d6c772013-02-27 08:32:07 -08003286 mirror::Throwable* exception = soa.Self()->GetException(NULL);
3287 soa.Self()->ClearException();
3288 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003289 pReq->result_tag = BasicTagFromDescriptor(MethodHelper(m.get()).GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003290 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003291 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3292 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003293 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003294 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3295 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003296 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003297 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003298 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003299 pReq->result_tag = new_tag;
3300 }
3301
3302 /*
3303 * Register the object. We don't actually need an ObjectId yet,
3304 * but we do need to be sure that the GC won't move or discard the
3305 * object when we switch out of RUNNING. The ObjectId conversion
3306 * will add the object to the "do not touch" list.
3307 *
3308 * We can't use the "tracked allocation" mechanism here because
3309 * the object is going to be handed off to a different thread.
3310 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003311 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003312 }
3313
3314 if (old_exception.get() != NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003315 ThrowLocation gc_safe_throw_location(old_throw_this_object.get(), old_throw_method.get(),
3316 old_throw_dex_pc);
3317 soa.Self()->SetException(gc_safe_throw_location, old_exception.get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003318 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003319}
3320
Elliott Hughesd07986f2011-12-06 18:27:45 -08003321/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003322 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003323 * need to process each, accumulate the replies, and ship the whole thing
3324 * back.
3325 *
3326 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3327 * and includes the chunk type/length, followed by the data.
3328 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003329 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003330 * chunk. If this becomes inconvenient we will need to adapt.
3331 */
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003332bool Dbg::DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003333 Thread* self = Thread::Current();
3334 JNIEnv* env = self->GetJniEnv();
3335
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003336 uint32_t type = request.ReadUnsigned32("type");
3337 uint32_t length = request.ReadUnsigned32("length");
3338
3339 // Create a byte[] corresponding to 'request'.
3340 size_t request_length = request.size();
3341 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003342 if (dataArray.get() == NULL) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003343 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003344 env->ExceptionClear();
3345 return false;
3346 }
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003347 env->SetByteArrayRegion(dataArray.get(), 0, request_length, reinterpret_cast<const jbyte*>(request.data()));
3348 request.Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003349
3350 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003351 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003352 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003353 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003354 return false;
3355 }
3356
3357 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003358 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3359 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003360 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003361 if (env->ExceptionCheck()) {
3362 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3363 env->ExceptionDescribe();
3364 env->ExceptionClear();
3365 return false;
3366 }
3367
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003368 if (chunk.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003369 return false;
3370 }
3371
3372 /*
3373 * Pull the pieces out of the chunk. We copy the results into a
3374 * newly-allocated buffer that the caller can free. We don't want to
3375 * continue using the Chunk object because nothing has a reference to it.
3376 *
3377 * We could avoid this by returning type/data/offset/length and having
3378 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003379 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003380 * if we have responses for multiple chunks.
3381 *
3382 * So we're pretty much stuck with copying data around multiple times.
3383 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003384 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 -08003385 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003386 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003387 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003388
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003389 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 -07003390 if (length == 0 || replyData.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003391 return false;
3392 }
3393
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003394 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003395 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
3396 if (reply == NULL) {
3397 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3398 return false;
3399 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003400 JDWP::Set4BE(reply + 0, type);
3401 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003402 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003403
3404 *pReplyBuf = reply;
3405 *pReplyLen = length + kChunkHdrLen;
3406
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003407 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003408 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003409}
3410
Elliott Hughesa2155262011-11-16 16:26:58 -08003411void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003412 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003413
3414 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003415 if (self->GetState() != kRunnable) {
3416 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3417 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003418 }
3419
3420 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003421 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003422 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3423 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3424 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003425 if (env->ExceptionCheck()) {
3426 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3427 env->ExceptionDescribe();
3428 env->ExceptionClear();
3429 }
3430}
3431
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003432void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003433 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003434}
3435
3436void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003437 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003438 gDdmThreadNotification = false;
3439}
3440
3441/*
Elliott Hughes82188472011-11-07 18:11:48 -08003442 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003443 *
3444 * Because we broadcast the full set of threads when the notifications are
3445 * first enabled, it's possible for "thread" to be actively executing.
3446 */
Elliott Hughes82188472011-11-07 18:11:48 -08003447void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003448 if (!gDdmThreadNotification) {
3449 return;
3450 }
3451
Elliott Hughes82188472011-11-07 18:11:48 -08003452 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003453 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003454 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003455 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003456 } else {
3457 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003458 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003459 SirtRef<mirror::String> name(soa.Self(), t->GetThreadName(soa));
Elliott Hughes82188472011-11-07 18:11:48 -08003460 size_t char_count = (name.get() != NULL) ? name->GetLength() : 0;
jeffhao725a9572012-11-13 18:20:12 -08003461 const jchar* chars = (name.get() != NULL) ? name->GetCharArray()->GetData() : NULL;
Elliott Hughes82188472011-11-07 18:11:48 -08003462
Elliott Hughes21f32d72011-11-09 17:44:13 -08003463 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003464 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003465 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003466 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3467 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003468 }
3469}
3470
Elliott Hughes47fce012011-10-25 18:37:19 -07003471void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003472 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003473 gDdmThreadNotification = enable;
3474 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003475 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3476 // see a suspension in progress and block until that ends. They then post their own start
3477 // notification.
3478 SuspendVM();
3479 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003480 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003481 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003482 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003483 threads = Runtime::Current()->GetThreadList()->GetList();
3484 }
3485 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003486 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003487 for (Thread* thread : threads) {
3488 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003489 }
3490 }
3491 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003492 }
3493}
3494
Elliott Hughesa2155262011-11-16 16:26:58 -08003495void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003496 if (IsDebuggerActive()) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07003497 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08003498 JDWP::ObjectId id = gRegistry->Add(t->GetPeer());
Elliott Hughes82188472011-11-07 18:11:48 -08003499 gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003500 }
Elliott Hughes82188472011-11-07 18:11:48 -08003501 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003502}
3503
3504void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003505 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003506}
3507
3508void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003509 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003510}
3511
Elliott Hughes82188472011-11-07 18:11:48 -08003512void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003513 CHECK(buf != NULL);
3514 iovec vec[1];
3515 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3516 vec[0].iov_len = byte_count;
3517 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003518}
3519
Elliott Hughes21f32d72011-11-09 17:44:13 -08003520void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3521 DdmSendChunk(type, bytes.size(), &bytes[0]);
3522}
3523
Brian Carlstromf5293522013-07-19 00:24:00 -07003524void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003525 if (gJdwpState == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003526 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003527 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003528 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003529 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003530}
3531
Elliott Hughes767a1472011-10-26 18:49:02 -07003532int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3533 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003534 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003535 return true;
3536 }
3537
3538 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
3539 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
3540 return false;
3541 }
3542
3543 gDdmHpifWhen = when;
3544 return true;
3545}
3546
3547bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
3548 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
3549 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
3550 return false;
3551 }
3552
3553 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
3554 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
3555 return false;
3556 }
3557
3558 if (native) {
3559 gDdmNhsgWhen = when;
3560 gDdmNhsgWhat = what;
3561 } else {
3562 gDdmHpsgWhen = when;
3563 gDdmHpsgWhat = what;
3564 }
3565 return true;
3566}
3567
Elliott Hughes7162ad92011-10-27 14:08:42 -07003568void Dbg::DdmSendHeapInfo(HpifWhen reason) {
3569 // If there's a one-shot 'when', reset it.
3570 if (reason == gDdmHpifWhen) {
3571 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
3572 gDdmHpifWhen = HPIF_WHEN_NEVER;
3573 }
3574 }
3575
3576 /*
3577 * Chunk HPIF (client --> server)
3578 *
3579 * Heap Info. General information about the heap,
3580 * suitable for a summary display.
3581 *
3582 * [u4]: number of heaps
3583 *
3584 * For each heap:
3585 * [u4]: heap ID
3586 * [u8]: timestamp in ms since Unix epoch
3587 * [u1]: capture reason (same as 'when' value from server)
3588 * [u4]: max heap size in bytes (-Xmx)
3589 * [u4]: current heap size in bytes
3590 * [u4]: current number of bytes allocated
3591 * [u4]: current number of objects allocated
3592 */
3593 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07003594 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08003595 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08003596 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003597 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08003598 JDWP::Append8BE(bytes, MilliTime());
3599 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003600 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
3601 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003602 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
3603 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08003604 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
3605 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07003606}
3607
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003608enum HpsgSolidity {
3609 SOLIDITY_FREE = 0,
3610 SOLIDITY_HARD = 1,
3611 SOLIDITY_SOFT = 2,
3612 SOLIDITY_WEAK = 3,
3613 SOLIDITY_PHANTOM = 4,
3614 SOLIDITY_FINALIZABLE = 5,
3615 SOLIDITY_SWEEP = 6,
3616};
3617
3618enum HpsgKind {
3619 KIND_OBJECT = 0,
3620 KIND_CLASS_OBJECT = 1,
3621 KIND_ARRAY_1 = 2,
3622 KIND_ARRAY_2 = 3,
3623 KIND_ARRAY_4 = 4,
3624 KIND_ARRAY_8 = 5,
3625 KIND_UNKNOWN = 6,
3626 KIND_NATIVE = 7,
3627};
3628
3629#define HPSG_PARTIAL (1<<7)
3630#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
3631
Ian Rogers30fab402012-01-23 15:43:46 -08003632class HeapChunkContext {
3633 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003634 // Maximum chunk size. Obtain this from the formula:
3635 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
3636 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08003637 : buf_(16384 - 16),
3638 type_(0),
3639 merge_(merge) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003640 Reset();
3641 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08003642 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003643 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08003644 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003645 }
3646 }
3647
3648 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08003649 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003650 Flush();
3651 }
3652 }
3653
3654 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08003655 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003656 return;
3657 }
3658
3659 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003660 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
3661 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003662
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003663 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
3664 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003665 // [u4]: length of piece, in allocation units
3666 // 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 -08003667 pieceLenField_ = p_;
3668 JDWP::Write4BE(&p_, 0x55555555);
3669 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003670 }
3671
Ian Rogersb726dcb2012-09-05 08:57:23 -07003672 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd636b062013-01-18 17:51:18 -08003673 if (pieceLenField_ == NULL) {
3674 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
3675 CHECK(needHeader_);
3676 return;
3677 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003678 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08003679 CHECK_LE(&buf_[0], pieceLenField_);
3680 CHECK_LE(pieceLenField_, p_);
3681 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003682
Ian Rogers30fab402012-01-23 15:43:46 -08003683 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003684 Reset();
3685 }
3686
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003687 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003688 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3689 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003690 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08003691 }
3692
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003693 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08003694 enum { ALLOCATION_UNIT_SIZE = 8 };
3695
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003696 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08003697 p_ = &buf_[0];
Ian Rogers15bf2d32012-08-28 17:33:04 -07003698 startOfNextMemoryChunk_ = NULL;
Ian Rogers30fab402012-01-23 15:43:46 -08003699 totalAllocationUnits_ = 0;
3700 needHeader_ = true;
3701 pieceLenField_ = NULL;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003702 }
3703
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003704 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003705 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3706 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003707 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
3708 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07003709 if (used_bytes == 0) {
3710 if (start == NULL) {
3711 // Reset for start of new heap.
3712 startOfNextMemoryChunk_ = NULL;
3713 Flush();
3714 }
3715 // Only process in use memory so that free region information
3716 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08003717 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08003718 }
3719
Ian Rogers15bf2d32012-08-28 17:33:04 -07003720 /* If we're looking at the native heap, we'll just return
3721 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
3722 */
3723 bool native = type_ == CHUNK_TYPE("NHSG");
3724
3725 if (startOfNextMemoryChunk_ != NULL) {
3726 // Transmit any pending free memory. Native free memory of
3727 // over kMaxFreeLen could be because of the use of mmaps, so
3728 // don't report. If not free memory then start a new segment.
3729 bool flush = true;
3730 if (start > startOfNextMemoryChunk_) {
3731 const size_t kMaxFreeLen = 2 * kPageSize;
3732 void* freeStart = startOfNextMemoryChunk_;
3733 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07003734 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07003735 if (!native || freeLen < kMaxFreeLen) {
3736 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
3737 flush = false;
3738 }
3739 }
3740 if (flush) {
3741 startOfNextMemoryChunk_ = NULL;
3742 Flush();
3743 }
3744 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08003745 mirror::Object* obj = reinterpret_cast<mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08003746
3747 // Determine the type of this chunk.
3748 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
3749 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003750 uint8_t state = ExamineObject(obj, native);
3751 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
3752 // allocation then the first sizeof(size_t) may belong to it.
3753 const size_t dlMallocOverhead = sizeof(size_t);
3754 AppendChunk(state, start, used_bytes + dlMallocOverhead);
Brian Carlstrom2d888622013-07-18 17:02:00 -07003755 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + dlMallocOverhead;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003756 }
Elliott Hughesa2155262011-11-16 16:26:58 -08003757
Ian Rogers15bf2d32012-08-28 17:33:04 -07003758 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003759 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003760 // Make sure there's enough room left in the buffer.
3761 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
3762 // 17 bytes for any header.
3763 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
3764 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3765 if (bytesLeft < needed) {
3766 Flush();
3767 }
3768
3769 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3770 if (bytesLeft < needed) {
3771 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
3772 << needed << " bytes)";
3773 return;
3774 }
3775 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08003776 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003777 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
3778 totalAllocationUnits_ += length;
3779 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08003780 *p_++ = state | HPSG_PARTIAL;
3781 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07003782 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08003783 }
Ian Rogers30fab402012-01-23 15:43:46 -08003784 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003785 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003786 }
3787
Ian Rogersef7d42f2014-01-06 12:55:46 -08003788 uint8_t ExamineObject(mirror::Object* o, bool is_native_heap)
3789 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003790 if (o == NULL) {
3791 return HPSG_STATE(SOLIDITY_FREE, 0);
3792 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003793
Elliott Hughesa2155262011-11-16 16:26:58 -08003794 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003795
Elliott Hughesa2155262011-11-16 16:26:58 -08003796 // If we're looking at the native heap, we'll just return
3797 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003798 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003799 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
3800 }
3801
Ian Rogers5bfa60f2012-09-02 21:17:56 -07003802 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003803 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003804 }
3805
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003806 mirror::Class* c = o->GetClass();
Elliott Hughesa2155262011-11-16 16:26:58 -08003807 if (c == NULL) {
3808 // The object was probably just created but hasn't been initialized yet.
3809 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3810 }
3811
Mathieu Chartier590fee92013-09-13 13:46:47 -07003812 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003813 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08003814 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
3815 }
3816
3817 if (c->IsClassClass()) {
3818 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
3819 }
3820
3821 if (c->IsArrayClass()) {
3822 if (o->IsObjectArray()) {
3823 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3824 }
3825 switch (c->GetComponentSize()) {
3826 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
3827 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
3828 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3829 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
3830 }
3831 }
3832
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003833 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3834 }
3835
Ian Rogers30fab402012-01-23 15:43:46 -08003836 std::vector<uint8_t> buf_;
3837 uint8_t* p_;
3838 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003839 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08003840 size_t totalAllocationUnits_;
3841 uint32_t type_;
3842 bool merge_;
3843 bool needHeader_;
3844
Elliott Hughesa2155262011-11-16 16:26:58 -08003845 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
3846};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003847
3848void Dbg::DdmSendHeapSegments(bool native) {
3849 Dbg::HpsgWhen when;
3850 Dbg::HpsgWhat what;
3851 if (!native) {
3852 when = gDdmHpsgWhen;
3853 what = gDdmHpsgWhat;
3854 } else {
3855 when = gDdmNhsgWhen;
3856 what = gDdmNhsgWhat;
3857 }
3858 if (when == HPSG_WHEN_NEVER) {
3859 return;
3860 }
3861
3862 // Figure out what kind of chunks we'll be sending.
3863 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
3864
3865 // First, send a heap start chunk.
3866 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003867 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003868 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
3869
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003870 Thread* self = Thread::Current();
3871
3872 // To allow the Walk/InspectAll() below to exclusively-lock the
3873 // mutator lock, temporarily release the shared access to the
3874 // mutator lock here by transitioning to the suspended state.
3875 Locks::mutator_lock_->AssertSharedHeld(self);
3876 self->TransitionFromRunnableToSuspended(kSuspended);
3877
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003878 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08003879 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
3880 if (native) {
Ian Rogers1d54e732013-05-02 21:10:01 -07003881 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003882 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07003883 gc::Heap* heap = Runtime::Current()->GetHeap();
3884 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers1d54e732013-05-02 21:10:01 -07003885 typedef std::vector<gc::space::ContinuousSpace*>::const_iterator It;
3886 for (It cur = spaces.begin(), end = spaces.end(); cur != end; ++cur) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003887 if ((*cur)->IsMallocSpace()) {
3888 (*cur)->AsMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07003889 }
3890 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07003891 // Walk the large objects, these are not in the AllocSpace.
3892 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003893 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003894
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003895 // Shared-lock the mutator lock back.
3896 self->TransitionFromSuspendedToRunnable();
3897 Locks::mutator_lock_->AssertSharedHeld(self);
3898
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003899 // Finally, send a heap end chunk.
3900 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07003901}
3902
Elliott Hughesb1a58792013-07-11 18:10:58 -07003903static size_t GetAllocTrackerMax() {
3904#ifdef HAVE_ANDROID_OS
3905 // Check whether there's a system property overriding the number of records.
3906 const char* propertyName = "dalvik.vm.allocTrackerMax";
3907 char allocRecordMaxString[PROPERTY_VALUE_MAX];
3908 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
3909 char* end;
3910 size_t value = strtoul(allocRecordMaxString, &end, 10);
3911 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07003912 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
3913 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07003914 return kDefaultNumAllocRecords;
3915 }
3916 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07003917 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
3918 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07003919 return kDefaultNumAllocRecords;
3920 }
3921 return value;
3922 }
3923#endif
3924 return kDefaultNumAllocRecords;
3925}
3926
Elliott Hughes545a0642011-11-08 19:10:03 -08003927void Dbg::SetAllocTrackingEnabled(bool enabled) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003928 if (enabled) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01003929 {
3930 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
3931 if (recent_allocation_records_ == NULL) {
3932 alloc_record_max_ = GetAllocTrackerMax();
3933 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
3934 << kMaxAllocRecordStackDepth << " frames, taking "
3935 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
3936 alloc_record_head_ = alloc_record_count_ = 0;
3937 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
3938 CHECK(recent_allocation_records_ != NULL);
3939 }
Elliott Hughes545a0642011-11-08 19:10:03 -08003940 }
Ian Rogersfa824272013-11-05 16:12:57 -08003941 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08003942 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08003943 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01003944 {
3945 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
3946 delete[] recent_allocation_records_;
3947 recent_allocation_records_ = NULL;
3948 }
Elliott Hughes545a0642011-11-08 19:10:03 -08003949 }
3950}
3951
Ian Rogers0399dde2012-06-06 17:09:28 -07003952struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08003953 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003954 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08003955 : StackVisitor(thread, NULL), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08003956
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003957 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3958 // annotalysis.
3959 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08003960 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07003961 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08003962 }
Brian Carlstromea46f952013-07-30 01:26:50 -07003963 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003964 if (!m->IsRuntimeMethod()) {
3965 record->stack[depth].method = m;
3966 record->stack[depth].dex_pc = GetDexPc();
Elliott Hughes530fa002012-03-12 11:44:49 -07003967 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08003968 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003969 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08003970 }
3971
3972 ~AllocRecordStackVisitor() {
3973 // Clear out any unused stack trace elements.
3974 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
3975 record->stack[depth].method = NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -07003976 record->stack[depth].dex_pc = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08003977 }
3978 }
3979
3980 AllocRecord* record;
3981 size_t depth;
3982};
3983
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003984void Dbg::RecordAllocation(mirror::Class* type, size_t byte_count) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003985 Thread* self = Thread::Current();
3986 CHECK(self != NULL);
3987
Ian Rogers719d1a32014-03-06 12:13:39 -08003988 MutexLock mu(self, *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08003989 if (recent_allocation_records_ == NULL) {
3990 return;
3991 }
3992
3993 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08003994 if (++alloc_record_head_ == alloc_record_max_) {
3995 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08003996 }
3997
3998 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08003999 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Elliott Hughes545a0642011-11-08 19:10:03 -08004000 record->type = type;
4001 record->byte_count = byte_count;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004002 record->thin_lock_id = self->GetThreadId();
Elliott Hughes545a0642011-11-08 19:10:03 -08004003
4004 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004005 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004006 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004007
Ian Rogers719d1a32014-03-06 12:13:39 -08004008 if (alloc_record_count_ < alloc_record_max_) {
4009 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004010 }
4011}
4012
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004013// Returns the index of the head element.
4014//
4015// We point at the most-recently-written record, so if gAllocRecordCount is 1
4016// we want to use the current element. Take "head+1" and subtract count
4017// from it.
4018//
4019// We need to handle underflow in our circular buffer, so we add
Elliott Hughesb1a58792013-07-11 18:10:58 -07004020// gAllocRecordMax and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004021size_t Dbg::HeadIndex() {
4022 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4023 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004024}
4025
4026void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004027 ScopedObjectAccess soa(Thread::Current());
Ian Rogers719d1a32014-03-06 12:13:39 -08004028 MutexLock mu(soa.Self(), *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08004029 if (recent_allocation_records_ == NULL) {
4030 LOG(INFO) << "Not recording tracked allocations";
4031 return;
4032 }
4033
4034 // "i" is the head of the list. We want to start at the end of the
4035 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004036 size_t i = HeadIndex();
Ian Rogers719d1a32014-03-06 12:13:39 -08004037 size_t count = alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004038
Ian Rogers719d1a32014-03-06 12:13:39 -08004039 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004040 while (count--) {
4041 AllocRecord* record = &recent_allocation_records_[i];
4042
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004043 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->thin_lock_id, record->byte_count)
Elliott Hughes545a0642011-11-08 19:10:03 -08004044 << PrettyClass(record->type);
4045
4046 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08004047 mirror::ArtMethod* m = record->stack[stack_frame].method;
Elliott Hughes545a0642011-11-08 19:10:03 -08004048 if (m == NULL) {
4049 break;
4050 }
4051 LOG(INFO) << " " << PrettyMethod(m) << " line " << record->stack[stack_frame].LineNumber();
4052 }
4053
4054 // pause periodically to help logcat catch up
4055 if ((count % 5) == 0) {
4056 usleep(40000);
4057 }
4058
Ian Rogers719d1a32014-03-06 12:13:39 -08004059 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004060 }
4061}
4062
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -07004063void Dbg::UpdateObjectPointers(IsMarkedCallback* callback, void* arg) {
Ian Rogers719d1a32014-03-06 12:13:39 -08004064 if (recent_allocation_records_ != nullptr) {
4065 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
4066 size_t i = HeadIndex();
4067 size_t count = alloc_record_count_;
4068 while (count--) {
4069 AllocRecord* record = &recent_allocation_records_[i];
4070 DCHECK(record != nullptr);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -07004071 record->UpdateObjectPointers(callback, arg);
Ian Rogers719d1a32014-03-06 12:13:39 -08004072 i = (i + 1) & (alloc_record_max_ - 1);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08004073 }
4074 }
4075 if (gRegistry != nullptr) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -07004076 gRegistry->UpdateObjectPointers(callback, arg);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08004077 }
4078}
4079
4080void Dbg::AllowNewObjectRegistryObjects() {
4081 if (gRegistry != nullptr) {
4082 gRegistry->AllowNewObjects();
4083 }
4084}
4085
4086void Dbg::DisallowNewObjectRegistryObjects() {
4087 if (gRegistry != nullptr) {
4088 gRegistry->DisallowNewObjects();
4089 }
4090}
4091
Elliott Hughes545a0642011-11-08 19:10:03 -08004092class StringTable {
4093 public:
4094 StringTable() {
4095 }
4096
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004097 void Add(const char* s) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004098 table_.insert(s);
4099 }
4100
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004101 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004102 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004103 if (it == table_.end()) {
4104 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4105 }
4106 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004107 }
4108
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004109 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004110 return table_.size();
4111 }
4112
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004113 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004114 for (const std::string& str : table_) {
4115 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004116 size_t s_len = CountModifiedUtf8Chars(s);
4117 UniquePtr<uint16_t> s_utf16(new uint16_t[s_len]);
4118 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4119 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004120 }
4121 }
4122
4123 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004124 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004125 DISALLOW_COPY_AND_ASSIGN(StringTable);
4126};
4127
4128/*
4129 * The data we send to DDMS contains everything we have recorded.
4130 *
4131 * Message header (all values big-endian):
4132 * (1b) message header len (to allow future expansion); includes itself
4133 * (1b) entry header len
4134 * (1b) stack frame len
4135 * (2b) number of entries
4136 * (4b) offset to string table from start of message
4137 * (2b) number of class name strings
4138 * (2b) number of method name strings
4139 * (2b) number of source file name strings
4140 * For each entry:
4141 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004142 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004143 * (2b) allocated object's class name index
4144 * (1b) stack depth
4145 * For each stack frame:
4146 * (2b) method's class name
4147 * (2b) method name
4148 * (2b) method source file
4149 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4150 * (xb) class name strings
4151 * (xb) method name strings
4152 * (xb) source file strings
4153 *
4154 * As with other DDM traffic, strings are sent as a 4-byte length
4155 * followed by UTF-16 data.
4156 *
4157 * We send up 16-bit unsigned indexes into string tables. In theory there
Elliott Hughesb1a58792013-07-11 18:10:58 -07004158 * can be (kMaxAllocRecordStackDepth * gAllocRecordMax) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004159 * each table, but in practice there should be far fewer.
4160 *
4161 * The chief reason for using a string table here is to keep the size of
4162 * the DDMS message to a minimum. This is partly to make the protocol
4163 * efficient, but also because we have to form the whole thing up all at
4164 * once in a memory buffer.
4165 *
4166 * We use separate string tables for class names, method names, and source
4167 * files to keep the indexes small. There will generally be no overlap
4168 * between the contents of these tables.
4169 */
4170jbyteArray Dbg::GetRecentAllocations() {
4171 if (false) {
4172 DumpRecentAllocations();
4173 }
4174
Ian Rogers50b35e22012-10-04 10:09:15 -07004175 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004176 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004177 {
Ian Rogers719d1a32014-03-06 12:13:39 -08004178 MutexLock mu(self, *alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004179 //
4180 // Part 1: generate string tables.
4181 //
4182 StringTable class_names;
4183 StringTable method_names;
4184 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004185
Ian Rogers719d1a32014-03-06 12:13:39 -08004186 int count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004187 int idx = HeadIndex();
4188 while (count--) {
4189 AllocRecord* record = &recent_allocation_records_[idx];
Elliott Hughes545a0642011-11-08 19:10:03 -08004190
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004191 class_names.Add(ClassHelper(record->type).GetDescriptor());
Elliott Hughes545a0642011-11-08 19:10:03 -08004192
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004193 MethodHelper mh;
4194 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07004195 mirror::ArtMethod* m = record->stack[i].method;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004196 if (m != NULL) {
4197 mh.ChangeMethod(m);
4198 class_names.Add(mh.GetDeclaringClassDescriptor());
4199 method_names.Add(mh.GetName());
4200 filenames.Add(mh.GetDeclaringClassSourceFile());
4201 }
4202 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004203
Ian Rogers719d1a32014-03-06 12:13:39 -08004204 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004205 }
4206
Ian Rogers719d1a32014-03-06 12:13:39 -08004207 LOG(INFO) << "allocation records: " << alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004208
4209 //
4210 // Part 2: Generate the output and store it in the buffer.
4211 //
4212
4213 // (1b) message header len (to allow future expansion); includes itself
4214 // (1b) entry header len
4215 // (1b) stack frame len
4216 const int kMessageHeaderLen = 15;
4217 const int kEntryHeaderLen = 9;
4218 const int kStackFrameLen = 8;
4219 JDWP::Append1BE(bytes, kMessageHeaderLen);
4220 JDWP::Append1BE(bytes, kEntryHeaderLen);
4221 JDWP::Append1BE(bytes, kStackFrameLen);
4222
4223 // (2b) number of entries
4224 // (4b) offset to string table from start of message
4225 // (2b) number of class name strings
4226 // (2b) number of method name strings
4227 // (2b) number of source file name strings
Ian Rogers719d1a32014-03-06 12:13:39 -08004228 JDWP::Append2BE(bytes, alloc_record_count_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004229 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004230 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004231 JDWP::Append2BE(bytes, class_names.Size());
4232 JDWP::Append2BE(bytes, method_names.Size());
4233 JDWP::Append2BE(bytes, filenames.Size());
4234
Ian Rogers719d1a32014-03-06 12:13:39 -08004235 count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004236 idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004237 while (count--) {
4238 // For each entry:
4239 // (4b) total allocation size
4240 // (2b) thread id
4241 // (2b) allocated object's class name index
4242 // (1b) stack depth
4243 AllocRecord* record = &recent_allocation_records_[idx];
4244 size_t stack_depth = record->GetDepth();
Mathieu Chartier590fee92013-09-13 13:46:47 -07004245 ClassHelper kh(record->type);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004246 size_t allocated_object_class_name_index = class_names.IndexOf(kh.GetDescriptor());
4247 JDWP::Append4BE(bytes, record->byte_count);
4248 JDWP::Append2BE(bytes, record->thin_lock_id);
4249 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4250 JDWP::Append1BE(bytes, stack_depth);
4251
4252 MethodHelper mh;
4253 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4254 // For each stack frame:
4255 // (2b) method's class name
4256 // (2b) method name
4257 // (2b) method source file
4258 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
4259 mh.ChangeMethod(record->stack[stack_frame].method);
4260 size_t class_name_index = class_names.IndexOf(mh.GetDeclaringClassDescriptor());
4261 size_t method_name_index = method_names.IndexOf(mh.GetName());
4262 size_t file_name_index = filenames.IndexOf(mh.GetDeclaringClassSourceFile());
4263 JDWP::Append2BE(bytes, class_name_index);
4264 JDWP::Append2BE(bytes, method_name_index);
4265 JDWP::Append2BE(bytes, file_name_index);
4266 JDWP::Append2BE(bytes, record->stack[stack_frame].LineNumber());
4267 }
4268
Ian Rogers719d1a32014-03-06 12:13:39 -08004269 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004270 }
4271
4272 // (xb) class name strings
4273 // (xb) method name strings
4274 // (xb) source file strings
4275 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4276 class_names.WriteTo(bytes);
4277 method_names.WriteTo(bytes);
4278 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004279 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004280 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004281 jbyteArray result = env->NewByteArray(bytes.size());
4282 if (result != NULL) {
4283 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4284 }
4285 return result;
4286}
4287
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004288} // namespace art