blob: 4b3d3b9956ae7e24bfe7de13f42a30cf01b87c83 [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"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070031#include "handle_scope.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080032#include "jdwp/object_registry.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070033#include "mirror/art_field-inl.h"
34#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035#include "mirror/class.h"
36#include "mirror/class-inl.h"
37#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038#include "mirror/object-inl.h"
39#include "mirror/object_array-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070040#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080041#include "mirror/throwable.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080042#include "object_utils.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010043#include "quick/inline_method_analyser.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070044#include "reflection.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070045#include "safe_map.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080046#include "scoped_thread_state_change.h"
Elliott Hughes6a5bd492011-10-28 14:33:57 -070047#include "ScopedLocalRef.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070048#include "ScopedPrimitiveArray.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070049#include "handle_scope-inl.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070050#include "thread_list.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080051#include "throw_location.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080052#include "utf.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010053#include "verifier/method_verifier-inl.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070054#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070055
Brian Carlstrom3d92d522013-07-12 09:03:08 -070056#ifdef HAVE_ANDROID_OS
57#include "cutils/properties.h"
58#endif
59
Elliott Hughes872d4ec2011-10-21 17:07:15 -070060namespace art {
61
Brian Carlstrom7934ac22013-07-26 10:54:15 -070062static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
63static const size_t kDefaultNumAllocRecords = 64*1024; // Must be a power of 2.
Elliott Hughes475fc232011-10-25 15:00:35 -070064
Elliott Hughes545a0642011-11-08 19:10:03 -080065struct AllocRecordStackTraceElement {
Brian Carlstromea46f952013-07-30 01:26:50 -070066 mirror::ArtMethod* method;
Ian Rogers0399dde2012-06-06 17:09:28 -070067 uint32_t dex_pc;
Elliott Hughes545a0642011-11-08 19:10:03 -080068
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080069 AllocRecordStackTraceElement() : method(nullptr), dex_pc(0) {
70 }
71
Ian Rogersb726dcb2012-09-05 08:57:23 -070072 int32_t LineNumber() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070073 return method->GetLineNumFromDexPC(dex_pc);
Elliott Hughes545a0642011-11-08 19:10:03 -080074 }
75};
76
77struct AllocRecord {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080078 mirror::Class* type;
Elliott Hughes545a0642011-11-08 19:10:03 -080079 size_t byte_count;
80 uint16_t thin_lock_id;
Brian Carlstrom7934ac22013-07-26 10:54:15 -070081 AllocRecordStackTraceElement stack[kMaxAllocRecordStackDepth]; // Unused entries have NULL method.
Elliott Hughes545a0642011-11-08 19:10:03 -080082
83 size_t GetDepth() {
84 size_t depth = 0;
85 while (depth < kMaxAllocRecordStackDepth && stack[depth].method != NULL) {
86 ++depth;
87 }
88 return depth;
89 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080090
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080091 void UpdateObjectPointers(IsMarkedCallback* callback, void* arg)
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080092 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
93 if (type != nullptr) {
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080094 type = down_cast<mirror::Class*>(callback(type, arg));
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080095 }
96 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
97 mirror::ArtMethod*& m = stack[stack_frame].method;
98 if (m == nullptr) {
99 break;
100 }
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800101 m = down_cast<mirror::ArtMethod*>(callback(m, arg));
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800102 }
103 }
Elliott Hughes545a0642011-11-08 19:10:03 -0800104};
105
Elliott Hughes86964332012-02-15 19:37:42 -0800106struct Breakpoint {
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100107 // The location of this breakpoint.
Brian Carlstromea46f952013-07-30 01:26:50 -0700108 mirror::ArtMethod* method;
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800109 uint32_t dex_pc;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100110
111 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
112 bool need_full_deoptimization;
113
114 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc, bool need_full_deoptimization)
115 : method(method), dex_pc(dex_pc), need_full_deoptimization(need_full_deoptimization) {}
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700116
117 void VisitRoots(RootCallback* callback, void* arg) {
118 if (method != nullptr) {
119 callback(reinterpret_cast<mirror::Object**>(&method), arg, 0, kRootDebugger);
120 }
121 }
Elliott Hughes86964332012-02-15 19:37:42 -0800122};
123
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700124static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700125 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes229feb72012-02-23 13:33:29 -0800126 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.method).c_str(), rhs.dex_pc);
Elliott Hughes86964332012-02-15 19:37:42 -0800127 return os;
128}
129
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200130class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800131 public:
132 DebugInstrumentationListener() {}
133 virtual ~DebugInstrumentationListener() {}
134
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200135 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
136 uint32_t dex_pc)
137 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800138 if (method->IsNative()) {
139 // TODO: post location events is a suspension point and native method entry stubs aren't.
140 return;
141 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100142 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800143 }
144
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200145 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
146 uint32_t dex_pc, const JValue& return_value)
147 OVERRIDE 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 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100152 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800153 }
154
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200155 void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
156 uint32_t dex_pc)
157 OVERRIDE 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
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200163 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
164 uint32_t new_dex_pc)
165 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz8379b222014-02-24 17:38:15 +0100166 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800167 }
168
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200169 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
170 uint32_t dex_pc, mirror::ArtField* field)
171 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
172 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800173 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200174
175 void FieldWritten(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
176 uint32_t dex_pc, mirror::ArtField* field, const JValue& field_value)
177 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
178 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
179 }
180
181 void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
182 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
183 mirror::Throwable* exception_object)
184 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
185 Dbg::PostException(throw_location, catch_method, catch_dex_pc, exception_object);
186 }
187
188 private:
189 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800190} gDebugInstrumentationListener;
191
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700192// JDWP is allowed unless the Zygote forbids it.
193static bool gJdwpAllowed = true;
194
Elliott Hughesc0f09332012-03-26 13:27:06 -0700195// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700196static bool gJdwpConfigured = false;
197
Elliott Hughesc0f09332012-03-26 13:27:06 -0700198// Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.)
Elliott Hughes376a7a02011-10-24 18:35:55 -0700199static JDWP::JdwpOptions gJdwpOptions;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700200
201// Runtime JDWP state.
202static JDWP::JdwpState* gJdwpState = NULL;
203static bool gDebuggerConnected; // debugger or DDMS is connected.
204static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800205static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700206
Elliott Hughes47fce012011-10-25 18:37:19 -0700207static bool gDdmThreadNotification = false;
208
Elliott Hughes767a1472011-10-26 18:49:02 -0700209// DDMS GC-related settings.
210static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
211static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
212static Dbg::HpsgWhat gDdmHpsgWhat;
213static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
214static Dbg::HpsgWhat gDdmNhsgWhat;
215
Ian Rogers719d1a32014-03-06 12:13:39 -0800216static ObjectRegistry* gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700217
Elliott Hughes545a0642011-11-08 19:10:03 -0800218// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800219Mutex* Dbg::alloc_tracker_lock_ = nullptr;
220AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
221size_t Dbg::alloc_record_max_ = 0;
222size_t Dbg::alloc_record_head_ = 0;
223size_t Dbg::alloc_record_count_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -0800224
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100225// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100226Mutex* Dbg::deoptimization_lock_ = nullptr;
227std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
228size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100229size_t Dbg::delayed_full_undeoptimization_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100230
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200231// Instrumentation event reference counters.
232size_t Dbg::dex_pc_change_event_ref_count_ = 0;
233size_t Dbg::method_enter_event_ref_count_ = 0;
234size_t Dbg::method_exit_event_ref_count_ = 0;
235size_t Dbg::field_read_event_ref_count_ = 0;
236size_t Dbg::field_write_event_ref_count_ = 0;
237size_t Dbg::exception_catch_event_ref_count_ = 0;
238uint32_t Dbg::instrumentation_events_ = 0;
239
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100240// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800241static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800242
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700243void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
244 RootType root_type) {
245 if (receiver != nullptr) {
246 callback(&receiver, arg, tid, root_type);
247 }
248 if (thread != nullptr) {
249 callback(&thread, arg, tid, root_type);
250 }
251 if (klass != nullptr) {
252 callback(reinterpret_cast<mirror::Object**>(&klass), arg, tid, root_type);
253 }
254 if (method != nullptr) {
255 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
256 }
257}
258
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200259void DebugInvokeReq::Clear() {
260 invoke_needed = false;
261 receiver = nullptr;
262 thread = nullptr;
263 klass = nullptr;
264 method = nullptr;
265}
266
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700267void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
268 RootType root_type) {
269 if (method != nullptr) {
270 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
271 }
272}
273
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200274bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
275 return dex_pcs.find(dex_pc) == dex_pcs.end();
276}
277
278void SingleStepControl::Clear() {
279 is_active = false;
280 method = nullptr;
281 dex_pcs.clear();
282}
283
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100284void DeoptimizationRequest::VisitRoots(RootCallback* callback, void* arg) {
285 if (method != nullptr) {
286 callback(reinterpret_cast<mirror::Object**>(&method), arg, 0, kRootDebugger);
287 }
288}
289
Brian Carlstromea46f952013-07-30 01:26:50 -0700290static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800291 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700292 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao09bfc6a2012-12-11 18:11:43 -0800293 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100294 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800295 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == dex_pc) {
Elliott Hughes86964332012-02-15 19:37:42 -0800296 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
297 return true;
298 }
299 }
300 return false;
301}
302
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100303static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
304 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800305 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
306 // A thread may be suspended for GC; in this code, we really want to know whether
307 // there's a debugger suspension active.
308 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
309}
310
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800311static mirror::Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700312 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800313 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800314 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800315 status = JDWP::ERR_INVALID_OBJECT;
316 return NULL;
317 }
318 if (!o->IsArrayInstance()) {
319 status = JDWP::ERR_INVALID_ARRAY;
320 return NULL;
321 }
322 status = JDWP::ERR_NONE;
323 return o->AsArray();
324}
325
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800326static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700327 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800328 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800329 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800330 status = JDWP::ERR_INVALID_OBJECT;
331 return NULL;
332 }
333 if (!o->IsClass()) {
334 status = JDWP::ERR_INVALID_CLASS;
335 return NULL;
336 }
337 status = JDWP::ERR_NONE;
338 return o->AsClass();
339}
340
Elliott Hughes221229c2013-01-08 18:17:50 -0800341static JDWP::JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thread*& thread)
jeffhaoa77f0f62012-12-05 17:19:31 -0800342 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700343 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
344 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800345 mirror::Object* thread_peer = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800346 if (thread_peer == NULL || thread_peer == ObjectRegistry::kInvalidObject) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800347 // This isn't even an object.
348 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes436e3722012-02-17 20:01:47 -0800349 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800350
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800351 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800352 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
353 // This isn't a thread.
354 return JDWP::ERR_INVALID_THREAD;
355 }
356
357 thread = Thread::FromManagedThread(soa, thread_peer);
358 if (thread == NULL) {
359 // This is a java.lang.Thread without a Thread*. Must be a zombie.
360 return JDWP::ERR_THREAD_NOT_ALIVE;
361 }
362 return JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800363}
364
Elliott Hughes24437992011-11-30 14:49:33 -0800365static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
366 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
367 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
368 return static_cast<JDWP::JdwpTag>(descriptor[0]);
369}
370
Ian Rogers98379392014-02-24 16:53:16 -0800371static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700372 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes86b00102011-12-05 17:54:26 -0800373 CHECK(c != NULL);
Elliott Hughes24437992011-11-30 14:49:33 -0800374 if (c->IsArrayClass()) {
375 return JDWP::JT_ARRAY;
376 }
Elliott Hughes24437992011-11-30 14:49:33 -0800377 if (c->IsStringClass()) {
378 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800379 }
Ian Rogers98379392014-02-24 16:53:16 -0800380 if (c->IsClassClass()) {
381 return JDWP::JT_CLASS_OBJECT;
382 }
383 {
384 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
385 if (thread_class->IsAssignableFrom(c)) {
386 return JDWP::JT_THREAD;
387 }
388 }
389 {
390 mirror::Class* thread_group_class =
391 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
392 if (thread_group_class->IsAssignableFrom(c)) {
393 return JDWP::JT_THREAD_GROUP;
394 }
395 }
396 {
397 mirror::Class* class_loader_class =
398 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
399 if (class_loader_class->IsAssignableFrom(c)) {
400 return JDWP::JT_CLASS_LOADER;
401 }
402 }
403 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800404}
405
406/*
407 * Objects declared to hold Object might actually hold a more specific
408 * type. The debugger may take a special interest in these (e.g. it
409 * wants to display the contents of Strings), so we want to return an
410 * appropriate tag.
411 *
412 * Null objects are tagged JT_OBJECT.
413 */
Ian Rogers98379392014-02-24 16:53:16 -0800414static JDWP::JdwpTag TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700415 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers98379392014-02-24 16:53:16 -0800416 return (o == NULL) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800417}
418
419static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
420 switch (tag) {
421 case JDWP::JT_BOOLEAN:
422 case JDWP::JT_BYTE:
423 case JDWP::JT_CHAR:
424 case JDWP::JT_FLOAT:
425 case JDWP::JT_DOUBLE:
426 case JDWP::JT_INT:
427 case JDWP::JT_LONG:
428 case JDWP::JT_SHORT:
429 case JDWP::JT_VOID:
430 return true;
431 default:
432 return false;
433 }
434}
435
Elliott Hughes3bb81562011-10-21 18:52:59 -0700436/*
437 * Handle one of the JDWP name/value pairs.
438 *
439 * JDWP options are:
440 * help: if specified, show help message and bail
441 * transport: may be dt_socket or dt_shmem
442 * address: for dt_socket, "host:port", or just "port" when listening
443 * server: if "y", wait for debugger to attach; if "n", attach to debugger
444 * timeout: how long to wait for debugger to connect / listen
445 *
446 * Useful with server=n (these aren't supported yet):
447 * onthrow=<exception-name>: connect to debugger when exception thrown
448 * onuncaught=y|n: connect to debugger when uncaught exception thrown
449 * launch=<command-line>: launch the debugger itself
450 *
451 * The "transport" option is required, as is "address" if server=n.
452 */
453static bool ParseJdwpOption(const std::string& name, const std::string& value) {
454 if (name == "transport") {
455 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700456 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700457 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700458 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700459 } else {
460 LOG(ERROR) << "JDWP transport not supported: " << value;
461 return false;
462 }
463 } else if (name == "server") {
464 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700465 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700466 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700467 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700468 } else {
469 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
470 return false;
471 }
472 } else if (name == "suspend") {
473 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700474 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700475 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700476 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700477 } else {
478 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
479 return false;
480 }
481 } else if (name == "address") {
482 /* this is either <port> or <host>:<port> */
483 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700484 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700485 std::string::size_type colon = value.find(':');
486 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700487 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700488 port_string = value.substr(colon + 1);
489 } else {
490 port_string = value;
491 }
492 if (port_string.empty()) {
493 LOG(ERROR) << "JDWP address missing port: " << value;
494 return false;
495 }
496 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800497 uint64_t port = strtoul(port_string.c_str(), &end, 10);
498 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700499 LOG(ERROR) << "JDWP address has junk in port field: " << value;
500 return false;
501 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700502 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700503 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
504 /* valid but unsupported */
505 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
506 } else {
507 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
508 }
509
510 return true;
511}
512
513/*
514 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
515 * "transport=dt_socket,address=8000,server=y,suspend=n"
516 */
517bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800518 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700519
Elliott Hughes3bb81562011-10-21 18:52:59 -0700520 std::vector<std::string> pairs;
521 Split(options, ',', pairs);
522
523 for (size_t i = 0; i < pairs.size(); ++i) {
524 std::string::size_type equals = pairs[i].find('=');
525 if (equals == std::string::npos) {
526 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
527 return false;
528 }
529 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
530 }
531
Elliott Hughes376a7a02011-10-24 18:35:55 -0700532 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700533 LOG(ERROR) << "Must specify JDWP transport: " << options;
534 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700535 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700536 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
537 return false;
538 }
539
540 gJdwpConfigured = true;
541 return true;
542}
543
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700544void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700545 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700546 // No JDWP for you!
547 return;
548 }
549
Ian Rogers719d1a32014-03-06 12:13:39 -0800550 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700551 gRegistry = new ObjectRegistry;
552
Ian Rogers719d1a32014-03-06 12:13:39 -0800553 alloc_tracker_lock_ = new Mutex("AllocTracker lock");
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100554 deoptimization_lock_ = new Mutex("deoptimization lock", kDeoptimizationLock);
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700555 // Init JDWP if the debugger is enabled. This may connect out to a
556 // debugger, passively listen for a debugger, or block waiting for a
557 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700558 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
559 if (gJdwpState == NULL) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800560 // We probably failed because some other process has the port already, which means that
561 // if we don't abort the user is likely to think they're talking to us when they're actually
562 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800563 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700564 }
565
566 // If a debugger has already attached, send the "welcome" message.
567 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700568 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700569 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes376a7a02011-10-24 18:35:55 -0700570 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800571 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700572 }
573 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700574}
575
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700576void Dbg::VisitRoots(RootCallback* callback, void* arg) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100577 {
578 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
579 for (Breakpoint& bp : gBreakpoints) {
580 bp.VisitRoots(callback, arg);
581 }
582 }
583 if (deoptimization_lock_ != nullptr) { // only true if the debugger is started.
584 MutexLock mu(Thread::Current(), *deoptimization_lock_);
585 for (DeoptimizationRequest& req : deoptimization_requests_) {
586 req.VisitRoots(callback, arg);
587 }
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700588 }
589}
590
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700591void Dbg::StopJdwp() {
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100592 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
593 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700594 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800595 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700596 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800597 gRegistry = nullptr;
598 delete alloc_tracker_lock_;
599 alloc_tracker_lock_ = nullptr;
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100600 delete deoptimization_lock_;
601 deoptimization_lock_ = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700602}
603
Elliott Hughes767a1472011-10-26 18:49:02 -0700604void Dbg::GcDidFinish() {
605 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700606 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700607 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700608 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700609 }
610 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700611 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700612 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700613 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700614 }
615 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700616 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700617 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700618 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700619 }
620}
621
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700622void Dbg::SetJdwpAllowed(bool allowed) {
623 gJdwpAllowed = allowed;
624}
625
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700626DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700627 return Thread::Current()->GetInvokeReq();
628}
629
630Thread* Dbg::GetDebugThread() {
631 return (gJdwpState != NULL) ? gJdwpState->GetDebugThread() : NULL;
632}
633
634void Dbg::ClearWaitForEventThread() {
635 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700636}
637
638void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700639 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800640 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700641 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800642 gDisposed = false;
643}
644
645void Dbg::Disposed() {
646 gDisposed = true;
647}
648
649bool Dbg::IsDisposed() {
650 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700651}
652
Elliott Hughesa2155262011-11-16 16:26:58 -0800653void Dbg::GoActive() {
654 // Enable all debugging features, including scans for breakpoints.
655 // This is a no-op if we're already active.
656 // Only called from the JDWP handler thread.
657 if (gDebuggerActive) {
658 return;
659 }
660
Elliott Hughesc0f09332012-03-26 13:27:06 -0700661 {
662 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
jeffhao09bfc6a2012-12-11 18:11:43 -0800663 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700664 CHECK_EQ(gBreakpoints.size(), 0U);
665 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800666
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100667 {
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100668 MutexLock mu(Thread::Current(), *deoptimization_lock_);
669 CHECK_EQ(deoptimization_requests_.size(), 0U);
670 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100671 CHECK_EQ(delayed_full_undeoptimization_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200672 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
673 CHECK_EQ(method_enter_event_ref_count_, 0U);
674 CHECK_EQ(method_exit_event_ref_count_, 0U);
675 CHECK_EQ(field_read_event_ref_count_, 0U);
676 CHECK_EQ(field_write_event_ref_count_, 0U);
677 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100678 }
679
Ian Rogers62d6c772013-02-27 08:32:07 -0800680 Runtime* runtime = Runtime::Current();
681 runtime->GetThreadList()->SuspendAll();
682 Thread* self = Thread::Current();
683 ThreadState old_state = self->SetStateUnsafe(kRunnable);
684 CHECK_NE(old_state, kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100685 runtime->GetInstrumentation()->EnableDeoptimization();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200686 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800687 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800688 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
689 runtime->GetThreadList()->ResumeAll();
690
691 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700692}
693
694void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700695 CHECK(gDebuggerConnected);
696
Elliott Hughesc0f09332012-03-26 13:27:06 -0700697 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700698
Ian Rogers62d6c772013-02-27 08:32:07 -0800699 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
700 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
701 // and clear the object registry.
702 Runtime* runtime = Runtime::Current();
703 runtime->GetThreadList()->SuspendAll();
704 Thread* self = Thread::Current();
705 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100706
707 // Debugger may not be active at this point.
708 if (gDebuggerActive) {
709 {
710 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
711 // This prevents us from having any pending deoptimization request when the debugger attaches
712 // to us again while no event has been requested yet.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100713 MutexLock mu(Thread::Current(), *deoptimization_lock_);
714 deoptimization_requests_.clear();
715 full_deoptimization_event_count_ = 0U;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100716 delayed_full_undeoptimization_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100717 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200718 if (instrumentation_events_ != 0) {
719 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
720 instrumentation_events_);
721 instrumentation_events_ = 0;
722 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100723 runtime->GetInstrumentation()->DisableDeoptimization();
724 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100725 }
Elliott Hughes234ab152011-10-26 14:02:26 -0700726 gRegistry->Clear();
727 gDebuggerConnected = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800728 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
729 runtime->GetThreadList()->ResumeAll();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700730}
731
Elliott Hughesc0f09332012-03-26 13:27:06 -0700732bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700733 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700734}
735
Elliott Hughesc0f09332012-03-26 13:27:06 -0700736bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700737 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700738}
739
740int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800741 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700742}
743
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700744void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700745 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700746}
747
Elliott Hughes88d63092013-01-09 09:55:54 -0800748std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800749 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800750 if (o == NULL) {
751 return "NULL";
752 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800753 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes88d63092013-01-09 09:55:54 -0800754 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
Elliott Hughes436e3722012-02-17 20:01:47 -0800755 }
756 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700757 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800758 }
Mathieu Chartierf8322842014-05-16 10:59:25 -0700759 return DescriptorToName(o->AsClass()->GetDescriptor().c_str());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700760}
761
Elliott Hughes88d63092013-01-09 09:55:54 -0800762JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800763 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800764 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800765 if (c == NULL) {
766 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800767 }
Elliott Hughes88d63092013-01-09 09:55:54 -0800768 class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800769 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800770}
771
Elliott Hughes88d63092013-01-09 09:55:54 -0800772JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800773 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800774 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800775 if (c == NULL) {
776 return status;
777 }
778 if (c->IsInterface()) {
779 // http://code.google.com/p/android/issues/detail?id=20856
Elliott Hughes88d63092013-01-09 09:55:54 -0800780 superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800781 } else {
Elliott Hughes88d63092013-01-09 09:55:54 -0800782 superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800783 }
784 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700785}
786
Elliott Hughes436e3722012-02-17 20:01:47 -0800787JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800788 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800789 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800790 return JDWP::ERR_INVALID_OBJECT;
791 }
792 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
793 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700794}
795
Elliott Hughes436e3722012-02-17 20:01:47 -0800796JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
797 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800798 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800799 if (c == NULL) {
800 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800801 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800802
803 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
804
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700805 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
806 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800807 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700808 if ((access_flags & kAccInterface) == 0) {
809 access_flags |= kAccSuper;
810 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800811
812 expandBufAdd4BE(pReply, access_flags);
813
814 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700815}
816
Elliott Hughesf327e072013-01-09 16:01:26 -0800817JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
818 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800819 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800820 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800821 return JDWP::ERR_INVALID_OBJECT;
822 }
823
824 // Ensure all threads are suspended while we read objects' lock words.
825 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100826 CHECK_EQ(self->GetState(), kRunnable);
827 self->TransitionFromRunnableToSuspended(kSuspended);
828 Runtime::Current()->GetThreadList()->SuspendAll();
Elliott Hughesf327e072013-01-09 16:01:26 -0800829
830 MonitorInfo monitor_info(o);
831
Sebastien Hertz54263242014-03-19 18:16:50 +0100832 Runtime::Current()->GetThreadList()->ResumeAll();
833 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800834
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700835 if (monitor_info.owner_ != NULL) {
836 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800837 } else {
838 expandBufAddObjectId(reply, gRegistry->Add(NULL));
839 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700840 expandBufAdd4BE(reply, monitor_info.entry_count_);
841 expandBufAdd4BE(reply, monitor_info.waiters_.size());
842 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
843 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800844 }
845 return JDWP::ERR_NONE;
846}
847
Elliott Hughes734b8c62013-01-11 15:32:45 -0800848JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
849 std::vector<JDWP::ObjectId>& monitors,
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100850 std::vector<uint32_t>& stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800851 ScopedObjectAccessUnchecked soa(Thread::Current());
852 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
853 Thread* thread;
854 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
855 if (error != JDWP::ERR_NONE) {
856 return error;
857 }
858 if (!IsSuspendedForDebugger(soa, thread)) {
859 return JDWP::ERR_THREAD_NOT_SUSPENDED;
860 }
861
862 struct OwnedMonitorVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800863 OwnedMonitorVisitor(Thread* thread, Context* context)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800864 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -0800865 : StackVisitor(thread, context), current_stack_depth(0) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800866
867 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
868 // annotalysis.
869 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
870 if (!GetMethod()->IsRuntimeMethod()) {
871 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800872 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800873 }
874 return true;
875 }
876
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800877 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800878 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800879 visitor->monitors.push_back(owned_monitor);
880 visitor->stack_depths.push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800881 }
882
Elliott Hughes734b8c62013-01-11 15:32:45 -0800883 size_t current_stack_depth;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800884 std::vector<mirror::Object*> monitors;
Elliott Hughes734b8c62013-01-11 15:32:45 -0800885 std::vector<uint32_t> stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800886 };
Ian Rogers700a4022014-05-19 16:49:03 -0700887 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -0800888 OwnedMonitorVisitor visitor(thread, context.get());
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800889 visitor.WalkStack();
890
891 for (size_t i = 0; i < visitor.monitors.size(); ++i) {
892 monitors.push_back(gRegistry->Add(visitor.monitors[i]));
Elliott Hughes734b8c62013-01-11 15:32:45 -0800893 stack_depths.push_back(visitor.stack_depths[i]);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800894 }
895
896 return JDWP::ERR_NONE;
897}
898
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100899JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
900 JDWP::ObjectId& contended_monitor) {
Elliott Hughesf9501702013-01-11 11:22:27 -0800901 ScopedObjectAccessUnchecked soa(Thread::Current());
902 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
903 Thread* thread;
904 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
905 if (error != JDWP::ERR_NONE) {
906 return error;
907 }
908 if (!IsSuspendedForDebugger(soa, thread)) {
909 return JDWP::ERR_THREAD_NOT_SUSPENDED;
910 }
911
912 contended_monitor = gRegistry->Add(Monitor::GetContendedMonitor(thread));
913
914 return JDWP::ERR_NONE;
915}
916
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800917JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
918 std::vector<uint64_t>& counts)
919 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800920 gc::Heap* heap = Runtime::Current()->GetHeap();
921 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800922 std::vector<mirror::Class*> classes;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800923 counts.clear();
924 for (size_t i = 0; i < class_ids.size(); ++i) {
925 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800926 mirror::Class* c = DecodeClass(class_ids[i], status);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800927 if (c == NULL) {
928 return status;
929 }
930 classes.push_back(c);
931 counts.push_back(0);
932 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800933 heap->CountInstances(classes, false, &counts[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800934 return JDWP::ERR_NONE;
935}
936
Elliott Hughes3b78c942013-01-15 17:35:41 -0800937JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::ObjectId>& instances)
938 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800939 gc::Heap* heap = Runtime::Current()->GetHeap();
940 // We only want reachable instances, so do a GC.
941 heap->CollectGarbage(false);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800942 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800943 mirror::Class* c = DecodeClass(class_id, status);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800944 if (c == nullptr) {
Elliott Hughes3b78c942013-01-15 17:35:41 -0800945 return status;
946 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800947 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800948 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
949 for (size_t i = 0; i < raw_instances.size(); ++i) {
950 instances.push_back(gRegistry->Add(raw_instances[i]));
951 }
952 return JDWP::ERR_NONE;
953}
954
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800955JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
956 std::vector<JDWP::ObjectId>& referring_objects)
957 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800958 gc::Heap* heap = Runtime::Current()->GetHeap();
959 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800960 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800961 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800962 return JDWP::ERR_INVALID_OBJECT;
963 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800964 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800965 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800966 for (size_t i = 0; i < raw_instances.size(); ++i) {
967 referring_objects.push_back(gRegistry->Add(raw_instances[i]));
968 }
969 return JDWP::ERR_NONE;
970}
971
Elliott Hughes64f574f2013-02-20 14:57:12 -0800972JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id)
973 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100974 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
975 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
976 return JDWP::ERR_INVALID_OBJECT;
977 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800978 gRegistry->DisableCollection(object_id);
979 return JDWP::ERR_NONE;
980}
981
982JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id)
983 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100984 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
985 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
986 // also ignores these cases and never return an error. However it's not obvious why this command
987 // should behave differently from DisableCollection and IsCollected commands. So let's be more
988 // strict and return an error if this happens.
989 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
990 return JDWP::ERR_INVALID_OBJECT;
991 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800992 gRegistry->EnableCollection(object_id);
993 return JDWP::ERR_NONE;
994}
995
996JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool& is_collected)
997 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100998 if (object_id == 0) {
999 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +01001000 return JDWP::ERR_INVALID_OBJECT;
1001 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001002 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1003 // the RI seems to ignore this and assume object has been collected.
1004 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
1005 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
1006 is_collected = true;
1007 } else {
1008 is_collected = gRegistry->IsCollected(object_id);
1009 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001010 return JDWP::ERR_NONE;
1011}
1012
1013void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
1014 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1015 gRegistry->DisposeObject(object_id, reference_count);
1016}
1017
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001018static JDWP::JdwpTypeTag GetTypeTag(mirror::Class* klass)
1019 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1020 DCHECK(klass != nullptr);
1021 if (klass->IsArrayClass()) {
1022 return JDWP::TT_ARRAY;
1023 } else if (klass->IsInterface()) {
1024 return JDWP::TT_INTERFACE;
1025 } else {
1026 return JDWP::TT_CLASS;
1027 }
1028}
1029
Elliott Hughes88d63092013-01-09 09:55:54 -08001030JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001031 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001032 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001033 if (c == NULL) {
1034 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001035 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001036
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001037 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1038 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001039 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001040 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001041}
1042
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001043void Dbg::GetClassList(std::vector<JDWP::RefTypeId>& classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001044 // Get the complete list of reference classes (i.e. all classes except
1045 // the primitive types).
1046 // Returns a newly-allocated buffer full of RefTypeId values.
1047 struct ClassListCreator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001048 explicit ClassListCreator(std::vector<JDWP::RefTypeId>& classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001049 }
1050
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001051 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001052 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1053 }
1054
Elliott Hughes64f574f2013-02-20 14:57:12 -08001055 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1056 // annotalysis.
1057 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001058 if (!c->IsPrimitive()) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001059 classes.push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001060 }
1061 return true;
1062 }
1063
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001064 std::vector<JDWP::RefTypeId>& classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001065 };
1066
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001067 ClassListCreator clc(classes);
Elliott Hughesa2155262011-11-16 16:26:58 -08001068 Runtime::Current()->GetClassLinker()->VisitClasses(ClassListCreator::Visit, &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001069}
1070
Elliott Hughes88d63092013-01-09 09:55:54 -08001071JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, uint32_t* pStatus, std::string* pDescriptor) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001072 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001073 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001074 if (c == NULL) {
1075 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001076 }
1077
Elliott Hughesa2155262011-11-16 16:26:58 -08001078 if (c->IsArrayClass()) {
1079 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1080 *pTypeTag = JDWP::TT_ARRAY;
1081 } else {
1082 if (c->IsErroneous()) {
1083 *pStatus = JDWP::CS_ERROR;
1084 } else {
1085 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1086 }
1087 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1088 }
1089
1090 if (pDescriptor != NULL) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001091 *pDescriptor = c->GetDescriptor();
Elliott Hughesa2155262011-11-16 16:26:58 -08001092 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001093 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001094}
1095
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001096void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001097 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001098 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
1099 ids.clear();
1100 for (size_t i = 0; i < classes.size(); ++i) {
1101 ids.push_back(gRegistry->Add(classes[i]));
1102 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001103}
1104
Elliott Hughes64f574f2013-02-20 14:57:12 -08001105JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
1106 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001107 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001108 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001109 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001110 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001111
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001112 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001113 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001114
1115 expandBufAdd1(pReply, type_tag);
1116 expandBufAddRefTypeId(pReply, type_id);
1117
1118 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001119}
1120
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001121JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001122 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001123 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001124 if (c == NULL) {
1125 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001126 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001127 *signature = c->GetDescriptor();
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001128 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001129}
1130
Elliott Hughes88d63092013-01-09 09:55:54 -08001131JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string& result) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001132 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001133 mirror::Class* c = DecodeClass(class_id, status);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001134 if (c == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001135 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001136 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001137 const char* source_file = c->GetSourceFile();
1138 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001139 return JDWP::ERR_ABSENT_INFORMATION;
1140 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001141 result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001142 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001143}
1144
Elliott Hughes88d63092013-01-09 09:55:54 -08001145JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t& tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001146 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001147 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001148 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes546b9862012-06-20 16:06:13 -07001149 return JDWP::ERR_INVALID_OBJECT;
1150 }
Ian Rogers98379392014-02-24 16:53:16 -08001151 tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001152 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001153}
1154
Elliott Hughesaed4be92011-12-02 16:16:23 -08001155size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001156 switch (tag) {
1157 case JDWP::JT_VOID:
1158 return 0;
1159 case JDWP::JT_BYTE:
1160 case JDWP::JT_BOOLEAN:
1161 return 1;
1162 case JDWP::JT_CHAR:
1163 case JDWP::JT_SHORT:
1164 return 2;
1165 case JDWP::JT_FLOAT:
1166 case JDWP::JT_INT:
1167 return 4;
1168 case JDWP::JT_ARRAY:
1169 case JDWP::JT_OBJECT:
1170 case JDWP::JT_STRING:
1171 case JDWP::JT_THREAD:
1172 case JDWP::JT_THREAD_GROUP:
1173 case JDWP::JT_CLASS_LOADER:
1174 case JDWP::JT_CLASS_OBJECT:
1175 return sizeof(JDWP::ObjectId);
1176 case JDWP::JT_DOUBLE:
1177 case JDWP::JT_LONG:
1178 return 8;
1179 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001180 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001181 return -1;
1182 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001183}
1184
Elliott Hughes88d63092013-01-09 09:55:54 -08001185JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int& length) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001186 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001187 mirror::Array* a = DecodeArray(array_id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001188 if (a == NULL) {
1189 return status;
Elliott Hughes24437992011-11-30 14:49:33 -08001190 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001191 length = a->GetLength();
1192 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001193}
1194
Elliott Hughes88d63092013-01-09 09:55:54 -08001195JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001196 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001197 mirror::Array* a = DecodeArray(array_id, status);
Ian Rogers98379392014-02-24 16:53:16 -08001198 if (a == nullptr) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001199 return status;
1200 }
Elliott Hughes24437992011-11-30 14:49:33 -08001201
1202 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1203 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001204 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001205 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001206 std::string descriptor(a->GetClass()->GetDescriptor());
Elliott Hughes24437992011-11-30 14:49:33 -08001207 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
1208
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001209 expandBufAdd1(pReply, tag);
1210 expandBufAdd4BE(pReply, count);
1211
Elliott Hughes24437992011-11-30 14:49:33 -08001212 if (IsPrimitiveTag(tag)) {
1213 size_t width = GetTagWidth(tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001214 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1215 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001216 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001217 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1218 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001219 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001220 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1221 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001222 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001223 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1224 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001225 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001226 memcpy(dst, &src[offset * width], count * width);
1227 }
1228 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001229 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001230 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001231 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001232 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001233 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
1234 : tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001235 expandBufAdd1(pReply, specific_tag);
1236 expandBufAddObjectId(pReply, gRegistry->Add(element));
1237 }
1238 }
1239
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001240 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001241}
1242
Ian Rogersef7d42f2014-01-06 12:55:46 -08001243template <typename T>
1244static void CopyArrayData(mirror::Array* a, JDWP::Request& src, int offset, int count)
1245 NO_THREAD_SAFETY_ANALYSIS {
1246 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001247 DCHECK(a->GetClass()->IsPrimitiveArray());
1248
Ian Rogersef7d42f2014-01-06 12:55:46 -08001249 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001250 for (int i = 0; i < count; ++i) {
1251 *dst++ = src.ReadValue(sizeof(T));
1252 }
1253}
1254
Elliott Hughes88d63092013-01-09 09:55:54 -08001255JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001256 JDWP::Request& request)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001257 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001258 JDWP::JdwpError status;
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001259 mirror::Array* dst = DecodeArray(array_id, status);
1260 if (dst == NULL) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001261 return status;
1262 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001263
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001264 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001265 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001266 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001267 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001268 std::string descriptor = dst->GetClass()->GetDescriptor();
1269 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001270
1271 if (IsPrimitiveTag(tag)) {
1272 size_t width = GetTagWidth(tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001273 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001274 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001275 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001276 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001277 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001278 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001279 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001280 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001281 }
1282 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001283 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001284 for (int i = 0; i < count; ++i) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001285 JDWP::ObjectId id = request.ReadObjectId();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001286 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001287 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001288 return JDWP::ERR_INVALID_OBJECT;
1289 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001290 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001291 }
1292 }
1293
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001294 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001295}
1296
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001297JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001298 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001299}
1300
Elliott Hughes88d63092013-01-09 09:55:54 -08001301JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001302 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001303 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001304 if (c == NULL) {
1305 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001306 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001307 new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001308 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001309}
1310
Elliott Hughesbf13d362011-12-08 15:51:37 -08001311/*
1312 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1313 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001314JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001315 JDWP::ObjectId& new_array) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001316 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001317 mirror::Class* c = DecodeClass(array_class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001318 if (c == NULL) {
1319 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001320 }
Ian Rogers6fac4472014-02-25 17:01:10 -08001321 new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
1322 c->GetComponentSize(),
1323 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001324 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001325}
1326
Elliott Hughes88d63092013-01-09 09:55:54 -08001327bool Dbg::MatchType(JDWP::RefTypeId instance_class_id, JDWP::RefTypeId class_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001328 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001329 mirror::Class* c1 = DecodeClass(instance_class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001330 CHECK(c1 != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001331 mirror::Class* c2 = DecodeClass(class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001332 CHECK(c2 != NULL);
Sebastien Hertz123756a2013-11-27 15:49:42 +01001333 return c2->IsAssignableFrom(c1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001334}
1335
Brian Carlstromea46f952013-07-30 01:26:50 -07001336static JDWP::FieldId ToFieldId(const mirror::ArtField* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001337 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001338 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001339 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001340}
1341
Brian Carlstromea46f952013-07-30 01:26:50 -07001342static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001343 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001344 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001345 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001346}
1347
Brian Carlstromea46f952013-07-30 01:26:50 -07001348static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001349 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001350 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001351 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001352}
1353
Brian Carlstromea46f952013-07-30 01:26:50 -07001354static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001355 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001356 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001357 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001358}
1359
Brian Carlstromea46f952013-07-30 01:26:50 -07001360static void SetLocation(JDWP::JdwpLocation& location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001361 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001362 if (m == NULL) {
1363 memset(&location, 0, sizeof(location));
1364 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001365 mirror::Class* c = m->GetDeclaringClass();
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001366 location.type_tag = GetTypeTag(c);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001367 location.class_id = gRegistry->AddRefType(c);
Elliott Hughes74847412012-06-20 18:10:21 -07001368 location.method_id = ToMethodId(m);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001369 location.dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001370 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001371}
1372
Elliott Hughesa96836a2013-01-17 12:27:49 -08001373std::string Dbg::GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001374 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001375 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001376 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001377}
1378
Elliott Hughesa96836a2013-01-17 12:27:49 -08001379std::string Dbg::GetFieldName(JDWP::FieldId field_id)
1380 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001381 return FromFieldId(field_id)->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001382}
1383
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001384/*
1385 * Augment the access flags for synthetic methods and fields by setting
1386 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1387 * flags not specified by the Java programming language.
1388 */
1389static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1390 accessFlags &= kAccJavaFlagsMask;
1391 if ((accessFlags & kAccSynthetic) != 0) {
1392 accessFlags |= 0xf0000000;
1393 }
1394 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001395}
1396
Elliott Hughesdbb40792011-11-18 17:05:22 -08001397/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001398 * Circularly shifts registers so that arguments come first. Debuggers
1399 * expect slots to begin with arguments, but dex code places them at
1400 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001401 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001402static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1403 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001404 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001405 if (code_item == nullptr) {
1406 // We should not get here for a method without code (native, proxy or abstract). Log it and
1407 // return the slot as is since all registers are arguments.
1408 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1409 return slot;
1410 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001411 uint16_t ins_size = code_item->ins_size_;
1412 uint16_t locals_size = code_item->registers_size_ - ins_size;
1413 if (slot >= locals_size) {
1414 return slot - locals_size;
1415 } else {
1416 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001417 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001418}
1419
Jeff Haob7cefc72013-11-14 14:51:09 -08001420/*
1421 * Circularly shifts registers so that arguments come last. Reverts
1422 * slots to dex style argument placement.
1423 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001424static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001425 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001426 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001427 if (code_item == nullptr) {
1428 // We should not get here for a method without code (native, proxy or abstract). Log it and
1429 // return the slot as is since all registers are arguments.
1430 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1431 return slot;
1432 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001433 uint16_t ins_size = code_item->ins_size_;
1434 uint16_t locals_size = code_item->registers_size_ - ins_size;
1435 if (slot < ins_size) {
1436 return slot + locals_size;
1437 } else {
1438 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001439 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001440}
1441
Elliott Hughes88d63092013-01-09 09:55:54 -08001442JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001443 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001444 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001445 if (c == NULL) {
1446 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001447 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001448
1449 size_t instance_field_count = c->NumInstanceFields();
1450 size_t static_field_count = c->NumStaticFields();
1451
1452 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1453
1454 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001455 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001456 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001457 expandBufAddUtf8String(pReply, f->GetName());
1458 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001459 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001460 static const char genericSignature[1] = "";
1461 expandBufAddUtf8String(pReply, genericSignature);
1462 }
1463 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1464 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001465 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001466}
1467
Elliott Hughes88d63092013-01-09 09:55:54 -08001468JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001469 JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001470 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001471 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001472 if (c == NULL) {
1473 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001474 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001475
1476 size_t direct_method_count = c->NumDirectMethods();
1477 size_t virtual_method_count = c->NumVirtualMethods();
1478
1479 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1480
1481 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001482 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001483 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001484 expandBufAddUtf8String(pReply, m->GetName());
1485 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001486 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001487 static const char genericSignature[1] = "";
1488 expandBufAddUtf8String(pReply, genericSignature);
1489 }
1490 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1491 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001492 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001493}
1494
Elliott Hughes88d63092013-01-09 09:55:54 -08001495JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001496 JDWP::JdwpError status;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001497 Thread* self = Thread::Current();
1498 StackHandleScope<1> hs(self);
1499 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, status)));
1500 if (c.Get() == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001501 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001502 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001503 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001504 expandBufAdd4BE(pReply, interface_count);
1505 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001506 expandBufAddRefTypeId(pReply,
1507 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001508 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001509 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001510}
1511
Elliott Hughes88d63092013-01-09 09:55:54 -08001512void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001513 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001514 struct DebugCallbackContext {
1515 int numItems;
1516 JDWP::ExpandBuf* pReply;
1517
Elliott Hughes2435a572012-02-17 16:07:41 -08001518 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001519 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1520 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001521 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001522 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001523 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001524 }
1525 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001526 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001527 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001528 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001529 if (code_item == nullptr) {
1530 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001531 start = -1;
1532 end = -1;
1533 } else {
1534 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001535 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001536 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001537 }
1538
1539 expandBufAdd8BE(pReply, start);
1540 expandBufAdd8BE(pReply, end);
1541
1542 // Add numLines later
1543 size_t numLinesOffset = expandBufGetLength(pReply);
1544 expandBufAdd4BE(pReply, 0);
1545
1546 DebugCallbackContext context;
1547 context.numItems = 0;
1548 context.pReply = pReply;
1549
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001550 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001551 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
1552 DebugCallbackContext::Callback, NULL, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001553 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001554
1555 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001556}
1557
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001558void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1559 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001560 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001561 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001562 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001563 size_t variable_count;
1564 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001565
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001566 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1567 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001568 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001569 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1570
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001571 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1572 pContext->variable_count, startAddress, endAddress - startAddress,
1573 name, descriptor, signature, slot,
1574 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001575
Jeff Haob7cefc72013-11-14 14:51:09 -08001576 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001577
Elliott Hughesdbb40792011-11-18 17:05:22 -08001578 expandBufAdd8BE(pContext->pReply, startAddress);
1579 expandBufAddUtf8String(pContext->pReply, name);
1580 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001581 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001582 expandBufAddUtf8String(pContext->pReply, signature);
1583 }
1584 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1585 expandBufAdd4BE(pContext->pReply, slot);
1586
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001587 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001588 }
1589 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001590 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001591
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001592 // arg_count considers doubles and longs to take 2 units.
1593 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001594 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001595 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001596
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001597 // We don't know the total number of variables yet, so leave a blank and update it later.
1598 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001599 expandBufAdd4BE(pReply, 0);
1600
1601 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001602 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001603 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001604 context.variable_count = 0;
1605 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001606
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001607 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001608 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001609 m->GetDexFile()->DecodeDebugInfo(
1610 code_item, m->IsStatic(), m->GetDexMethodIndex(), NULL, DebugCallbackContext::Callback,
1611 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001612 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001613
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001614 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001615}
1616
Jeff Hao579b0242013-11-18 13:16:49 -08001617void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1618 JDWP::ExpandBuf* pReply) {
1619 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001620 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001621 OutputJValue(tag, return_value, pReply);
1622}
1623
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001624void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1625 JDWP::ExpandBuf* pReply) {
1626 mirror::ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001627 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001628 OutputJValue(tag, field_value, pReply);
1629}
1630
Elliott Hughes9777ba22013-01-17 09:04:19 -08001631JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
1632 std::vector<uint8_t>& bytecodes)
1633 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001634 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001635 if (m == NULL) {
1636 return JDWP::ERR_INVALID_METHODID;
1637 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001638 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001639 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1640 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1641 const uint8_t* end = begin + byte_count;
1642 for (const uint8_t* p = begin; p != end; ++p) {
1643 bytecodes.push_back(*p);
1644 }
1645 return JDWP::ERR_NONE;
1646}
1647
Elliott Hughes88d63092013-01-09 09:55:54 -08001648JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001649 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001650}
1651
Elliott Hughes88d63092013-01-09 09:55:54 -08001652JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001653 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001654}
1655
Elliott Hughes88d63092013-01-09 09:55:54 -08001656static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1657 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001658 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001659 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001660 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001661 mirror::Class* c = DecodeClass(ref_type_id, status);
Elliott Hughes88d63092013-01-09 09:55:54 -08001662 if (ref_type_id != 0 && c == NULL) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001663 return status;
1664 }
1665
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001666 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001667 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001668 return JDWP::ERR_INVALID_OBJECT;
1669 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001670 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001671
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001672 mirror::Class* receiver_class = c;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001673 if (receiver_class == NULL && o != NULL) {
1674 receiver_class = o->GetClass();
1675 }
1676 // TODO: should we give up now if receiver_class is NULL?
1677 if (receiver_class != NULL && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
1678 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001679 return JDWP::ERR_INVALID_FIELDID;
1680 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001681
Elliott Hughes0cf74332012-02-23 23:14:00 -08001682 // The RI only enforces the static/non-static mismatch in one direction.
1683 // TODO: should we change the tests and check both?
1684 if (is_static) {
1685 if (!f->IsStatic()) {
1686 return JDWP::ERR_INVALID_FIELDID;
1687 }
1688 } else {
1689 if (f->IsStatic()) {
1690 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001691 }
1692 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001693 if (f->IsStatic()) {
1694 o = f->GetDeclaringClass();
1695 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001696
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001697 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001698 JValue field_value;
1699 if (tag == JDWP::JT_VOID) {
1700 LOG(FATAL) << "Unknown tag: " << tag;
1701 } else if (!IsPrimitiveTag(tag)) {
1702 field_value.SetL(f->GetObject(o));
1703 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1704 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001705 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001706 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001707 }
Jeff Hao579b0242013-11-18 13:16:49 -08001708 Dbg::OutputJValue(tag, &field_value, pReply);
1709
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001710 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001711}
1712
Elliott Hughes88d63092013-01-09 09:55:54 -08001713JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001714 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001715 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001716}
1717
Elliott Hughes88d63092013-01-09 09:55:54 -08001718JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) {
1719 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001720}
1721
Elliott Hughes88d63092013-01-09 09:55:54 -08001722static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001723 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001724 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001725 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001726 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001727 return JDWP::ERR_INVALID_OBJECT;
1728 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001729 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001730
1731 // The RI only enforces the static/non-static mismatch in one direction.
1732 // TODO: should we change the tests and check both?
1733 if (is_static) {
1734 if (!f->IsStatic()) {
1735 return JDWP::ERR_INVALID_FIELDID;
1736 }
1737 } else {
1738 if (f->IsStatic()) {
1739 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001740 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001741 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001742 if (f->IsStatic()) {
1743 o = f->GetDeclaringClass();
1744 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001745
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001746 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001747
1748 if (IsPrimitiveTag(tag)) {
1749 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001750 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001751 // Debugging can't use transactional mode (runtime only).
1752 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001753 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001754 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001755 // Debugging can't use transactional mode (runtime only).
1756 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001757 }
1758 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001759 mirror::Object* v = gRegistry->Get<mirror::Object*>(value);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001760 if (v == ObjectRegistry::kInvalidObject) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001761 return JDWP::ERR_INVALID_OBJECT;
1762 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001763 if (v != NULL) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001764 mirror::Class* field_type;
1765 {
1766 StackHandleScope<3> hs(Thread::Current());
1767 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1768 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
1769 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
1770 field_type = FieldHelper(h_f).GetType();
1771 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001772 if (!field_type->IsAssignableFrom(v->GetClass())) {
1773 return JDWP::ERR_INVALID_OBJECT;
1774 }
1775 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001776 // Debugging can't use transactional mode (runtime only).
1777 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001778 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001779
1780 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001781}
1782
Elliott Hughes88d63092013-01-09 09:55:54 -08001783JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001784 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001785 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001786}
1787
Elliott Hughes88d63092013-01-09 09:55:54 -08001788JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1789 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001790}
1791
Elliott Hughes88d63092013-01-09 09:55:54 -08001792std::string Dbg::StringToUtf8(JDWP::ObjectId string_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001793 mirror::String* s = gRegistry->Get<mirror::String*>(string_id);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001794 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001795}
1796
Jeff Hao579b0242013-11-18 13:16:49 -08001797void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1798 if (IsPrimitiveTag(tag)) {
1799 expandBufAdd1(pReply, tag);
1800 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1801 expandBufAdd1(pReply, return_value->GetI());
1802 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1803 expandBufAdd2BE(pReply, return_value->GetI());
1804 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1805 expandBufAdd4BE(pReply, return_value->GetI());
1806 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1807 expandBufAdd8BE(pReply, return_value->GetJ());
1808 } else {
1809 CHECK_EQ(tag, JDWP::JT_VOID);
1810 }
1811 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001812 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001813 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001814 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001815 expandBufAddObjectId(pReply, gRegistry->Add(value));
1816 }
1817}
1818
Elliott Hughes221229c2013-01-08 18:17:50 -08001819JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string& name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001820 ScopedObjectAccessUnchecked soa(Thread::Current());
1821 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001822 Thread* thread;
1823 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1824 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1825 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001826 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001827
1828 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001829 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Brian Carlstromea46f952013-07-30 01:26:50 -07001830 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001831 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1832 mirror::String* s =
1833 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Elliott Hughes221229c2013-01-08 18:17:50 -08001834 if (s != NULL) {
1835 name = s->ToModifiedUtf8();
1836 }
1837 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001838}
1839
Elliott Hughes221229c2013-01-08 18:17:50 -08001840JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001841 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001842 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001843 if (thread_object == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001844 return JDWP::ERR_INVALID_OBJECT;
1845 }
Ian Rogers98379392014-02-24 16:53:16 -08001846 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001847 // Okay, so it's an object, but is it actually a thread?
Ian Rogers50b35e22012-10-04 10:09:15 -07001848 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001849 Thread* thread;
1850 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1851 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1852 // Zombie threads are in the null group.
1853 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001854 error = JDWP::ERR_NONE;
1855 } else if (error == JDWP::ERR_NONE) {
1856 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1857 CHECK(c != nullptr);
1858 mirror::ArtField* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
1859 CHECK(f != NULL);
1860 mirror::Object* group = f->GetObject(thread_object);
1861 CHECK(group != NULL);
1862 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1863 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001864 }
Ian Rogers98379392014-02-24 16:53:16 -08001865 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001866 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001867}
1868
Elliott Hughes88d63092013-01-09 09:55:54 -08001869std::string Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001870 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001871 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001872 CHECK(thread_group != nullptr);
1873 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupName");
1874 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1875 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001876 mirror::ArtField* f = c->FindInstanceField("name", "Ljava/lang/String;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001877 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001878 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Ian Rogers98379392014-02-24 16:53:16 -08001879 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes499c5132011-11-17 14:55:11 -08001880 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001881}
1882
Elliott Hughes88d63092013-01-09 09:55:54 -08001883JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id) {
Ian Rogers98379392014-02-24 16:53:16 -08001884 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001885 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001886 CHECK(thread_group != nullptr);
1887 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupParent");
1888 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1889 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001890 mirror::ArtField* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
Elliott Hughes4e235312011-12-02 11:34:15 -08001891 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001892 mirror::Object* parent = f->GetObject(thread_group);
Ian Rogers98379392014-02-24 16:53:16 -08001893 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes4e235312011-12-02 11:34:15 -08001894 return gRegistry->Add(parent);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001895}
1896
1897JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001898 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001899 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001900 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001901 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001902}
1903
1904JDWP::ObjectId Dbg::GetMainThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001905 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001906 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001907 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001908 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001909}
1910
Jeff Hao920af3e2013-08-28 15:46:38 -07001911JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
1912 switch (state) {
1913 case kBlocked:
1914 return JDWP::TS_MONITOR;
1915 case kNative:
1916 case kRunnable:
1917 case kSuspended:
1918 return JDWP::TS_RUNNING;
1919 case kSleeping:
1920 return JDWP::TS_SLEEPING;
1921 case kStarting:
1922 case kTerminated:
1923 return JDWP::TS_ZOMBIE;
1924 case kTimedWaiting:
1925 case kWaitingForDebuggerSend:
1926 case kWaitingForDebuggerSuspension:
1927 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01001928 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07001929 case kWaitingForGcToComplete:
1930 case kWaitingForCheckPointsToRun:
1931 case kWaitingForJniOnLoad:
1932 case kWaitingForSignalCatcherOutput:
1933 case kWaitingInMainDebuggerLoop:
1934 case kWaitingInMainSignalCatcherLoop:
1935 case kWaitingPerformingGc:
1936 case kWaiting:
1937 return JDWP::TS_WAIT;
1938 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
1939 }
1940 LOG(FATAL) << "Unknown thread state: " << state;
1941 return JDWP::TS_ZOMBIE;
1942}
1943
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001944JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
1945 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001946 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08001947
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001948 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
1949
Ian Rogers50b35e22012-10-04 10:09:15 -07001950 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001951 Thread* thread;
1952 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1953 if (error != JDWP::ERR_NONE) {
1954 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1955 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08001956 return JDWP::ERR_NONE;
1957 }
1958 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08001959 }
1960
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001961 if (IsSuspendedForDebugger(soa, thread)) {
1962 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08001963 }
1964
Jeff Hao920af3e2013-08-28 15:46:38 -07001965 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08001966 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001967}
1968
Elliott Hughes221229c2013-01-08 18:17:50 -08001969JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001970 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07001971 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001972 Thread* thread;
1973 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1974 if (error != JDWP::ERR_NONE) {
1975 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08001976 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001977 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001978 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08001979 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001980}
1981
Elliott Hughesf9501702013-01-11 11:22:27 -08001982JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
1983 ScopedObjectAccess soa(Thread::Current());
1984 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
1985 Thread* thread;
1986 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1987 if (error != JDWP::ERR_NONE) {
1988 return error;
1989 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07001990 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08001991 return JDWP::ERR_NONE;
1992}
1993
Elliott Hughescaf76542012-06-28 16:08:22 -07001994void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids) {
Ian Rogers365c1022012-06-22 15:05:28 -07001995 class ThreadListVisitor {
1996 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001997 ThreadListVisitor(const ScopedObjectAccessUnchecked& soa, mirror::Object* desired_thread_group,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001998 std::vector<JDWP::ObjectId>& thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001999 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
jeffhao0dfbb7e2012-11-28 15:26:03 -08002000 : soa_(soa), desired_thread_group_(desired_thread_group), thread_ids_(thread_ids) {}
Ian Rogers365c1022012-06-22 15:05:28 -07002001
Elliott Hughesa2155262011-11-16 16:26:58 -08002002 static void Visit(Thread* t, void* arg) {
2003 reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t);
2004 }
2005
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002006 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2007 // annotalysis.
2008 void Visit(Thread* t) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08002009 if (t == Dbg::GetDebugThread()) {
2010 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2011 // query all threads, so it's easier if we just don't tell them about this thread.
2012 return;
2013 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002014 mirror::Object* peer = t->GetPeer();
jeffhao0dfbb7e2012-11-28 15:26:03 -08002015 if (IsInDesiredThreadGroup(peer)) {
Ian Rogers120f1c72012-09-28 17:17:10 -07002016 thread_ids_.push_back(gRegistry->Add(peer));
Elliott Hughesa2155262011-11-16 16:26:58 -08002017 }
2018 }
2019
Ian Rogers365c1022012-06-22 15:05:28 -07002020 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002021 bool IsInDesiredThreadGroup(mirror::Object* peer)
jeffhao0dfbb7e2012-11-28 15:26:03 -08002022 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao0dfbb7e2012-11-28 15:26:03 -08002023 // peer might be NULL if the thread is still starting up.
2024 if (peer == NULL) {
2025 // We can't tell the debugger about this thread yet.
2026 // TODO: if we identified threads to the debugger by their Thread*
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002027 // rather than their peer's mirror::Object*, we could fix this.
jeffhao0dfbb7e2012-11-28 15:26:03 -08002028 // Doing so might help us report ZOMBIE threads too.
2029 return false;
2030 }
jeffhaoc1e04902012-12-13 12:41:10 -08002031 // Do we want threads from all thread groups?
2032 if (desired_thread_group_ == NULL) {
2033 return true;
2034 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002035 mirror::Object* group = soa_.DecodeField(WellKnownClasses::java_lang_Thread_group)->GetObject(peer);
jeffhao0dfbb7e2012-11-28 15:26:03 -08002036 return (group == desired_thread_group_);
2037 }
2038
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002039 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002040 mirror::Object* const desired_thread_group_;
Elliott Hughescaf76542012-06-28 16:08:22 -07002041 std::vector<JDWP::ObjectId>& thread_ids_;
Elliott Hughesa2155262011-11-16 16:26:58 -08002042 };
2043
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002044 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002045 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002046 ThreadListVisitor tlv(soa, thread_group, thread_ids);
Ian Rogers50b35e22012-10-04 10:09:15 -07002047 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -07002048 Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv);
Elliott Hughescaf76542012-06-28 16:08:22 -07002049}
Elliott Hughesa2155262011-11-16 16:26:58 -08002050
Elliott Hughescaf76542012-06-28 16:08:22 -07002051void Dbg::GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002052 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002053 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughescaf76542012-06-28 16:08:22 -07002054
2055 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Brian Carlstromea46f952013-07-30 01:26:50 -07002056 mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002057 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Elliott Hughescaf76542012-06-28 16:08:22 -07002058
2059 // Get the array and size out of the ArrayList<ThreadGroup>...
Brian Carlstromea46f952013-07-30 01:26:50 -07002060 mirror::ArtField* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;");
2061 mirror::ArtField* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002062 mirror::ObjectArray<mirror::Object>* groups_array =
2063 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
Elliott Hughescaf76542012-06-28 16:08:22 -07002064 const int32_t size = size_field->GetInt(groups_array_list);
2065
2066 // Copy the first 'size' elements out of the array into the result.
2067 for (int32_t i = 0; i < size; ++i) {
2068 child_thread_group_ids.push_back(gRegistry->Add(groups_array->Get(i)));
Elliott Hughesa2155262011-11-16 16:26:58 -08002069 }
2070}
2071
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002072static int GetStackDepth(Thread* thread)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002073 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002074 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07002075 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002076 : StackVisitor(thread, NULL), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002077
Elliott Hughes64f574f2013-02-20 14:57:12 -08002078 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2079 // annotalysis.
2080 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002081 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002082 ++depth;
2083 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002084 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002085 }
2086 size_t depth;
2087 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002088
Ian Rogers7a22fa62013-01-23 12:16:16 -08002089 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002090 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002091 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002092}
2093
Elliott Hughes221229c2013-01-08 18:17:50 -08002094JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002095 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002096 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002097 Thread* thread;
2098 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2099 if (error != JDWP::ERR_NONE) {
2100 return error;
2101 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002102 if (!IsSuspendedForDebugger(soa, thread)) {
2103 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2104 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002105 result = GetStackDepth(thread);
2106 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002107}
2108
Ian Rogers306057f2012-11-26 12:45:53 -08002109JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2110 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002111 class GetFrameVisitor : public StackVisitor {
2112 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08002113 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002114 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002115 : StackVisitor(thread, NULL), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002116 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
2117 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002118 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002119
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002120 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2121 // annotalysis.
2122 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002123 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002124 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002125 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002126 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002127 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002128 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002129 if (depth_ >= start_frame_) {
2130 JDWP::FrameId frame_id(GetFrameId());
2131 JDWP::JdwpLocation location;
2132 SetLocation(location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002133 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002134 expandBufAdd8BE(buf_, frame_id);
2135 expandBufAddLocation(buf_, location);
2136 }
2137 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002138 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002139 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002140
2141 private:
2142 size_t depth_;
2143 const size_t start_frame_;
2144 const size_t frame_count_;
2145 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002146 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002147
2148 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002149 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002150 Thread* thread;
2151 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2152 if (error != JDWP::ERR_NONE) {
2153 return error;
2154 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002155 if (!IsSuspendedForDebugger(soa, thread)) {
2156 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2157 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002158 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002159 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002160 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002161}
2162
2163JDWP::ObjectId Dbg::GetThreadSelfId() {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002164 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08002165 return gRegistry->Add(soa.Self()->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002166}
2167
Elliott Hughes475fc232011-10-25 15:00:35 -07002168void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002169 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002170}
2171
2172void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07002173 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002174}
2175
Elliott Hughes221229c2013-01-08 18:17:50 -08002176JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002177 ScopedLocalRef<jobject> peer(Thread::Current()->GetJniEnv(), NULL);
2178 {
2179 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002180 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002181 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002182 if (peer.get() == NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002183 return JDWP::ERR_THREAD_NOT_ALIVE;
2184 }
2185 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002186 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002187 Thread* thread = ThreadList::SuspendThreadByPeer(peer.get(), request_suspension, true,
2188 &timed_out);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002189 if (thread != NULL) {
2190 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002191 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002192 return JDWP::ERR_INTERNAL;
2193 } else {
2194 return JDWP::ERR_THREAD_NOT_ALIVE;
2195 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002196}
2197
Elliott Hughes221229c2013-01-08 18:17:50 -08002198void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002199 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002200 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
jeffhaoa77f0f62012-12-05 17:19:31 -08002201 Thread* thread;
2202 {
2203 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2204 thread = Thread::FromManagedThread(soa, peer);
2205 }
Elliott Hughes4e235312011-12-02 11:34:15 -08002206 if (thread == NULL) {
2207 LOG(WARNING) << "No such thread for resume: " << peer;
2208 return;
2209 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002210 bool needs_resume;
2211 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002212 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002213 needs_resume = thread->GetSuspendCount() > 0;
2214 }
2215 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002216 Runtime::Current()->GetThreadList()->Resume(thread, true);
2217 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002218}
2219
2220void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002221 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002222}
2223
Ian Rogers0399dde2012-06-06 17:09:28 -07002224struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002225 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002226 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002227 : StackVisitor(thread, context), this_object(NULL), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002228
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002229 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2230 // annotalysis.
2231 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002232 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002233 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002234 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002235 this_object = GetThisObject();
2236 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002237 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002238 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002239
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002240 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002241 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002242};
2243
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002244JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2245 JDWP::ObjectId* result) {
2246 ScopedObjectAccessUnchecked soa(Thread::Current());
2247 Thread* thread;
2248 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002249 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002250 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2251 if (error != JDWP::ERR_NONE) {
2252 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002253 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002254 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002255 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2256 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002257 }
Ian Rogers700a4022014-05-19 16:49:03 -07002258 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002259 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002260 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002261 *result = gRegistry->Add(visitor.this_object);
2262 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002263}
2264
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002265JDWP::JdwpError Dbg::GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2266 JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002267 struct GetLocalVisitor : public StackVisitor {
Ian Rogers98379392014-02-24 16:53:16 -08002268 GetLocalVisitor(const ScopedObjectAccessUnchecked& soa, Thread* thread, Context* context,
2269 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002270 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers98379392014-02-24 16:53:16 -08002271 : StackVisitor(thread, context), soa_(soa), frame_id_(frame_id), slot_(slot), tag_(tag),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002272 buf_(buf), width_(width), error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002273
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002274 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2275 // annotalysis.
2276 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002277 if (GetFrameId() != frame_id_) {
2278 return true; // Not our frame, carry on.
Elliott Hughesdbb40792011-11-18 17:05:22 -08002279 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002280 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002281 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002282 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002283 if (m->IsNative()) {
2284 // We can't read local value from native method.
2285 error_ = JDWP::ERR_OPAQUE_FRAME;
2286 return false;
2287 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002288 uint16_t reg = DemangleSlot(slot_, m);
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002289 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
Ian Rogers0399dde2012-06-06 17:09:28 -07002290 switch (tag_) {
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002291 case JDWP::JT_BOOLEAN: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002292 CHECK_EQ(width_, 1U);
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002293 uint32_t intVal;
2294 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2295 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2296 JDWP::Set1(buf_+1, intVal != 0);
2297 } else {
2298 VLOG(jdwp) << "failed to get boolean local " << reg;
2299 error_ = kFailureErrorCode;
2300 }
2301 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002302 }
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002303 case JDWP::JT_BYTE: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002304 CHECK_EQ(width_, 1U);
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002305 uint32_t intVal;
2306 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2307 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2308 JDWP::Set1(buf_+1, intVal);
2309 } else {
2310 VLOG(jdwp) << "failed to get byte local " << reg;
2311 error_ = kFailureErrorCode;
2312 }
2313 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002314 }
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002315 case JDWP::JT_SHORT:
2316 case JDWP::JT_CHAR: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002317 CHECK_EQ(width_, 2U);
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002318 uint32_t intVal;
2319 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2320 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2321 JDWP::Set2BE(buf_+1, intVal);
2322 } else {
2323 VLOG(jdwp) << "failed to get short/char local " << reg;
2324 error_ = kFailureErrorCode;
Ian Rogers0399dde2012-06-06 17:09:28 -07002325 }
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002326 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002327 }
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002328 case JDWP::JT_INT: {
2329 CHECK_EQ(width_, 4U);
2330 uint32_t intVal;
2331 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2332 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2333 JDWP::Set4BE(buf_+1, intVal);
2334 } else {
2335 VLOG(jdwp) << "failed to get int local " << reg;
2336 error_ = kFailureErrorCode;
Ian Rogers0399dde2012-06-06 17:09:28 -07002337 }
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002338 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002339 }
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002340 case JDWP::JT_FLOAT: {
2341 CHECK_EQ(width_, 4U);
2342 uint32_t intVal;
2343 if (GetVReg(m, reg, kFloatVReg, &intVal)) {
2344 VLOG(jdwp) << "get float local " << reg << " = " << intVal;
2345 JDWP::Set4BE(buf_+1, intVal);
2346 } else {
2347 VLOG(jdwp) << "failed to get float local " << reg;
2348 error_ = kFailureErrorCode;
2349 }
2350 break;
2351 }
2352 case JDWP::JT_ARRAY:
2353 case JDWP::JT_CLASS_LOADER:
2354 case JDWP::JT_CLASS_OBJECT:
2355 case JDWP::JT_OBJECT:
2356 case JDWP::JT_STRING:
2357 case JDWP::JT_THREAD:
2358 case JDWP::JT_THREAD_GROUP: {
2359 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
2360 uint32_t intVal;
2361 if (GetVReg(m, reg, kReferenceVReg, &intVal)) {
2362 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2363 VLOG(jdwp) << "get " << tag_ << " object local " << reg << " = " << o;
2364 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2365 LOG(FATAL) << "Register " << reg << " expected to hold " << tag_ << " object: " << o;
2366 }
2367 tag_ = TagFromObject(soa_, o);
2368 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2369 } else {
2370 VLOG(jdwp) << "failed to get " << tag_ << " object local " << reg;
2371 error_ = kFailureErrorCode;
2372 }
2373 break;
2374 }
2375 case JDWP::JT_DOUBLE: {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002376 CHECK_EQ(width_, 8U);
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002377 uint32_t lo;
2378 uint32_t hi;
2379 if (GetVReg(m, reg, kDoubleLoVReg, &lo) && GetVReg(m, reg + 1, kDoubleHiVReg, &hi)) {
2380 uint64_t longVal = (static_cast<uint64_t>(hi) << 32) | lo;
2381 VLOG(jdwp) << "get double local " << reg << " = "
2382 << hi << ":" << lo << " = " << longVal;
2383 JDWP::Set8BE(buf_+1, longVal);
2384 } else {
2385 VLOG(jdwp) << "failed to get double local " << reg;
2386 error_ = kFailureErrorCode;
2387 }
2388 break;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002389 }
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002390 case JDWP::JT_LONG: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002391 CHECK_EQ(width_, 8U);
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002392 uint32_t lo;
2393 uint32_t hi;
2394 if (GetVReg(m, reg, kLongLoVReg, &lo) && GetVReg(m, reg + 1, kLongHiVReg, &hi)) {
2395 uint64_t longVal = (static_cast<uint64_t>(hi) << 32) | lo;
2396 VLOG(jdwp) << "get long local " << reg << " = "
2397 << hi << ":" << lo << " = " << longVal;
2398 JDWP::Set8BE(buf_+1, longVal);
2399 } else {
2400 VLOG(jdwp) << "failed to get long local " << reg;
2401 error_ = kFailureErrorCode;
2402 }
2403 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002404 }
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002405 default:
2406 LOG(FATAL) << "Unknown tag " << tag_;
2407 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002408 }
2409
2410 // Prepend tag, which may have been updated.
2411 JDWP::Set1(buf_, tag_);
2412 return false;
2413 }
Ian Rogers98379392014-02-24 16:53:16 -08002414 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002415 const JDWP::FrameId frame_id_;
2416 const int slot_;
2417 JDWP::JdwpTag tag_;
2418 uint8_t* const buf_;
2419 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002420 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002421 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002422
2423 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002424 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002425 Thread* thread;
2426 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2427 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002428 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002429 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002430 // TODO check thread is suspended by the debugger ?
Ian Rogers700a4022014-05-19 16:49:03 -07002431 std::unique_ptr<Context> context(Context::Create());
Ian Rogers98379392014-02-24 16:53:16 -08002432 GetLocalVisitor visitor(soa, thread, context.get(), frame_id, slot, tag, buf, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002433 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002434 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002435}
2436
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002437JDWP::JdwpError Dbg::SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2438 JDWP::JdwpTag tag, uint64_t value, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002439 struct SetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002440 SetLocalVisitor(Thread* thread, Context* context,
Ian Rogers0399dde2012-06-06 17:09:28 -07002441 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
Ian Rogersca190662012-06-26 15:45:57 -07002442 size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002443 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002444 : StackVisitor(thread, context),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002445 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width),
2446 error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002447
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002448 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2449 // annotalysis.
2450 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002451 if (GetFrameId() != frame_id_) {
2452 return true; // Not our frame, carry on.
2453 }
2454 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002455 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002456 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002457 if (m->IsNative()) {
2458 // We can't read local value from native method.
2459 error_ = JDWP::ERR_OPAQUE_FRAME;
2460 return false;
2461 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002462 uint16_t reg = DemangleSlot(slot_, m);
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002463 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
Ian Rogers0399dde2012-06-06 17:09:28 -07002464 switch (tag_) {
2465 case JDWP::JT_BOOLEAN:
2466 case JDWP::JT_BYTE:
2467 CHECK_EQ(width_, 1U);
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002468 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2469 VLOG(jdwp) << "failed to set boolean/byte local " << reg << " = "
2470 << static_cast<uint32_t>(value_);
2471 error_ = kFailureErrorCode;
2472 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002473 break;
2474 case JDWP::JT_SHORT:
2475 case JDWP::JT_CHAR:
2476 CHECK_EQ(width_, 2U);
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002477 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2478 VLOG(jdwp) << "failed to set short/char local " << reg << " = "
2479 << static_cast<uint32_t>(value_);
2480 error_ = kFailureErrorCode;
2481 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002482 break;
2483 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002484 CHECK_EQ(width_, 4U);
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002485 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2486 VLOG(jdwp) << "failed to set int local " << reg << " = "
2487 << static_cast<uint32_t>(value_);
2488 error_ = kFailureErrorCode;
2489 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002490 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002491 case JDWP::JT_FLOAT:
2492 CHECK_EQ(width_, 4U);
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002493 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kFloatVReg)) {
2494 VLOG(jdwp) << "failed to set float local " << reg << " = "
2495 << static_cast<uint32_t>(value_);
2496 error_ = kFailureErrorCode;
2497 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002498 break;
2499 case JDWP::JT_ARRAY:
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002500 case JDWP::JT_CLASS_LOADER:
2501 case JDWP::JT_CLASS_OBJECT:
Ian Rogers0399dde2012-06-06 17:09:28 -07002502 case JDWP::JT_OBJECT:
2503 case JDWP::JT_STRING:
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002504 case JDWP::JT_THREAD:
2505 case JDWP::JT_THREAD_GROUP: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002506 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002507 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value_));
Elliott Hughes64f574f2013-02-20 14:57:12 -08002508 if (o == ObjectRegistry::kInvalidObject) {
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002509 VLOG(jdwp) << tag_ << " object " << o << " is an invalid object";
2510 error_ = JDWP::ERR_INVALID_OBJECT;
2511 } else if (!SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2512 kReferenceVReg)) {
2513 VLOG(jdwp) << "failed to set " << tag_ << " object local " << reg << " = " << o;
2514 error_ = kFailureErrorCode;
Ian Rogers0399dde2012-06-06 17:09:28 -07002515 }
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002516 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002517 }
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002518 case JDWP::JT_DOUBLE: {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002519 CHECK_EQ(width_, 8U);
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002520 const uint32_t lo = static_cast<uint32_t>(value_);
2521 const uint32_t hi = static_cast<uint32_t>(value_ >> 32);
2522 bool success = SetVReg(m, reg, lo, kDoubleLoVReg);
2523 success &= SetVReg(m, reg + 1, hi, kDoubleHiVReg);
2524 if (!success) {
2525 uint64_t longVal = (static_cast<uint64_t>(hi) << 32) | lo;
2526 VLOG(jdwp) << "failed to set double local " << reg << " = "
2527 << hi << ":" << lo << " = " << longVal;
2528 error_ = kFailureErrorCode;
2529 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002530 break;
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002531 }
2532 case JDWP::JT_LONG: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002533 CHECK_EQ(width_, 8U);
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002534 const uint32_t lo = static_cast<uint32_t>(value_);
2535 const uint32_t hi = static_cast<uint32_t>(value_ >> 32);
2536 bool success = SetVReg(m, reg, lo, kLongLoVReg);
2537 success &= SetVReg(m, reg + 1, hi, kLongHiVReg);
2538 if (!success) {
2539 uint64_t longVal = (static_cast<uint64_t>(hi) << 32) | lo;
2540 VLOG(jdwp) << "failed to set double local " << reg << " = "
2541 << hi << ":" << lo << " = " << longVal;
2542 error_ = kFailureErrorCode;
2543 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002544 break;
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002545 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002546 default:
2547 LOG(FATAL) << "Unknown tag " << tag_;
2548 break;
2549 }
2550 return false;
2551 }
2552
2553 const JDWP::FrameId frame_id_;
2554 const int slot_;
2555 const JDWP::JdwpTag tag_;
2556 const uint64_t value_;
2557 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002558 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002559 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002560
2561 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002562 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002563 Thread* thread;
2564 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2565 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002566 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002567 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002568 // TODO check thread is suspended by the debugger ?
Ian Rogers700a4022014-05-19 16:49:03 -07002569 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002570 SetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, value, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002571 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002572 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002573}
2574
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002575JDWP::ObjectId Dbg::GetThisObjectIdForEvent(mirror::Object* this_object) {
2576 // If 'this_object' isn't already in the registry, we know that we're not looking for it, so
2577 // there's no point adding it to the registry and burning through ids.
2578 // When registering an event request with an instance filter, we've been given an existing object
2579 // id so it must already be present in the registry when the event fires.
2580 JDWP::ObjectId this_id = 0;
2581 if (this_object != nullptr && gRegistry->Contains(this_object)) {
2582 this_id = gRegistry->Add(this_object);
2583 }
2584 return this_id;
2585}
2586
Ian Rogersef7d42f2014-01-06 12:55:46 -08002587void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002588 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002589 if (!IsDebuggerActive()) {
2590 return;
2591 }
2592 DCHECK(m != nullptr);
2593 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002594 JDWP::JdwpLocation location;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002595 SetLocation(location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002596
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002597 // We need 'this' for InstanceOnly filters only.
2598 JDWP::ObjectId this_id = GetThisObjectIdForEvent(this_object);
Jeff Hao579b0242013-11-18 13:16:49 -08002599 gJdwpState->PostLocationEvent(&location, this_id, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002600}
2601
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002602void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
2603 mirror::Object* this_object, mirror::ArtField* f) {
2604 if (!IsDebuggerActive()) {
2605 return;
2606 }
2607 DCHECK(m != nullptr);
2608 DCHECK(f != nullptr);
2609 JDWP::JdwpLocation location;
2610 SetLocation(location, m, dex_pc);
2611
2612 JDWP::RefTypeId type_id = gRegistry->AddRefType(f->GetDeclaringClass());
2613 JDWP::FieldId field_id = ToFieldId(f);
2614 JDWP::ObjectId this_id = gRegistry->Add(this_object);
2615
2616 gJdwpState->PostFieldEvent(&location, type_id, field_id, this_id, nullptr, false);
2617}
2618
2619void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
2620 mirror::Object* this_object, mirror::ArtField* f,
2621 const JValue* field_value) {
2622 if (!IsDebuggerActive()) {
2623 return;
2624 }
2625 DCHECK(m != nullptr);
2626 DCHECK(f != nullptr);
2627 DCHECK(field_value != nullptr);
2628 JDWP::JdwpLocation location;
2629 SetLocation(location, m, dex_pc);
2630
2631 JDWP::RefTypeId type_id = gRegistry->AddRefType(f->GetDeclaringClass());
2632 JDWP::FieldId field_id = ToFieldId(f);
2633 JDWP::ObjectId this_id = gRegistry->Add(this_object);
2634
2635 gJdwpState->PostFieldEvent(&location, type_id, field_id, this_id, field_value, true);
2636}
2637
2638void Dbg::PostException(const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002639 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002640 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002641 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002642 return;
2643 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002644
Ian Rogers62d6c772013-02-27 08:32:07 -08002645 JDWP::JdwpLocation jdwp_throw_location;
2646 SetLocation(jdwp_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002647 JDWP::JdwpLocation catch_location;
Elliott Hughescaf76542012-06-28 16:08:22 -07002648 SetLocation(catch_location, catch_method, catch_dex_pc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002649
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002650 // We need 'this' for InstanceOnly filters only.
2651 JDWP::ObjectId this_id = GetThisObjectIdForEvent(throw_location.GetThis());
Elliott Hughes64f574f2013-02-20 14:57:12 -08002652 JDWP::ObjectId exception_id = gRegistry->Add(exception_object);
2653 JDWP::RefTypeId exception_class_id = gRegistry->AddRefType(exception_object->GetClass());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002654
Ian Rogers62d6c772013-02-27 08:32:07 -08002655 gJdwpState->PostException(&jdwp_throw_location, exception_id, exception_class_id, &catch_location,
2656 this_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002657}
2658
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002659void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002660 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002661 return;
2662 }
2663
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002664 // OLD-TODO - we currently always send both "verified" and "prepared" since
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002665 // debuggers seem to like that. There might be some advantage to honesty,
2666 // since the class may not yet be verified.
2667 int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01002668 JDWP::JdwpTypeTag tag = GetTypeTag(c);
Mathieu Chartierf8322842014-05-16 10:59:25 -07002669 gJdwpState->PostClassPrepare(tag, gRegistry->Add(c), c->GetDescriptor(), state);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002670}
2671
Ian Rogers62d6c772013-02-27 08:32:07 -08002672void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002673 mirror::ArtMethod* m, uint32_t dex_pc,
2674 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002675 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002676 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002677 }
2678
Elliott Hughes86964332012-02-15 19:37:42 -08002679 if (IsBreakpoint(m, dex_pc)) {
2680 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002681 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002682
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002683 // If the debugger is single-stepping one of our threads, check to
2684 // see if we're that thread and we've reached a step point.
2685 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2686 DCHECK(single_step_control != nullptr);
2687 if (single_step_control->is_active) {
2688 CHECK(!m->IsNative());
2689 if (single_step_control->step_depth == JDWP::SD_INTO) {
2690 // Step into method calls. We break when the line number
2691 // or method pointer changes. If we're in SS_MIN mode, we
2692 // always stop.
2693 if (single_step_control->method != m) {
2694 event_flags |= kSingleStep;
2695 VLOG(jdwp) << "SS new method";
2696 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2697 event_flags |= kSingleStep;
2698 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002699 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002700 event_flags |= kSingleStep;
2701 VLOG(jdwp) << "SS new line";
2702 }
2703 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2704 // Step over method calls. We break when the line number is
2705 // different and the frame depth is <= the original frame
2706 // depth. (We can't just compare on the method, because we
2707 // might get unrolled past it by an exception, and it's tricky
2708 // to identify recursion.)
2709
2710 int stack_depth = GetStackDepth(thread);
2711
2712 if (stack_depth < single_step_control->stack_depth) {
2713 // Popped up one or more frames, always trigger.
2714 event_flags |= kSingleStep;
2715 VLOG(jdwp) << "SS method pop";
2716 } else if (stack_depth == single_step_control->stack_depth) {
2717 // Same depth, see if we moved.
2718 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002719 event_flags |= kSingleStep;
2720 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002721 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002722 event_flags |= kSingleStep;
2723 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002724 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002725 }
2726 } else {
2727 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2728 // Return from the current method. We break when the frame
2729 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002730
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002731 // This differs from the "method exit" break in that it stops
2732 // with the PC at the next instruction in the returned-to
2733 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002734
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002735 int stack_depth = GetStackDepth(thread);
2736 if (stack_depth < single_step_control->stack_depth) {
2737 event_flags |= kSingleStep;
2738 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002739 }
2740 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002741 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002742
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002743 // If there's something interesting going on, see if it matches one
2744 // of the debugger filters.
2745 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002746 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002747 }
2748}
2749
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002750size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2751 switch (instrumentation_event) {
2752 case instrumentation::Instrumentation::kMethodEntered:
2753 return &method_enter_event_ref_count_;
2754 case instrumentation::Instrumentation::kMethodExited:
2755 return &method_exit_event_ref_count_;
2756 case instrumentation::Instrumentation::kDexPcMoved:
2757 return &dex_pc_change_event_ref_count_;
2758 case instrumentation::Instrumentation::kFieldRead:
2759 return &field_read_event_ref_count_;
2760 case instrumentation::Instrumentation::kFieldWritten:
2761 return &field_write_event_ref_count_;
2762 case instrumentation::Instrumentation::kExceptionCaught:
2763 return &exception_catch_event_ref_count_;
2764 default:
2765 return nullptr;
2766 }
2767}
2768
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002769// Process request while all mutator threads are suspended.
2770void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002771 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002772 switch (request.kind) {
2773 case DeoptimizationRequest::kNothing:
2774 LOG(WARNING) << "Ignoring empty deoptimization request.";
2775 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002776 case DeoptimizationRequest::kRegisterForEvent:
2777 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
2778 request.instrumentation_event);
2779 instrumentation->AddListener(&gDebugInstrumentationListener, request.instrumentation_event);
2780 instrumentation_events_ |= request.instrumentation_event;
2781 break;
2782 case DeoptimizationRequest::kUnregisterForEvent:
2783 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
2784 request.instrumentation_event);
2785 instrumentation->RemoveListener(&gDebugInstrumentationListener,
2786 request.instrumentation_event);
2787 instrumentation_events_ &= ~request.instrumentation_event;
2788 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002789 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002790 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002791 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002792 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002793 break;
2794 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002795 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002796 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002797 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002798 break;
2799 case DeoptimizationRequest::kSelectiveDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002800 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.method) << " ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002801 instrumentation->Deoptimize(request.method);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002802 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.method) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002803 break;
2804 case DeoptimizationRequest::kSelectiveUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002805 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.method) << " ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002806 instrumentation->Undeoptimize(request.method);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002807 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.method) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002808 break;
2809 default:
2810 LOG(FATAL) << "Unsupported deoptimization request kind " << request.kind;
2811 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002812 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002813}
2814
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002815void Dbg::DelayFullUndeoptimization() {
2816 MutexLock mu(Thread::Current(), *deoptimization_lock_);
2817 ++delayed_full_undeoptimization_count_;
2818 DCHECK_LE(delayed_full_undeoptimization_count_, full_deoptimization_event_count_);
2819}
2820
2821void Dbg::ProcessDelayedFullUndeoptimizations() {
2822 // TODO: avoid taking the lock twice (once here and once in ManageDeoptimization).
2823 {
2824 MutexLock mu(Thread::Current(), *deoptimization_lock_);
2825 while (delayed_full_undeoptimization_count_ > 0) {
2826 DeoptimizationRequest req;
2827 req.kind = DeoptimizationRequest::kFullUndeoptimization;
2828 req.method = nullptr;
2829 RequestDeoptimizationLocked(req);
2830 --delayed_full_undeoptimization_count_;
2831 }
2832 }
2833 ManageDeoptimization();
2834}
2835
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002836void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
2837 if (req.kind == DeoptimizationRequest::kNothing) {
2838 // Nothing to do.
2839 return;
2840 }
2841 MutexLock mu(Thread::Current(), *deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002842 RequestDeoptimizationLocked(req);
2843}
2844
2845void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002846 switch (req.kind) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002847 case DeoptimizationRequest::kRegisterForEvent: {
2848 DCHECK_NE(req.instrumentation_event, 0u);
2849 size_t* counter = GetReferenceCounterForEvent(req.instrumentation_event);
2850 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
2851 req.instrumentation_event);
2852 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02002853 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002854 deoptimization_requests_.size(), req.instrumentation_event);
2855 deoptimization_requests_.push_back(req);
2856 }
2857 *counter = *counter + 1;
2858 break;
2859 }
2860 case DeoptimizationRequest::kUnregisterForEvent: {
2861 DCHECK_NE(req.instrumentation_event, 0u);
2862 size_t* counter = GetReferenceCounterForEvent(req.instrumentation_event);
2863 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
2864 req.instrumentation_event);
2865 *counter = *counter - 1;
2866 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02002867 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002868 deoptimization_requests_.size(), req.instrumentation_event);
2869 deoptimization_requests_.push_back(req);
2870 }
2871 break;
2872 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002873 case DeoptimizationRequest::kFullDeoptimization: {
2874 DCHECK(req.method == nullptr);
2875 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002876 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2877 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002878 deoptimization_requests_.push_back(req);
2879 }
2880 ++full_deoptimization_event_count_;
2881 break;
2882 }
2883 case DeoptimizationRequest::kFullUndeoptimization: {
2884 DCHECK(req.method == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02002885 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002886 --full_deoptimization_event_count_;
2887 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002888 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2889 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002890 deoptimization_requests_.push_back(req);
2891 }
2892 break;
2893 }
2894 case DeoptimizationRequest::kSelectiveDeoptimization: {
2895 DCHECK(req.method != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002896 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2897 << " for deoptimization of " << PrettyMethod(req.method);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002898 deoptimization_requests_.push_back(req);
2899 break;
2900 }
2901 case DeoptimizationRequest::kSelectiveUndeoptimization: {
2902 DCHECK(req.method != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002903 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2904 << " for undeoptimization of " << PrettyMethod(req.method);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002905 deoptimization_requests_.push_back(req);
2906 break;
2907 }
2908 default: {
2909 LOG(FATAL) << "Unknown deoptimization request kind " << req.kind;
2910 break;
2911 }
2912 }
2913}
2914
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002915void Dbg::ManageDeoptimization() {
2916 Thread* const self = Thread::Current();
2917 {
2918 // Avoid suspend/resume if there is no pending request.
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002919 MutexLock mu(self, *deoptimization_lock_);
2920 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002921 return;
2922 }
2923 }
2924 CHECK_EQ(self->GetState(), kRunnable);
2925 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
2926 // We need to suspend mutator threads first.
2927 Runtime* const runtime = Runtime::Current();
2928 runtime->GetThreadList()->SuspendAll();
2929 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002930 {
2931 MutexLock mu(self, *deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002932 size_t req_index = 0;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002933 for (const DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002934 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002935 ProcessDeoptimizationRequest(request);
2936 }
2937 deoptimization_requests_.clear();
2938 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002939 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
2940 runtime->GetThreadList()->ResumeAll();
2941 self->TransitionFromSuspendedToRunnable();
2942}
2943
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002944static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
2945 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002946 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002947 if (code_item == nullptr) {
2948 // TODO We should not be asked to watch location in a native or abstract method so the code item
2949 // should never be null. We could just check we never encounter this case.
2950 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002951 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002952 StackHandleScope<2> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002953 mirror::Class* declaring_class = m->GetDeclaringClass();
2954 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
2955 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
2956 verifier::MethodVerifier verifier(dex_cache->GetDexFile(), &dex_cache, &class_loader,
2957 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), m,
Ian Rogers46960fe2014-05-23 10:43:43 -07002958 m->GetAccessFlags(), false, true, false);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002959 // Note: we don't need to verify the method.
2960 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
2961}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002962
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002963static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
2964 EXCLUSIVE_LOCKS_REQUIRED(Locks::breakpoint_lock_) {
2965 for (const Breakpoint& breakpoint : gBreakpoints) {
2966 if (breakpoint.method == m) {
2967 return &breakpoint;
2968 }
2969 }
2970 return nullptr;
2971}
2972
2973// Sanity checks all existing breakpoints on the same method.
2974static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m, bool need_full_deoptimization)
2975 EXCLUSIVE_LOCKS_REQUIRED(Locks::breakpoint_lock_) {
2976 if (kIsDebugBuild) {
2977 for (const Breakpoint& breakpoint : gBreakpoints) {
2978 CHECK_EQ(need_full_deoptimization, breakpoint.need_full_deoptimization);
2979 }
2980 if (need_full_deoptimization) {
2981 // We should have deoptimized everything but not "selectively" deoptimized this method.
2982 CHECK(Runtime::Current()->GetInstrumentation()->AreAllMethodsDeoptimized());
2983 CHECK(!Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2984 } else {
2985 // We should have "selectively" deoptimized this method.
2986 // Note: while we have not deoptimized everything for this method, we may have done it for
2987 // another event.
2988 CHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2989 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002990 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002991}
2992
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002993// Installs a breakpoint at the specified location. Also indicates through the deoptimization
2994// request if we need to deoptimize.
2995void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
2996 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07002997 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002998 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002999
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003000 MutexLock mu(self, *Locks::breakpoint_lock_);
3001 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3002 bool need_full_deoptimization;
3003 if (existing_breakpoint == nullptr) {
3004 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3005 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3006 need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3007 if (need_full_deoptimization) {
3008 req->kind = DeoptimizationRequest::kFullDeoptimization;
3009 req->method = nullptr;
3010 } else {
3011 req->kind = DeoptimizationRequest::kSelectiveDeoptimization;
3012 req->method = m;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003013 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003014 } else {
3015 // There is at least one breakpoint for this method: we don't need to deoptimize.
3016 req->kind = DeoptimizationRequest::kNothing;
3017 req->method = nullptr;
3018
3019 need_full_deoptimization = existing_breakpoint->need_full_deoptimization;
3020 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003021 }
3022
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003023 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, need_full_deoptimization));
3024 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3025 << gBreakpoints[gBreakpoints.size() - 1];
3026}
3027
3028// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3029// request if we need to undeoptimize.
3030void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3031 mirror::ArtMethod* m = FromMethodId(location->method_id);
3032 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
3033
3034 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
3035 bool need_full_deoptimization = false;
3036 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
3037 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == location->dex_pc) {
3038 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
3039 need_full_deoptimization = gBreakpoints[i].need_full_deoptimization;
3040 DCHECK_NE(need_full_deoptimization, Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3041 gBreakpoints.erase(gBreakpoints.begin() + i);
3042 break;
3043 }
3044 }
3045 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3046 if (existing_breakpoint == nullptr) {
3047 // There is no more breakpoint on this method: we need to undeoptimize.
3048 if (need_full_deoptimization) {
3049 // This method required full deoptimization: we need to undeoptimize everything.
3050 req->kind = DeoptimizationRequest::kFullUndeoptimization;
3051 req->method = nullptr;
3052 } else {
3053 // This method required selective deoptimization: we need to undeoptimize only that method.
3054 req->kind = DeoptimizationRequest::kSelectiveUndeoptimization;
3055 req->method = m;
3056 }
3057 } else {
3058 // There is at least one breakpoint for this method: we don't need to undeoptimize.
3059 req->kind = DeoptimizationRequest::kNothing;
3060 req->method = nullptr;
3061 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
Elliott Hughes86964332012-02-15 19:37:42 -08003062 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003063}
3064
Jeff Hao449db332013-04-12 18:30:52 -07003065// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3066// cause suspension if the thread is the current thread.
3067class ScopedThreadSuspension {
3068 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003069 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003070 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003071 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Jeff Hao449db332013-04-12 18:30:52 -07003072 thread_(NULL),
3073 error_(JDWP::ERR_NONE),
3074 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003075 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003076 ScopedObjectAccessUnchecked soa(self);
3077 {
3078 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
3079 error_ = DecodeThread(soa, thread_id, thread_);
3080 }
3081 if (error_ == JDWP::ERR_NONE) {
3082 if (thread_ == soa.Self()) {
3083 self_suspend_ = true;
3084 } else {
3085 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
3086 jobject thread_peer = gRegistry->GetJObject(thread_id);
3087 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003088 Thread* suspended_thread = ThreadList::SuspendThreadByPeer(thread_peer, true, true,
3089 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07003090 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
3091 if (suspended_thread == NULL) {
3092 // Thread terminated from under us while suspending.
3093 error_ = JDWP::ERR_INVALID_THREAD;
3094 } else {
3095 CHECK_EQ(suspended_thread, thread_);
3096 other_suspend_ = true;
3097 }
3098 }
3099 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003100 }
Elliott Hughes86964332012-02-15 19:37:42 -08003101
Jeff Hao449db332013-04-12 18:30:52 -07003102 Thread* GetThread() const {
3103 return thread_;
3104 }
3105
3106 JDWP::JdwpError GetError() const {
3107 return error_;
3108 }
3109
3110 ~ScopedThreadSuspension() {
3111 if (other_suspend_) {
3112 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3113 }
3114 }
3115
3116 private:
3117 Thread* thread_;
3118 JDWP::JdwpError error_;
3119 bool self_suspend_;
3120 bool other_suspend_;
3121};
3122
3123JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3124 JDWP::JdwpStepDepth step_depth) {
3125 Thread* self = Thread::Current();
3126 ScopedThreadSuspension sts(self, thread_id);
3127 if (sts.GetError() != JDWP::ERR_NONE) {
3128 return sts.GetError();
3129 }
3130
Elliott Hughes2435a572012-02-17 16:07:41 -08003131 //
3132 // Work out what Method* we're in, the current line number, and how deep the stack currently
3133 // is for step-out.
3134 //
3135
Ian Rogers0399dde2012-06-06 17:09:28 -07003136 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003137 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
3138 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003139 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003140 : StackVisitor(thread, NULL), single_step_control_(single_step_control),
3141 line_number_(line_number) {
3142 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
3143 single_step_control_->method = NULL;
3144 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08003145 }
Ian Rogersca190662012-06-26 15:45:57 -07003146
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003147 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3148 // annotalysis.
3149 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003150 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003151 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003152 ++single_step_control_->stack_depth;
3153 if (single_step_control_->method == NULL) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003154 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003155 single_step_control_->method = m;
3156 *line_number_ = -1;
Elliott Hughes2435a572012-02-17 16:07:41 -08003157 if (dex_cache != NULL) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003158 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003159 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003160 }
Elliott Hughes86964332012-02-15 19:37:42 -08003161 }
3162 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003163 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003164 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003165
3166 SingleStepControl* const single_step_control_;
3167 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08003168 };
Jeff Hao449db332013-04-12 18:30:52 -07003169
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003170 Thread* const thread = sts.GetThread();
3171 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
3172 DCHECK(single_step_control != nullptr);
3173 int32_t line_number = -1;
3174 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07003175 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003176
Elliott Hughes2435a572012-02-17 16:07:41 -08003177 //
3178 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
3179 //
3180
3181 struct DebugCallbackContext {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003182 explicit DebugCallbackContext(SingleStepControl* single_step_control, int32_t line_number,
3183 const DexFile::CodeItem* code_item)
3184 : single_step_control_(single_step_control), line_number_(line_number), code_item_(code_item),
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003185 last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003186 }
3187
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003188 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003189 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003190 if (static_cast<int32_t>(line_number) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003191 if (!context->last_pc_valid) {
3192 // Everything from this address until the next line change is ours.
3193 context->last_pc = address;
3194 context->last_pc_valid = true;
3195 }
3196 // Otherwise, if we're already in a valid range for this line,
3197 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003198 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003199 // Add everything from the last entry up until here to the set
3200 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003201 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003202 }
3203 context->last_pc_valid = false;
3204 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003205 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003206 }
3207
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003208 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003209 // If the line number was the last in the position table...
3210 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003211 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003212 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003213 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003214 }
3215 }
3216 }
3217
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003218 SingleStepControl* const single_step_control_;
3219 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003220 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003221 bool last_pc_valid;
3222 uint32_t last_pc;
3223 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003224 single_step_control->dex_pcs.clear();
Ian Rogersef7d42f2014-01-06 12:55:46 -08003225 mirror::ArtMethod* m = single_step_control->method;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003226 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003227 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003228 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003229 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
3230 DebugCallbackContext::Callback, NULL, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003231 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003232
3233 //
3234 // Everything else...
3235 //
3236
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003237 single_step_control->step_size = step_size;
3238 single_step_control->step_depth = step_depth;
3239 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08003240
Elliott Hughes2435a572012-02-17 16:07:41 -08003241 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003242 VLOG(jdwp) << "Single-step thread: " << *thread;
3243 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
3244 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
3245 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
3246 VLOG(jdwp) << "Single-step current line: " << line_number;
3247 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08003248 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003249 for (uint32_t dex_pc : single_step_control->dex_pcs) {
3250 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003251 }
3252 }
3253
3254 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003255}
3256
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003257void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3258 ScopedObjectAccessUnchecked soa(Thread::Current());
3259 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
3260 Thread* thread;
3261 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003262 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003263 SingleStepControl* single_step_control = thread->GetSingleStepControl();
3264 DCHECK(single_step_control != nullptr);
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003265 single_step_control->Clear();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003266 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003267}
3268
Elliott Hughes45651fd2012-02-21 15:48:20 -08003269static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3270 switch (tag) {
3271 default:
3272 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
3273
3274 // Primitives.
3275 case JDWP::JT_BYTE: return 'B';
3276 case JDWP::JT_CHAR: return 'C';
3277 case JDWP::JT_FLOAT: return 'F';
3278 case JDWP::JT_DOUBLE: return 'D';
3279 case JDWP::JT_INT: return 'I';
3280 case JDWP::JT_LONG: return 'J';
3281 case JDWP::JT_SHORT: return 'S';
3282 case JDWP::JT_VOID: return 'V';
3283 case JDWP::JT_BOOLEAN: return 'Z';
3284
3285 // Reference types.
3286 case JDWP::JT_ARRAY:
3287 case JDWP::JT_OBJECT:
3288 case JDWP::JT_STRING:
3289 case JDWP::JT_THREAD:
3290 case JDWP::JT_THREAD_GROUP:
3291 case JDWP::JT_CLASS_LOADER:
3292 case JDWP::JT_CLASS_OBJECT:
3293 return 'L';
3294 }
3295}
3296
Elliott Hughes88d63092013-01-09 09:55:54 -08003297JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3298 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003299 uint32_t arg_count, uint64_t* arg_values,
3300 JDWP::JdwpTag* arg_types, uint32_t options,
3301 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3302 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003303 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3304
3305 Thread* targetThread = NULL;
3306 DebugInvokeReq* req = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003307 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003308 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003309 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003310 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08003311 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread);
3312 if (error != JDWP::ERR_NONE) {
3313 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3314 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003315 }
3316 req = targetThread->GetInvokeReq();
3317 if (!req->ready) {
3318 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3319 return JDWP::ERR_INVALID_THREAD;
3320 }
3321
3322 /*
3323 * We currently have a bug where we don't successfully resume the
3324 * target thread if the suspend count is too deep. We're expected to
3325 * require one "resume" for each "suspend", but when asked to execute
3326 * a method we have to resume fully and then re-suspend it back to the
3327 * same level. (The easiest way to cause this is to type "suspend"
3328 * multiple times in jdb.)
3329 *
3330 * It's unclear what this means when the event specifies "resume all"
3331 * and some threads are suspended more deeply than others. This is
3332 * a rare problem, so for now we just prevent it from hanging forever
3333 * by rejecting the method invocation request. Without this, we will
3334 * be stuck waiting on a suspended thread.
3335 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003336 int suspend_count;
3337 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003338 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003339 suspend_count = targetThread->GetSuspendCount();
3340 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003341 if (suspend_count > 1) {
3342 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003343 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003344 }
3345
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003346 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003347 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08003348 if (receiver == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003349 return JDWP::ERR_INVALID_OBJECT;
3350 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003351
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003352 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08003353 if (thread == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003354 return JDWP::ERR_INVALID_OBJECT;
3355 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003356 // TODO: check that 'thread' is actually a java.lang.Thread!
3357
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003358 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003359 if (c == NULL) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003360 return status;
3361 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003362
Brian Carlstromea46f952013-07-30 01:26:50 -07003363 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003364 if (m->IsStatic() != (receiver == NULL)) {
3365 return JDWP::ERR_INVALID_METHODID;
3366 }
3367 if (m->IsStatic()) {
3368 if (m->GetDeclaringClass() != c) {
3369 return JDWP::ERR_INVALID_METHODID;
3370 }
3371 } else {
3372 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3373 return JDWP::ERR_INVALID_METHODID;
3374 }
3375 }
3376
3377 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003378 uint32_t shorty_len = 0;
3379 const char* shorty = m->GetShorty(&shorty_len);
3380 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003381 return JDWP::ERR_ILLEGAL_ARGUMENT;
3382 }
Elliott Hughes09201632013-04-15 15:50:07 -07003383
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003384 {
3385 StackHandleScope<3> hs(soa.Self());
3386 MethodHelper mh(hs.NewHandle(m));
3387 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3388 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3389 const DexFile::TypeList* types = m->GetParameterTypeList();
3390 for (size_t i = 0; i < arg_count; ++i) {
3391 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003392 return JDWP::ERR_ILLEGAL_ARGUMENT;
3393 }
3394
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003395 if (shorty[i + 1] == 'L') {
3396 // Did we really get an argument of an appropriate reference type?
3397 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
3398 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i]);
3399 if (argument == ObjectRegistry::kInvalidObject) {
3400 return JDWP::ERR_INVALID_OBJECT;
3401 }
3402 if (argument != NULL && !argument->InstanceOf(parameter_type)) {
3403 return JDWP::ERR_ILLEGAL_ARGUMENT;
3404 }
3405
3406 // Turn the on-the-wire ObjectId into a jobject.
3407 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3408 v.l = gRegistry->GetJObject(arg_values[i]);
3409 }
Elliott Hughes09201632013-04-15 15:50:07 -07003410 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003411 // Update in case it moved.
3412 m = mh.GetMethod();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003413 }
3414
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003415 req->receiver = receiver;
3416 req->thread = thread;
3417 req->klass = c;
3418 req->method = m;
3419 req->arg_count = arg_count;
3420 req->arg_values = arg_values;
3421 req->options = options;
3422 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003423 }
3424
3425 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3426 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3427 // call, and it's unwise to hold it during WaitForSuspend.
3428
3429 {
3430 /*
3431 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003432 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003433 * run out of memory. It's also a good idea to change it before locking
3434 * the invokeReq mutex, although that should never be held for long.
3435 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003436 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003437
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003438 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003439 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003440 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003441
3442 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003443 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003444 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003445 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003446 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003447 thread_list->Resume(targetThread, true);
3448 }
3449
3450 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003451 while (req->invoke_needed) {
3452 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003453 }
3454 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003455 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003456
3457 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003458 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003459 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003460 }
3461
3462 /*
3463 * Suspend the threads. We waited for the target thread to suspend
3464 * itself, so all we need to do is suspend the others.
3465 *
3466 * The suspendAllThreads() call will double-suspend the event thread,
3467 * so we want to resume the target thread once to keep the books straight.
3468 */
3469 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003470 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003471 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003472 thread_list->SuspendAllForDebugger();
3473 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003474 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003475 thread_list->Resume(targetThread, true);
3476 }
3477
3478 // Copy the result.
3479 *pResultTag = req->result_tag;
3480 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003481 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003482 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003483 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003484 }
3485 *pExceptionId = req->exception;
3486 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003487}
3488
3489void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003490 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003491
Elliott Hughes81ff3182012-03-23 20:35:56 -07003492 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003493 // to preserve that across the method invocation.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003494 StackHandleScope<4> hs(soa.Self());
3495 auto old_throw_this_object = hs.NewHandle<mirror::Object>(nullptr);
3496 auto old_throw_method = hs.NewHandle<mirror::ArtMethod>(nullptr);
3497 auto old_exception = hs.NewHandle<mirror::Throwable>(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003498 uint32_t old_throw_dex_pc;
3499 {
3500 ThrowLocation old_throw_location;
3501 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003502 old_throw_this_object.Assign(old_throw_location.GetThis());
3503 old_throw_method.Assign(old_throw_location.GetMethod());
3504 old_exception.Assign(old_exception_obj);
Ian Rogers62d6c772013-02-27 08:32:07 -08003505 old_throw_dex_pc = old_throw_location.GetDexPc();
3506 soa.Self()->ClearException();
3507 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003508
3509 // Translate the method through the vtable, unless the debugger wants to suppress it.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003510 Handle<mirror::ArtMethod> m(hs.NewHandle(pReq->method));
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003511 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != NULL) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003512 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.Get());
3513 if (actual_method != m.Get()) {
3514 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get()) << " to " << PrettyMethod(actual_method);
3515 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003516 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003517 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003518 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003519 << " receiver=" << pReq->receiver
3520 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003521 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003522
3523 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3524
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003525 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.Get()),
Ian Rogers53b8b092014-03-13 23:45:53 -07003526 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003527
Ian Rogers62d6c772013-02-27 08:32:07 -08003528 mirror::Throwable* exception = soa.Self()->GetException(NULL);
3529 soa.Self()->ClearException();
3530 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003531 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003532 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003533 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3534 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003535 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003536 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3537 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003538 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003539 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003540 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003541 pReq->result_tag = new_tag;
3542 }
3543
3544 /*
3545 * Register the object. We don't actually need an ObjectId yet,
3546 * but we do need to be sure that the GC won't move or discard the
3547 * object when we switch out of RUNNING. The ObjectId conversion
3548 * will add the object to the "do not touch" list.
3549 *
3550 * We can't use the "tracked allocation" mechanism here because
3551 * the object is going to be handed off to a different thread.
3552 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003553 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003554 }
3555
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003556 if (old_exception.Get() != NULL) {
3557 ThrowLocation gc_safe_throw_location(old_throw_this_object.Get(), old_throw_method.Get(),
Ian Rogers62d6c772013-02-27 08:32:07 -08003558 old_throw_dex_pc);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003559 soa.Self()->SetException(gc_safe_throw_location, old_exception.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003560 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003561}
3562
Elliott Hughesd07986f2011-12-06 18:27:45 -08003563/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003564 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003565 * need to process each, accumulate the replies, and ship the whole thing
3566 * back.
3567 *
3568 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3569 * and includes the chunk type/length, followed by the data.
3570 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003571 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003572 * chunk. If this becomes inconvenient we will need to adapt.
3573 */
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003574bool Dbg::DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003575 Thread* self = Thread::Current();
3576 JNIEnv* env = self->GetJniEnv();
3577
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003578 uint32_t type = request.ReadUnsigned32("type");
3579 uint32_t length = request.ReadUnsigned32("length");
3580
3581 // Create a byte[] corresponding to 'request'.
3582 size_t request_length = request.size();
3583 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003584 if (dataArray.get() == NULL) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003585 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003586 env->ExceptionClear();
3587 return false;
3588 }
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003589 env->SetByteArrayRegion(dataArray.get(), 0, request_length, reinterpret_cast<const jbyte*>(request.data()));
3590 request.Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003591
3592 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003593 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003594 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003595 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003596 return false;
3597 }
3598
3599 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003600 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3601 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003602 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003603 if (env->ExceptionCheck()) {
3604 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3605 env->ExceptionDescribe();
3606 env->ExceptionClear();
3607 return false;
3608 }
3609
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003610 if (chunk.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003611 return false;
3612 }
3613
3614 /*
3615 * Pull the pieces out of the chunk. We copy the results into a
3616 * newly-allocated buffer that the caller can free. We don't want to
3617 * continue using the Chunk object because nothing has a reference to it.
3618 *
3619 * We could avoid this by returning type/data/offset/length and having
3620 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003621 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003622 * if we have responses for multiple chunks.
3623 *
3624 * So we're pretty much stuck with copying data around multiple times.
3625 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003626 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 -08003627 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003628 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003629 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003630
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003631 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 -07003632 if (length == 0 || replyData.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003633 return false;
3634 }
3635
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003636 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003637 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
3638 if (reply == NULL) {
3639 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3640 return false;
3641 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003642 JDWP::Set4BE(reply + 0, type);
3643 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003644 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003645
3646 *pReplyBuf = reply;
3647 *pReplyLen = length + kChunkHdrLen;
3648
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003649 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003650 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003651}
3652
Elliott Hughesa2155262011-11-16 16:26:58 -08003653void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003654 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003655
3656 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003657 if (self->GetState() != kRunnable) {
3658 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3659 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003660 }
3661
3662 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003663 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003664 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3665 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3666 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003667 if (env->ExceptionCheck()) {
3668 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3669 env->ExceptionDescribe();
3670 env->ExceptionClear();
3671 }
3672}
3673
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003674void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003675 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003676}
3677
3678void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003679 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003680 gDdmThreadNotification = false;
3681}
3682
3683/*
Elliott Hughes82188472011-11-07 18:11:48 -08003684 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003685 *
3686 * Because we broadcast the full set of threads when the notifications are
3687 * first enabled, it's possible for "thread" to be actively executing.
3688 */
Elliott Hughes82188472011-11-07 18:11:48 -08003689void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003690 if (!gDdmThreadNotification) {
3691 return;
3692 }
3693
Elliott Hughes82188472011-11-07 18:11:48 -08003694 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003695 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003696 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003697 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003698 } else {
3699 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003700 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003701 StackHandleScope<1> hs(soa.Self());
3702 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
3703 size_t char_count = (name.Get() != NULL) ? name->GetLength() : 0;
3704 const jchar* chars = (name.Get() != NULL) ? name->GetCharArray()->GetData() : NULL;
Elliott Hughes82188472011-11-07 18:11:48 -08003705
Elliott Hughes21f32d72011-11-09 17:44:13 -08003706 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003707 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003708 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003709 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3710 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003711 }
3712}
3713
Elliott Hughes47fce012011-10-25 18:37:19 -07003714void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003715 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003716 gDdmThreadNotification = enable;
3717 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003718 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3719 // see a suspension in progress and block until that ends. They then post their own start
3720 // notification.
3721 SuspendVM();
3722 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003723 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003724 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003725 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003726 threads = Runtime::Current()->GetThreadList()->GetList();
3727 }
3728 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003729 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003730 for (Thread* thread : threads) {
3731 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003732 }
3733 }
3734 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003735 }
3736}
3737
Elliott Hughesa2155262011-11-16 16:26:58 -08003738void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003739 if (IsDebuggerActive()) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07003740 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08003741 JDWP::ObjectId id = gRegistry->Add(t->GetPeer());
Elliott Hughes82188472011-11-07 18:11:48 -08003742 gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003743 }
Elliott Hughes82188472011-11-07 18:11:48 -08003744 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003745}
3746
3747void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003748 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003749}
3750
3751void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003752 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003753}
3754
Elliott Hughes82188472011-11-07 18:11:48 -08003755void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003756 CHECK(buf != NULL);
3757 iovec vec[1];
3758 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3759 vec[0].iov_len = byte_count;
3760 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003761}
3762
Elliott Hughes21f32d72011-11-09 17:44:13 -08003763void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3764 DdmSendChunk(type, bytes.size(), &bytes[0]);
3765}
3766
Brian Carlstromf5293522013-07-19 00:24:00 -07003767void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003768 if (gJdwpState == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003769 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003770 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003771 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003772 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003773}
3774
Elliott Hughes767a1472011-10-26 18:49:02 -07003775int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3776 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003777 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003778 return true;
3779 }
3780
3781 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
3782 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
3783 return false;
3784 }
3785
3786 gDdmHpifWhen = when;
3787 return true;
3788}
3789
3790bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
3791 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
3792 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
3793 return false;
3794 }
3795
3796 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
3797 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
3798 return false;
3799 }
3800
3801 if (native) {
3802 gDdmNhsgWhen = when;
3803 gDdmNhsgWhat = what;
3804 } else {
3805 gDdmHpsgWhen = when;
3806 gDdmHpsgWhat = what;
3807 }
3808 return true;
3809}
3810
Elliott Hughes7162ad92011-10-27 14:08:42 -07003811void Dbg::DdmSendHeapInfo(HpifWhen reason) {
3812 // If there's a one-shot 'when', reset it.
3813 if (reason == gDdmHpifWhen) {
3814 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
3815 gDdmHpifWhen = HPIF_WHEN_NEVER;
3816 }
3817 }
3818
3819 /*
3820 * Chunk HPIF (client --> server)
3821 *
3822 * Heap Info. General information about the heap,
3823 * suitable for a summary display.
3824 *
3825 * [u4]: number of heaps
3826 *
3827 * For each heap:
3828 * [u4]: heap ID
3829 * [u8]: timestamp in ms since Unix epoch
3830 * [u1]: capture reason (same as 'when' value from server)
3831 * [u4]: max heap size in bytes (-Xmx)
3832 * [u4]: current heap size in bytes
3833 * [u4]: current number of bytes allocated
3834 * [u4]: current number of objects allocated
3835 */
3836 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07003837 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08003838 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08003839 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003840 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08003841 JDWP::Append8BE(bytes, MilliTime());
3842 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003843 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
3844 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003845 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
3846 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08003847 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
3848 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07003849}
3850
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003851enum HpsgSolidity {
3852 SOLIDITY_FREE = 0,
3853 SOLIDITY_HARD = 1,
3854 SOLIDITY_SOFT = 2,
3855 SOLIDITY_WEAK = 3,
3856 SOLIDITY_PHANTOM = 4,
3857 SOLIDITY_FINALIZABLE = 5,
3858 SOLIDITY_SWEEP = 6,
3859};
3860
3861enum HpsgKind {
3862 KIND_OBJECT = 0,
3863 KIND_CLASS_OBJECT = 1,
3864 KIND_ARRAY_1 = 2,
3865 KIND_ARRAY_2 = 3,
3866 KIND_ARRAY_4 = 4,
3867 KIND_ARRAY_8 = 5,
3868 KIND_UNKNOWN = 6,
3869 KIND_NATIVE = 7,
3870};
3871
3872#define HPSG_PARTIAL (1<<7)
3873#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
3874
Ian Rogers30fab402012-01-23 15:43:46 -08003875class HeapChunkContext {
3876 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003877 // Maximum chunk size. Obtain this from the formula:
3878 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
3879 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08003880 : buf_(16384 - 16),
3881 type_(0),
3882 merge_(merge) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003883 Reset();
3884 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08003885 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003886 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08003887 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003888 }
3889 }
3890
3891 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08003892 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003893 Flush();
3894 }
3895 }
3896
3897 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08003898 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003899 return;
3900 }
3901
3902 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003903 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
3904 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003905
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003906 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
3907 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003908 // [u4]: length of piece, in allocation units
3909 // 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 -08003910 pieceLenField_ = p_;
3911 JDWP::Write4BE(&p_, 0x55555555);
3912 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003913 }
3914
Ian Rogersb726dcb2012-09-05 08:57:23 -07003915 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd636b062013-01-18 17:51:18 -08003916 if (pieceLenField_ == NULL) {
3917 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
3918 CHECK(needHeader_);
3919 return;
3920 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003921 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08003922 CHECK_LE(&buf_[0], pieceLenField_);
3923 CHECK_LE(pieceLenField_, p_);
3924 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003925
Ian Rogers30fab402012-01-23 15:43:46 -08003926 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003927 Reset();
3928 }
3929
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003930 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003931 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3932 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003933 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08003934 }
3935
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003936 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08003937 enum { ALLOCATION_UNIT_SIZE = 8 };
3938
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003939 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08003940 p_ = &buf_[0];
Ian Rogers15bf2d32012-08-28 17:33:04 -07003941 startOfNextMemoryChunk_ = NULL;
Ian Rogers30fab402012-01-23 15:43:46 -08003942 totalAllocationUnits_ = 0;
3943 needHeader_ = true;
3944 pieceLenField_ = NULL;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003945 }
3946
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003947 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003948 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3949 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003950 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
3951 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07003952 if (used_bytes == 0) {
3953 if (start == NULL) {
3954 // Reset for start of new heap.
3955 startOfNextMemoryChunk_ = NULL;
3956 Flush();
3957 }
3958 // Only process in use memory so that free region information
3959 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08003960 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08003961 }
3962
Ian Rogers15bf2d32012-08-28 17:33:04 -07003963 /* If we're looking at the native heap, we'll just return
3964 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
3965 */
3966 bool native = type_ == CHUNK_TYPE("NHSG");
3967
3968 if (startOfNextMemoryChunk_ != NULL) {
3969 // Transmit any pending free memory. Native free memory of
3970 // over kMaxFreeLen could be because of the use of mmaps, so
3971 // don't report. If not free memory then start a new segment.
3972 bool flush = true;
3973 if (start > startOfNextMemoryChunk_) {
3974 const size_t kMaxFreeLen = 2 * kPageSize;
3975 void* freeStart = startOfNextMemoryChunk_;
3976 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07003977 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07003978 if (!native || freeLen < kMaxFreeLen) {
3979 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
3980 flush = false;
3981 }
3982 }
3983 if (flush) {
3984 startOfNextMemoryChunk_ = NULL;
3985 Flush();
3986 }
3987 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08003988 mirror::Object* obj = reinterpret_cast<mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08003989
3990 // Determine the type of this chunk.
3991 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
3992 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003993 uint8_t state = ExamineObject(obj, native);
3994 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
3995 // allocation then the first sizeof(size_t) may belong to it.
3996 const size_t dlMallocOverhead = sizeof(size_t);
3997 AppendChunk(state, start, used_bytes + dlMallocOverhead);
Brian Carlstrom2d888622013-07-18 17:02:00 -07003998 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + dlMallocOverhead;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003999 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004000
Ian Rogers15bf2d32012-08-28 17:33:04 -07004001 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004002 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004003 // Make sure there's enough room left in the buffer.
4004 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4005 // 17 bytes for any header.
4006 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
4007 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4008 if (bytesLeft < needed) {
4009 Flush();
4010 }
4011
4012 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4013 if (bytesLeft < needed) {
4014 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4015 << needed << " bytes)";
4016 return;
4017 }
4018 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004019 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004020 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4021 totalAllocationUnits_ += length;
4022 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004023 *p_++ = state | HPSG_PARTIAL;
4024 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004025 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004026 }
Ian Rogers30fab402012-01-23 15:43:46 -08004027 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004028 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004029 }
4030
Ian Rogersef7d42f2014-01-06 12:55:46 -08004031 uint8_t ExamineObject(mirror::Object* o, bool is_native_heap)
4032 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004033 if (o == NULL) {
4034 return HPSG_STATE(SOLIDITY_FREE, 0);
4035 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004036
Elliott Hughesa2155262011-11-16 16:26:58 -08004037 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004038
Elliott Hughesa2155262011-11-16 16:26:58 -08004039 // If we're looking at the native heap, we'll just return
4040 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004041 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004042 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4043 }
4044
Ian Rogers5bfa60f2012-09-02 21:17:56 -07004045 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004046 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004047 }
4048
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004049 mirror::Class* c = o->GetClass();
Elliott Hughesa2155262011-11-16 16:26:58 -08004050 if (c == NULL) {
4051 // The object was probably just created but hasn't been initialized yet.
4052 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4053 }
4054
Mathieu Chartier590fee92013-09-13 13:46:47 -07004055 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004056 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004057 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4058 }
4059
4060 if (c->IsClassClass()) {
4061 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4062 }
4063
4064 if (c->IsArrayClass()) {
4065 if (o->IsObjectArray()) {
4066 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4067 }
4068 switch (c->GetComponentSize()) {
4069 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4070 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4071 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4072 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4073 }
4074 }
4075
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004076 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4077 }
4078
Ian Rogers30fab402012-01-23 15:43:46 -08004079 std::vector<uint8_t> buf_;
4080 uint8_t* p_;
4081 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004082 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004083 size_t totalAllocationUnits_;
4084 uint32_t type_;
4085 bool merge_;
4086 bool needHeader_;
4087
Elliott Hughesa2155262011-11-16 16:26:58 -08004088 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4089};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004090
4091void Dbg::DdmSendHeapSegments(bool native) {
4092 Dbg::HpsgWhen when;
4093 Dbg::HpsgWhat what;
4094 if (!native) {
4095 when = gDdmHpsgWhen;
4096 what = gDdmHpsgWhat;
4097 } else {
4098 when = gDdmNhsgWhen;
4099 what = gDdmNhsgWhat;
4100 }
4101 if (when == HPSG_WHEN_NEVER) {
4102 return;
4103 }
4104
4105 // Figure out what kind of chunks we'll be sending.
4106 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
4107
4108 // First, send a heap start chunk.
4109 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004110 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004111 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
4112
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004113 Thread* self = Thread::Current();
4114
4115 // To allow the Walk/InspectAll() below to exclusively-lock the
4116 // mutator lock, temporarily release the shared access to the
4117 // mutator lock here by transitioning to the suspended state.
4118 Locks::mutator_lock_->AssertSharedHeld(self);
4119 self->TransitionFromRunnableToSuspended(kSuspended);
4120
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004121 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08004122 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
4123 if (native) {
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004124#ifdef USE_DLMALLOC
Ian Rogers1d54e732013-05-02 21:10:01 -07004125 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004126#else
4127 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4128#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004129 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004130 gc::Heap* heap = Runtime::Current()->GetHeap();
4131 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers1d54e732013-05-02 21:10:01 -07004132 typedef std::vector<gc::space::ContinuousSpace*>::const_iterator It;
4133 for (It cur = spaces.begin(), end = spaces.end(); cur != end; ++cur) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004134 if ((*cur)->IsMallocSpace()) {
4135 (*cur)->AsMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004136 }
4137 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004138 // Walk the large objects, these are not in the AllocSpace.
4139 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004140 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004141
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004142 // Shared-lock the mutator lock back.
4143 self->TransitionFromSuspendedToRunnable();
4144 Locks::mutator_lock_->AssertSharedHeld(self);
4145
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004146 // Finally, send a heap end chunk.
4147 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004148}
4149
Elliott Hughesb1a58792013-07-11 18:10:58 -07004150static size_t GetAllocTrackerMax() {
4151#ifdef HAVE_ANDROID_OS
4152 // Check whether there's a system property overriding the number of records.
4153 const char* propertyName = "dalvik.vm.allocTrackerMax";
4154 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4155 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4156 char* end;
4157 size_t value = strtoul(allocRecordMaxString, &end, 10);
4158 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004159 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4160 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004161 return kDefaultNumAllocRecords;
4162 }
4163 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004164 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4165 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004166 return kDefaultNumAllocRecords;
4167 }
4168 return value;
4169 }
4170#endif
4171 return kDefaultNumAllocRecords;
4172}
4173
Elliott Hughes545a0642011-11-08 19:10:03 -08004174void Dbg::SetAllocTrackingEnabled(bool enabled) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004175 if (enabled) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004176 {
4177 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
4178 if (recent_allocation_records_ == NULL) {
4179 alloc_record_max_ = GetAllocTrackerMax();
4180 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4181 << kMaxAllocRecordStackDepth << " frames, taking "
4182 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4183 alloc_record_head_ = alloc_record_count_ = 0;
4184 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4185 CHECK(recent_allocation_records_ != NULL);
4186 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004187 }
Ian Rogersfa824272013-11-05 16:12:57 -08004188 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004189 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08004190 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004191 {
4192 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
4193 delete[] recent_allocation_records_;
4194 recent_allocation_records_ = NULL;
4195 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004196 }
4197}
4198
Ian Rogers0399dde2012-06-06 17:09:28 -07004199struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08004200 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004201 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08004202 : StackVisitor(thread, NULL), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004203
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004204 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4205 // annotalysis.
4206 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004207 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004208 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004209 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004210 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004211 if (!m->IsRuntimeMethod()) {
4212 record->stack[depth].method = m;
4213 record->stack[depth].dex_pc = GetDexPc();
Elliott Hughes530fa002012-03-12 11:44:49 -07004214 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004215 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004216 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004217 }
4218
4219 ~AllocRecordStackVisitor() {
4220 // Clear out any unused stack trace elements.
4221 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
4222 record->stack[depth].method = NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -07004223 record->stack[depth].dex_pc = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004224 }
4225 }
4226
4227 AllocRecord* record;
4228 size_t depth;
4229};
4230
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004231void Dbg::RecordAllocation(mirror::Class* type, size_t byte_count) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004232 Thread* self = Thread::Current();
4233 CHECK(self != NULL);
4234
Ian Rogers719d1a32014-03-06 12:13:39 -08004235 MutexLock mu(self, *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08004236 if (recent_allocation_records_ == NULL) {
4237 return;
4238 }
4239
4240 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004241 if (++alloc_record_head_ == alloc_record_max_) {
4242 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004243 }
4244
4245 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004246 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Elliott Hughes545a0642011-11-08 19:10:03 -08004247 record->type = type;
4248 record->byte_count = byte_count;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004249 record->thin_lock_id = self->GetThreadId();
Elliott Hughes545a0642011-11-08 19:10:03 -08004250
4251 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004252 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004253 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004254
Ian Rogers719d1a32014-03-06 12:13:39 -08004255 if (alloc_record_count_ < alloc_record_max_) {
4256 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004257 }
4258}
4259
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004260// Returns the index of the head element.
4261//
4262// We point at the most-recently-written record, so if gAllocRecordCount is 1
4263// we want to use the current element. Take "head+1" and subtract count
4264// from it.
4265//
4266// We need to handle underflow in our circular buffer, so we add
Elliott Hughesb1a58792013-07-11 18:10:58 -07004267// gAllocRecordMax and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004268size_t Dbg::HeadIndex() {
4269 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4270 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004271}
4272
4273void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004274 ScopedObjectAccess soa(Thread::Current());
Ian Rogers719d1a32014-03-06 12:13:39 -08004275 MutexLock mu(soa.Self(), *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08004276 if (recent_allocation_records_ == NULL) {
4277 LOG(INFO) << "Not recording tracked allocations";
4278 return;
4279 }
4280
4281 // "i" is the head of the list. We want to start at the end of the
4282 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004283 size_t i = HeadIndex();
Ian Rogers719d1a32014-03-06 12:13:39 -08004284 size_t count = alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004285
Ian Rogers719d1a32014-03-06 12:13:39 -08004286 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004287 while (count--) {
4288 AllocRecord* record = &recent_allocation_records_[i];
4289
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004290 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->thin_lock_id, record->byte_count)
Elliott Hughes545a0642011-11-08 19:10:03 -08004291 << PrettyClass(record->type);
4292
4293 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08004294 mirror::ArtMethod* m = record->stack[stack_frame].method;
Elliott Hughes545a0642011-11-08 19:10:03 -08004295 if (m == NULL) {
4296 break;
4297 }
4298 LOG(INFO) << " " << PrettyMethod(m) << " line " << record->stack[stack_frame].LineNumber();
4299 }
4300
4301 // pause periodically to help logcat catch up
4302 if ((count % 5) == 0) {
4303 usleep(40000);
4304 }
4305
Ian Rogers719d1a32014-03-06 12:13:39 -08004306 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004307 }
4308}
4309
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -07004310void Dbg::UpdateObjectPointers(IsMarkedCallback* callback, void* arg) {
Ian Rogers719d1a32014-03-06 12:13:39 -08004311 if (recent_allocation_records_ != nullptr) {
4312 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
4313 size_t i = HeadIndex();
4314 size_t count = alloc_record_count_;
4315 while (count--) {
4316 AllocRecord* record = &recent_allocation_records_[i];
4317 DCHECK(record != nullptr);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -07004318 record->UpdateObjectPointers(callback, arg);
Ian Rogers719d1a32014-03-06 12:13:39 -08004319 i = (i + 1) & (alloc_record_max_ - 1);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08004320 }
4321 }
4322 if (gRegistry != nullptr) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -07004323 gRegistry->UpdateObjectPointers(callback, arg);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08004324 }
4325}
4326
4327void Dbg::AllowNewObjectRegistryObjects() {
4328 if (gRegistry != nullptr) {
4329 gRegistry->AllowNewObjects();
4330 }
4331}
4332
4333void Dbg::DisallowNewObjectRegistryObjects() {
4334 if (gRegistry != nullptr) {
4335 gRegistry->DisallowNewObjects();
4336 }
4337}
4338
Elliott Hughes545a0642011-11-08 19:10:03 -08004339class StringTable {
4340 public:
4341 StringTable() {
4342 }
4343
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004344 void Add(const char* s) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004345 table_.insert(s);
4346 }
4347
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004348 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004349 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004350 if (it == table_.end()) {
4351 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4352 }
4353 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004354 }
4355
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004356 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004357 return table_.size();
4358 }
4359
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004360 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004361 for (const std::string& str : table_) {
4362 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004363 size_t s_len = CountModifiedUtf8Chars(s);
Ian Rogers700a4022014-05-19 16:49:03 -07004364 std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004365 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4366 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004367 }
4368 }
4369
4370 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004371 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004372 DISALLOW_COPY_AND_ASSIGN(StringTable);
4373};
4374
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004375static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004376 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004377 DCHECK(method != nullptr);
4378 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004379 return (source_file != nullptr) ? source_file : "";
4380}
4381
Elliott Hughes545a0642011-11-08 19:10:03 -08004382/*
4383 * The data we send to DDMS contains everything we have recorded.
4384 *
4385 * Message header (all values big-endian):
4386 * (1b) message header len (to allow future expansion); includes itself
4387 * (1b) entry header len
4388 * (1b) stack frame len
4389 * (2b) number of entries
4390 * (4b) offset to string table from start of message
4391 * (2b) number of class name strings
4392 * (2b) number of method name strings
4393 * (2b) number of source file name strings
4394 * For each entry:
4395 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004396 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004397 * (2b) allocated object's class name index
4398 * (1b) stack depth
4399 * For each stack frame:
4400 * (2b) method's class name
4401 * (2b) method name
4402 * (2b) method source file
4403 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4404 * (xb) class name strings
4405 * (xb) method name strings
4406 * (xb) source file strings
4407 *
4408 * As with other DDM traffic, strings are sent as a 4-byte length
4409 * followed by UTF-16 data.
4410 *
4411 * We send up 16-bit unsigned indexes into string tables. In theory there
Elliott Hughesb1a58792013-07-11 18:10:58 -07004412 * can be (kMaxAllocRecordStackDepth * gAllocRecordMax) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004413 * each table, but in practice there should be far fewer.
4414 *
4415 * The chief reason for using a string table here is to keep the size of
4416 * the DDMS message to a minimum. This is partly to make the protocol
4417 * efficient, but also because we have to form the whole thing up all at
4418 * once in a memory buffer.
4419 *
4420 * We use separate string tables for class names, method names, and source
4421 * files to keep the indexes small. There will generally be no overlap
4422 * between the contents of these tables.
4423 */
4424jbyteArray Dbg::GetRecentAllocations() {
4425 if (false) {
4426 DumpRecentAllocations();
4427 }
4428
Ian Rogers50b35e22012-10-04 10:09:15 -07004429 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004430 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004431 {
Ian Rogers719d1a32014-03-06 12:13:39 -08004432 MutexLock mu(self, *alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004433 //
4434 // Part 1: generate string tables.
4435 //
4436 StringTable class_names;
4437 StringTable method_names;
4438 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004439
Ian Rogers719d1a32014-03-06 12:13:39 -08004440 int count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004441 int idx = HeadIndex();
4442 while (count--) {
4443 AllocRecord* record = &recent_allocation_records_[idx];
Elliott Hughes545a0642011-11-08 19:10:03 -08004444
Mathieu Chartierf8322842014-05-16 10:59:25 -07004445 class_names.Add(record->type->GetDescriptor().c_str());
Elliott Hughes545a0642011-11-08 19:10:03 -08004446
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004447 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07004448 mirror::ArtMethod* m = record->stack[i].method;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004449 if (m != NULL) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004450 class_names.Add(m->GetDeclaringClassDescriptor());
4451 method_names.Add(m->GetName());
4452 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004453 }
4454 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004455
Ian Rogers719d1a32014-03-06 12:13:39 -08004456 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004457 }
4458
Ian Rogers719d1a32014-03-06 12:13:39 -08004459 LOG(INFO) << "allocation records: " << alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004460
4461 //
4462 // Part 2: Generate the output and store it in the buffer.
4463 //
4464
4465 // (1b) message header len (to allow future expansion); includes itself
4466 // (1b) entry header len
4467 // (1b) stack frame len
4468 const int kMessageHeaderLen = 15;
4469 const int kEntryHeaderLen = 9;
4470 const int kStackFrameLen = 8;
4471 JDWP::Append1BE(bytes, kMessageHeaderLen);
4472 JDWP::Append1BE(bytes, kEntryHeaderLen);
4473 JDWP::Append1BE(bytes, kStackFrameLen);
4474
4475 // (2b) number of entries
4476 // (4b) offset to string table from start of message
4477 // (2b) number of class name strings
4478 // (2b) number of method name strings
4479 // (2b) number of source file name strings
Ian Rogers719d1a32014-03-06 12:13:39 -08004480 JDWP::Append2BE(bytes, alloc_record_count_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004481 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004482 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004483 JDWP::Append2BE(bytes, class_names.Size());
4484 JDWP::Append2BE(bytes, method_names.Size());
4485 JDWP::Append2BE(bytes, filenames.Size());
4486
Ian Rogers719d1a32014-03-06 12:13:39 -08004487 count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004488 idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004489 while (count--) {
4490 // For each entry:
4491 // (4b) total allocation size
4492 // (2b) thread id
4493 // (2b) allocated object's class name index
4494 // (1b) stack depth
4495 AllocRecord* record = &recent_allocation_records_[idx];
4496 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004497 size_t allocated_object_class_name_index =
4498 class_names.IndexOf(record->type->GetDescriptor().c_str());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004499 JDWP::Append4BE(bytes, record->byte_count);
4500 JDWP::Append2BE(bytes, record->thin_lock_id);
4501 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4502 JDWP::Append1BE(bytes, stack_depth);
4503
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004504 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4505 // For each stack frame:
4506 // (2b) method's class name
4507 // (2b) method name
4508 // (2b) method source file
4509 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004510 mirror::ArtMethod* m = record->stack[stack_frame].method;
4511 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4512 size_t method_name_index = method_names.IndexOf(m->GetName());
4513 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004514 JDWP::Append2BE(bytes, class_name_index);
4515 JDWP::Append2BE(bytes, method_name_index);
4516 JDWP::Append2BE(bytes, file_name_index);
4517 JDWP::Append2BE(bytes, record->stack[stack_frame].LineNumber());
4518 }
4519
Ian Rogers719d1a32014-03-06 12:13:39 -08004520 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004521 }
4522
4523 // (xb) class name strings
4524 // (xb) method name strings
4525 // (xb) source file strings
4526 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4527 class_names.WriteTo(bytes);
4528 method_names.WriteTo(bytes);
4529 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004530 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004531 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004532 jbyteArray result = env->NewByteArray(bytes.size());
4533 if (result != NULL) {
4534 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4535 }
4536 return result;
4537}
4538
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004539} // namespace art