blob: 11415b49e0fa3b253fc7b2cee7ea69e22287f360 [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
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070065class AllocRecordStackTraceElement {
66 public:
67 AllocRecordStackTraceElement() : method_(nullptr), dex_pc_(0) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080068 }
69
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070070 int32_t LineNumber() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
71 mirror::ArtMethod* method = Method();
72 DCHECK(method != nullptr);
73 return method->GetLineNumFromDexPC(DexPc());
Elliott Hughes545a0642011-11-08 19:10:03 -080074 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070075
76 mirror::ArtMethod* Method() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -070077 ScopedObjectAccessUnchecked soa(Thread::Current());
78 return soa.DecodeMethod(method_);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070079 }
80
81 void SetMethod(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
82 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4345c462014-06-27 10:20:14 -070083 method_ = soa.EncodeMethod(m);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070084 }
85
86 uint32_t DexPc() const {
87 return dex_pc_;
88 }
89
90 void SetDexPc(uint32_t pc) {
91 dex_pc_ = pc;
92 }
93
94 private:
Mathieu Chartier4345c462014-06-27 10:20:14 -070095 jmethodID method_;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070096 uint32_t dex_pc_;
Elliott Hughes545a0642011-11-08 19:10:03 -080097};
98
Mathieu Chartier4345c462014-06-27 10:20:14 -070099jobject Dbg::TypeCache::Add(mirror::Class* t) {
100 ScopedObjectAccessUnchecked soa(Thread::Current());
101 int32_t hash_code = t->IdentityHashCode();
102 auto range = objects_.equal_range(hash_code);
103 for (auto it = range.first; it != range.second; ++it) {
104 if (soa.Decode<mirror::Class*>(it->second) == t) {
105 // Found a matching weak global, return it.
106 return it->second;
107 }
108 }
109 JNIEnv* env = soa.Env();
110 const jobject local_ref = soa.AddLocalReference<jobject>(t);
111 const jobject weak_global = env->NewWeakGlobalRef(local_ref);
112 env->DeleteLocalRef(local_ref);
113 objects_.insert(std::make_pair(hash_code, weak_global));
114 return weak_global;
115}
116
117void Dbg::TypeCache::Clear() {
118 ScopedObjectAccess soa(Thread::Current());
119 for (const auto& p : objects_) {
120 soa.Vm()->DeleteWeakGlobalRef(soa.Self(), p.second);
121 }
122 objects_.clear();
123}
124
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700125class AllocRecord {
126 public:
127 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -0800128
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700129 mirror::Class* Type() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700130 return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700131 }
132
133 void SetType(mirror::Class* t) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700134 type_ = Dbg::GetTypeCache().Add(t);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700135 }
136
137 size_t GetDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800138 size_t depth = 0;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700139 while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != NULL) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800140 ++depth;
141 }
142 return depth;
143 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800144
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700145 size_t ByteCount() const {
146 return byte_count_;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800147 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700148
149 void SetByteCount(size_t count) {
150 byte_count_ = count;
151 }
152
153 uint16_t ThinLockId() const {
154 return thin_lock_id_;
155 }
156
157 void SetThinLockId(uint16_t id) {
158 thin_lock_id_ = id;
159 }
160
161 AllocRecordStackTraceElement* StackElement(size_t index) {
162 DCHECK_LT(index, kMaxAllocRecordStackDepth);
163 return &stack_[index];
164 }
165
166 private:
167 jobject type_; // This is a weak global.
168 size_t byte_count_;
169 uint16_t thin_lock_id_;
170 AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth]; // Unused entries have NULL method.
Elliott Hughes545a0642011-11-08 19:10:03 -0800171};
172
Elliott Hughes86964332012-02-15 19:37:42 -0800173struct Breakpoint {
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100174 // The location of this breakpoint.
Brian Carlstromea46f952013-07-30 01:26:50 -0700175 mirror::ArtMethod* method;
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800176 uint32_t dex_pc;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100177
178 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
179 bool need_full_deoptimization;
180
181 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc, bool need_full_deoptimization)
182 : method(method), dex_pc(dex_pc), need_full_deoptimization(need_full_deoptimization) {}
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700183
184 void VisitRoots(RootCallback* callback, void* arg) {
185 if (method != nullptr) {
186 callback(reinterpret_cast<mirror::Object**>(&method), arg, 0, kRootDebugger);
187 }
188 }
Elliott Hughes86964332012-02-15 19:37:42 -0800189};
190
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700191static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700192 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes229feb72012-02-23 13:33:29 -0800193 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.method).c_str(), rhs.dex_pc);
Elliott Hughes86964332012-02-15 19:37:42 -0800194 return os;
195}
196
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200197class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800198 public:
199 DebugInstrumentationListener() {}
200 virtual ~DebugInstrumentationListener() {}
201
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200202 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
203 uint32_t dex_pc)
204 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800205 if (method->IsNative()) {
206 // TODO: post location events is a suspension point and native method entry stubs aren't.
207 return;
208 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100209 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800210 }
211
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200212 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
213 uint32_t dex_pc, const JValue& return_value)
214 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800215 if (method->IsNative()) {
216 // TODO: post location events is a suspension point and native method entry stubs aren't.
217 return;
218 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100219 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800220 }
221
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200222 void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
223 uint32_t dex_pc)
224 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800225 // We're not recorded to listen to this kind of event, so complain.
226 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100227 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800228 }
229
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200230 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
231 uint32_t new_dex_pc)
232 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz8379b222014-02-24 17:38:15 +0100233 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800234 }
235
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200236 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
237 uint32_t dex_pc, mirror::ArtField* field)
238 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
239 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800240 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200241
242 void FieldWritten(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
243 uint32_t dex_pc, mirror::ArtField* field, const JValue& field_value)
244 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
245 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
246 }
247
248 void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
249 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
250 mirror::Throwable* exception_object)
251 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
252 Dbg::PostException(throw_location, catch_method, catch_dex_pc, exception_object);
253 }
254
255 private:
256 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800257} gDebugInstrumentationListener;
258
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700259// JDWP is allowed unless the Zygote forbids it.
260static bool gJdwpAllowed = true;
261
Elliott Hughesc0f09332012-03-26 13:27:06 -0700262// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700263static bool gJdwpConfigured = false;
264
Elliott Hughesc0f09332012-03-26 13:27:06 -0700265// Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.)
Elliott Hughes376a7a02011-10-24 18:35:55 -0700266static JDWP::JdwpOptions gJdwpOptions;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700267
268// Runtime JDWP state.
269static JDWP::JdwpState* gJdwpState = NULL;
270static bool gDebuggerConnected; // debugger or DDMS is connected.
271static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800272static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700273
Elliott Hughes47fce012011-10-25 18:37:19 -0700274static bool gDdmThreadNotification = false;
275
Elliott Hughes767a1472011-10-26 18:49:02 -0700276// DDMS GC-related settings.
277static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
278static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
279static Dbg::HpsgWhat gDdmHpsgWhat;
280static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
281static Dbg::HpsgWhat gDdmNhsgWhat;
282
Ian Rogers719d1a32014-03-06 12:13:39 -0800283static ObjectRegistry* gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700284
Elliott Hughes545a0642011-11-08 19:10:03 -0800285// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800286Mutex* Dbg::alloc_tracker_lock_ = nullptr;
287AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
288size_t Dbg::alloc_record_max_ = 0;
289size_t Dbg::alloc_record_head_ = 0;
290size_t Dbg::alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -0700291Dbg::TypeCache Dbg::type_cache_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800292
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100293// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100294Mutex* Dbg::deoptimization_lock_ = nullptr;
295std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
296size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100297size_t Dbg::delayed_full_undeoptimization_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100298
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200299// Instrumentation event reference counters.
300size_t Dbg::dex_pc_change_event_ref_count_ = 0;
301size_t Dbg::method_enter_event_ref_count_ = 0;
302size_t Dbg::method_exit_event_ref_count_ = 0;
303size_t Dbg::field_read_event_ref_count_ = 0;
304size_t Dbg::field_write_event_ref_count_ = 0;
305size_t Dbg::exception_catch_event_ref_count_ = 0;
306uint32_t Dbg::instrumentation_events_ = 0;
307
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100308// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800309static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800310
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700311void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
312 RootType root_type) {
313 if (receiver != nullptr) {
314 callback(&receiver, arg, tid, root_type);
315 }
316 if (thread != nullptr) {
317 callback(&thread, arg, tid, root_type);
318 }
319 if (klass != nullptr) {
320 callback(reinterpret_cast<mirror::Object**>(&klass), arg, tid, root_type);
321 }
322 if (method != nullptr) {
323 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
324 }
325}
326
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200327void DebugInvokeReq::Clear() {
328 invoke_needed = false;
329 receiver = nullptr;
330 thread = nullptr;
331 klass = nullptr;
332 method = nullptr;
333}
334
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700335void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
336 RootType root_type) {
337 if (method != nullptr) {
338 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
339 }
340}
341
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200342bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
343 return dex_pcs.find(dex_pc) == dex_pcs.end();
344}
345
346void SingleStepControl::Clear() {
347 is_active = false;
348 method = nullptr;
349 dex_pcs.clear();
350}
351
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100352void DeoptimizationRequest::VisitRoots(RootCallback* callback, void* arg) {
353 if (method != nullptr) {
354 callback(reinterpret_cast<mirror::Object**>(&method), arg, 0, kRootDebugger);
355 }
356}
357
Brian Carlstromea46f952013-07-30 01:26:50 -0700358static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800359 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700360 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao09bfc6a2012-12-11 18:11:43 -0800361 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100362 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800363 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == dex_pc) {
Elliott Hughes86964332012-02-15 19:37:42 -0800364 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
365 return true;
366 }
367 }
368 return false;
369}
370
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100371static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
372 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800373 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
374 // A thread may be suspended for GC; in this code, we really want to know whether
375 // there's a debugger suspension active.
376 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
377}
378
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800379static mirror::Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700380 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800381 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800382 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800383 status = JDWP::ERR_INVALID_OBJECT;
384 return NULL;
385 }
386 if (!o->IsArrayInstance()) {
387 status = JDWP::ERR_INVALID_ARRAY;
388 return NULL;
389 }
390 status = JDWP::ERR_NONE;
391 return o->AsArray();
392}
393
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800394static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700395 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800396 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800397 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800398 status = JDWP::ERR_INVALID_OBJECT;
399 return NULL;
400 }
401 if (!o->IsClass()) {
402 status = JDWP::ERR_INVALID_CLASS;
403 return NULL;
404 }
405 status = JDWP::ERR_NONE;
406 return o->AsClass();
407}
408
Elliott Hughes221229c2013-01-08 18:17:50 -0800409static JDWP::JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thread*& thread)
jeffhaoa77f0f62012-12-05 17:19:31 -0800410 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700411 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
412 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800413 mirror::Object* thread_peer = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800414 if (thread_peer == NULL || thread_peer == ObjectRegistry::kInvalidObject) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800415 // This isn't even an object.
416 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes436e3722012-02-17 20:01:47 -0800417 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800418
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800419 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800420 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
421 // This isn't a thread.
422 return JDWP::ERR_INVALID_THREAD;
423 }
424
425 thread = Thread::FromManagedThread(soa, thread_peer);
426 if (thread == NULL) {
427 // This is a java.lang.Thread without a Thread*. Must be a zombie.
428 return JDWP::ERR_THREAD_NOT_ALIVE;
429 }
430 return JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800431}
432
Elliott Hughes24437992011-11-30 14:49:33 -0800433static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
434 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
435 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
436 return static_cast<JDWP::JdwpTag>(descriptor[0]);
437}
438
Ian Rogers98379392014-02-24 16:53:16 -0800439static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700440 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes86b00102011-12-05 17:54:26 -0800441 CHECK(c != NULL);
Elliott Hughes24437992011-11-30 14:49:33 -0800442 if (c->IsArrayClass()) {
443 return JDWP::JT_ARRAY;
444 }
Elliott Hughes24437992011-11-30 14:49:33 -0800445 if (c->IsStringClass()) {
446 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800447 }
Ian Rogers98379392014-02-24 16:53:16 -0800448 if (c->IsClassClass()) {
449 return JDWP::JT_CLASS_OBJECT;
450 }
451 {
452 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
453 if (thread_class->IsAssignableFrom(c)) {
454 return JDWP::JT_THREAD;
455 }
456 }
457 {
458 mirror::Class* thread_group_class =
459 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
460 if (thread_group_class->IsAssignableFrom(c)) {
461 return JDWP::JT_THREAD_GROUP;
462 }
463 }
464 {
465 mirror::Class* class_loader_class =
466 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
467 if (class_loader_class->IsAssignableFrom(c)) {
468 return JDWP::JT_CLASS_LOADER;
469 }
470 }
471 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800472}
473
474/*
475 * Objects declared to hold Object might actually hold a more specific
476 * type. The debugger may take a special interest in these (e.g. it
477 * wants to display the contents of Strings), so we want to return an
478 * appropriate tag.
479 *
480 * Null objects are tagged JT_OBJECT.
481 */
Ian Rogers98379392014-02-24 16:53:16 -0800482static JDWP::JdwpTag TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700483 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers98379392014-02-24 16:53:16 -0800484 return (o == NULL) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800485}
486
487static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
488 switch (tag) {
489 case JDWP::JT_BOOLEAN:
490 case JDWP::JT_BYTE:
491 case JDWP::JT_CHAR:
492 case JDWP::JT_FLOAT:
493 case JDWP::JT_DOUBLE:
494 case JDWP::JT_INT:
495 case JDWP::JT_LONG:
496 case JDWP::JT_SHORT:
497 case JDWP::JT_VOID:
498 return true;
499 default:
500 return false;
501 }
502}
503
Elliott Hughes3bb81562011-10-21 18:52:59 -0700504/*
505 * Handle one of the JDWP name/value pairs.
506 *
507 * JDWP options are:
508 * help: if specified, show help message and bail
509 * transport: may be dt_socket or dt_shmem
510 * address: for dt_socket, "host:port", or just "port" when listening
511 * server: if "y", wait for debugger to attach; if "n", attach to debugger
512 * timeout: how long to wait for debugger to connect / listen
513 *
514 * Useful with server=n (these aren't supported yet):
515 * onthrow=<exception-name>: connect to debugger when exception thrown
516 * onuncaught=y|n: connect to debugger when uncaught exception thrown
517 * launch=<command-line>: launch the debugger itself
518 *
519 * The "transport" option is required, as is "address" if server=n.
520 */
521static bool ParseJdwpOption(const std::string& name, const std::string& value) {
522 if (name == "transport") {
523 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700524 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700525 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700526 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700527 } else {
528 LOG(ERROR) << "JDWP transport not supported: " << value;
529 return false;
530 }
531 } else if (name == "server") {
532 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700533 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700534 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700535 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700536 } else {
537 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
538 return false;
539 }
540 } else if (name == "suspend") {
541 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700542 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700543 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700544 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700545 } else {
546 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
547 return false;
548 }
549 } else if (name == "address") {
550 /* this is either <port> or <host>:<port> */
551 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700552 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700553 std::string::size_type colon = value.find(':');
554 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700555 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700556 port_string = value.substr(colon + 1);
557 } else {
558 port_string = value;
559 }
560 if (port_string.empty()) {
561 LOG(ERROR) << "JDWP address missing port: " << value;
562 return false;
563 }
564 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800565 uint64_t port = strtoul(port_string.c_str(), &end, 10);
566 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700567 LOG(ERROR) << "JDWP address has junk in port field: " << value;
568 return false;
569 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700570 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700571 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
572 /* valid but unsupported */
573 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
574 } else {
575 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
576 }
577
578 return true;
579}
580
581/*
582 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
583 * "transport=dt_socket,address=8000,server=y,suspend=n"
584 */
585bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800586 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700587
Elliott Hughes3bb81562011-10-21 18:52:59 -0700588 std::vector<std::string> pairs;
589 Split(options, ',', pairs);
590
591 for (size_t i = 0; i < pairs.size(); ++i) {
592 std::string::size_type equals = pairs[i].find('=');
593 if (equals == std::string::npos) {
594 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
595 return false;
596 }
597 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
598 }
599
Elliott Hughes376a7a02011-10-24 18:35:55 -0700600 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700601 LOG(ERROR) << "Must specify JDWP transport: " << options;
602 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700603 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700604 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
605 return false;
606 }
607
608 gJdwpConfigured = true;
609 return true;
610}
611
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700612void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700613 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700614 // No JDWP for you!
615 return;
616 }
617
Ian Rogers719d1a32014-03-06 12:13:39 -0800618 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700619 gRegistry = new ObjectRegistry;
620
Ian Rogers719d1a32014-03-06 12:13:39 -0800621 alloc_tracker_lock_ = new Mutex("AllocTracker lock");
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100622 deoptimization_lock_ = new Mutex("deoptimization lock", kDeoptimizationLock);
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700623 // Init JDWP if the debugger is enabled. This may connect out to a
624 // debugger, passively listen for a debugger, or block waiting for a
625 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700626 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
627 if (gJdwpState == NULL) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800628 // We probably failed because some other process has the port already, which means that
629 // if we don't abort the user is likely to think they're talking to us when they're actually
630 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800631 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700632 }
633
634 // If a debugger has already attached, send the "welcome" message.
635 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700636 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700637 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes376a7a02011-10-24 18:35:55 -0700638 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800639 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700640 }
641 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700642}
643
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700644void Dbg::VisitRoots(RootCallback* callback, void* arg) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100645 {
646 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
647 for (Breakpoint& bp : gBreakpoints) {
648 bp.VisitRoots(callback, arg);
649 }
650 }
651 if (deoptimization_lock_ != nullptr) { // only true if the debugger is started.
652 MutexLock mu(Thread::Current(), *deoptimization_lock_);
653 for (DeoptimizationRequest& req : deoptimization_requests_) {
654 req.VisitRoots(callback, arg);
655 }
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700656 }
657}
658
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700659void Dbg::StopJdwp() {
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100660 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
661 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700662 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800663 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700664 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800665 gRegistry = nullptr;
666 delete alloc_tracker_lock_;
667 alloc_tracker_lock_ = nullptr;
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100668 delete deoptimization_lock_;
669 deoptimization_lock_ = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700670}
671
Elliott Hughes767a1472011-10-26 18:49:02 -0700672void Dbg::GcDidFinish() {
673 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700674 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700675 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700676 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700677 }
678 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700679 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700680 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700681 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700682 }
683 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700684 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700685 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700686 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700687 }
688}
689
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700690void Dbg::SetJdwpAllowed(bool allowed) {
691 gJdwpAllowed = allowed;
692}
693
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700694DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700695 return Thread::Current()->GetInvokeReq();
696}
697
698Thread* Dbg::GetDebugThread() {
699 return (gJdwpState != NULL) ? gJdwpState->GetDebugThread() : NULL;
700}
701
702void Dbg::ClearWaitForEventThread() {
703 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700704}
705
706void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700707 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800708 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700709 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800710 gDisposed = false;
711}
712
713void Dbg::Disposed() {
714 gDisposed = true;
715}
716
717bool Dbg::IsDisposed() {
718 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700719}
720
Elliott Hughesa2155262011-11-16 16:26:58 -0800721void Dbg::GoActive() {
722 // Enable all debugging features, including scans for breakpoints.
723 // This is a no-op if we're already active.
724 // Only called from the JDWP handler thread.
725 if (gDebuggerActive) {
726 return;
727 }
728
Elliott Hughesc0f09332012-03-26 13:27:06 -0700729 {
730 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
jeffhao09bfc6a2012-12-11 18:11:43 -0800731 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700732 CHECK_EQ(gBreakpoints.size(), 0U);
733 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800734
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100735 {
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100736 MutexLock mu(Thread::Current(), *deoptimization_lock_);
737 CHECK_EQ(deoptimization_requests_.size(), 0U);
738 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100739 CHECK_EQ(delayed_full_undeoptimization_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200740 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
741 CHECK_EQ(method_enter_event_ref_count_, 0U);
742 CHECK_EQ(method_exit_event_ref_count_, 0U);
743 CHECK_EQ(field_read_event_ref_count_, 0U);
744 CHECK_EQ(field_write_event_ref_count_, 0U);
745 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100746 }
747
Ian Rogers62d6c772013-02-27 08:32:07 -0800748 Runtime* runtime = Runtime::Current();
749 runtime->GetThreadList()->SuspendAll();
750 Thread* self = Thread::Current();
751 ThreadState old_state = self->SetStateUnsafe(kRunnable);
752 CHECK_NE(old_state, kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100753 runtime->GetInstrumentation()->EnableDeoptimization();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200754 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800755 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800756 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
757 runtime->GetThreadList()->ResumeAll();
758
759 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700760}
761
762void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700763 CHECK(gDebuggerConnected);
764
Elliott Hughesc0f09332012-03-26 13:27:06 -0700765 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700766
Ian Rogers62d6c772013-02-27 08:32:07 -0800767 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
768 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
769 // and clear the object registry.
770 Runtime* runtime = Runtime::Current();
771 runtime->GetThreadList()->SuspendAll();
772 Thread* self = Thread::Current();
773 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100774
775 // Debugger may not be active at this point.
776 if (gDebuggerActive) {
777 {
778 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
779 // This prevents us from having any pending deoptimization request when the debugger attaches
780 // to us again while no event has been requested yet.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100781 MutexLock mu(Thread::Current(), *deoptimization_lock_);
782 deoptimization_requests_.clear();
783 full_deoptimization_event_count_ = 0U;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100784 delayed_full_undeoptimization_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100785 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200786 if (instrumentation_events_ != 0) {
787 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
788 instrumentation_events_);
789 instrumentation_events_ = 0;
790 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100791 runtime->GetInstrumentation()->DisableDeoptimization();
792 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100793 }
Elliott Hughes234ab152011-10-26 14:02:26 -0700794 gRegistry->Clear();
795 gDebuggerConnected = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800796 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
797 runtime->GetThreadList()->ResumeAll();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700798}
799
Elliott Hughesc0f09332012-03-26 13:27:06 -0700800bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700801 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700802}
803
Elliott Hughesc0f09332012-03-26 13:27:06 -0700804bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700805 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700806}
807
808int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800809 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700810}
811
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700812void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700813 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700814}
815
Elliott Hughes88d63092013-01-09 09:55:54 -0800816std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800817 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800818 if (o == NULL) {
819 return "NULL";
820 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800821 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes88d63092013-01-09 09:55:54 -0800822 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
Elliott Hughes436e3722012-02-17 20:01:47 -0800823 }
824 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700825 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800826 }
Mathieu Chartierf8322842014-05-16 10:59:25 -0700827 return DescriptorToName(o->AsClass()->GetDescriptor().c_str());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700828}
829
Elliott Hughes88d63092013-01-09 09:55:54 -0800830JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800831 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800832 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800833 if (c == NULL) {
834 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800835 }
Elliott Hughes88d63092013-01-09 09:55:54 -0800836 class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800837 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800838}
839
Elliott Hughes88d63092013-01-09 09:55:54 -0800840JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800841 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800842 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800843 if (c == NULL) {
844 return status;
845 }
846 if (c->IsInterface()) {
847 // http://code.google.com/p/android/issues/detail?id=20856
Elliott Hughes88d63092013-01-09 09:55:54 -0800848 superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800849 } else {
Elliott Hughes88d63092013-01-09 09:55:54 -0800850 superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800851 }
852 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700853}
854
Elliott Hughes436e3722012-02-17 20:01:47 -0800855JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800856 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800857 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800858 return JDWP::ERR_INVALID_OBJECT;
859 }
860 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
861 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700862}
863
Elliott Hughes436e3722012-02-17 20:01:47 -0800864JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
865 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800866 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800867 if (c == NULL) {
868 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800869 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800870
871 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
872
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700873 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
874 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800875 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700876 if ((access_flags & kAccInterface) == 0) {
877 access_flags |= kAccSuper;
878 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800879
880 expandBufAdd4BE(pReply, access_flags);
881
882 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700883}
884
Elliott Hughesf327e072013-01-09 16:01:26 -0800885JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
886 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800887 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800888 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800889 return JDWP::ERR_INVALID_OBJECT;
890 }
891
892 // Ensure all threads are suspended while we read objects' lock words.
893 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100894 CHECK_EQ(self->GetState(), kRunnable);
895 self->TransitionFromRunnableToSuspended(kSuspended);
896 Runtime::Current()->GetThreadList()->SuspendAll();
Elliott Hughesf327e072013-01-09 16:01:26 -0800897
898 MonitorInfo monitor_info(o);
899
Sebastien Hertz54263242014-03-19 18:16:50 +0100900 Runtime::Current()->GetThreadList()->ResumeAll();
901 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800902
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700903 if (monitor_info.owner_ != NULL) {
904 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800905 } else {
906 expandBufAddObjectId(reply, gRegistry->Add(NULL));
907 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700908 expandBufAdd4BE(reply, monitor_info.entry_count_);
909 expandBufAdd4BE(reply, monitor_info.waiters_.size());
910 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
911 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800912 }
913 return JDWP::ERR_NONE;
914}
915
Elliott Hughes734b8c62013-01-11 15:32:45 -0800916JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
917 std::vector<JDWP::ObjectId>& monitors,
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100918 std::vector<uint32_t>& stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800919 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700920 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700921 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700922 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800923 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700924 : StackVisitor(thread, context), current_stack_depth(0),
925 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800926
927 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
928 // annotalysis.
929 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
930 if (!GetMethod()->IsRuntimeMethod()) {
931 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800932 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800933 }
934 return true;
935 }
936
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700937 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
938 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800939 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700940 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700941 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800942 }
943
Elliott Hughes734b8c62013-01-11 15:32:45 -0800944 size_t current_stack_depth;
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700945 std::vector<JDWP::ObjectId>* monitors;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700946 std::vector<uint32_t>* stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800947 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800948
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700949 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700950 Thread* thread;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700951 {
952 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700953 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
954 if (error != JDWP::ERR_NONE) {
955 return error;
956 }
957 if (!IsSuspendedForDebugger(soa, thread)) {
958 return JDWP::ERR_THREAD_NOT_SUSPENDED;
959 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700960 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700961 std::unique_ptr<Context> context(Context::Create());
962 OwnedMonitorVisitor visitor(thread, context.get(), &monitors, &stack_depths);
963 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800964 return JDWP::ERR_NONE;
965}
966
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100967JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
968 JDWP::ObjectId& contended_monitor) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700969 mirror::Object* contended_monitor_obj;
Elliott Hughesf9501702013-01-11 11:22:27 -0800970 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700971 {
972 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
973 Thread* thread;
974 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
975 if (error != JDWP::ERR_NONE) {
976 return error;
977 }
978 if (!IsSuspendedForDebugger(soa, thread)) {
979 return JDWP::ERR_THREAD_NOT_SUSPENDED;
980 }
981 contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Elliott Hughesf9501702013-01-11 11:22:27 -0800982 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700983 // Add() requires the thread_list_lock_ not held to avoid the lock
984 // level violation.
985 contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -0800986 return JDWP::ERR_NONE;
987}
988
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800989JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
990 std::vector<uint64_t>& counts)
991 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800992 gc::Heap* heap = Runtime::Current()->GetHeap();
993 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800994 std::vector<mirror::Class*> classes;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800995 counts.clear();
996 for (size_t i = 0; i < class_ids.size(); ++i) {
997 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800998 mirror::Class* c = DecodeClass(class_ids[i], status);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800999 if (c == NULL) {
1000 return status;
1001 }
1002 classes.push_back(c);
1003 counts.push_back(0);
1004 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001005 heap->CountInstances(classes, false, &counts[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001006 return JDWP::ERR_NONE;
1007}
1008
Elliott Hughes3b78c942013-01-15 17:35:41 -08001009JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::ObjectId>& instances)
1010 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001011 gc::Heap* heap = Runtime::Current()->GetHeap();
1012 // We only want reachable instances, so do a GC.
1013 heap->CollectGarbage(false);
Elliott Hughes3b78c942013-01-15 17:35:41 -08001014 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001015 mirror::Class* c = DecodeClass(class_id, status);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001016 if (c == nullptr) {
Elliott Hughes3b78c942013-01-15 17:35:41 -08001017 return status;
1018 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001019 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001020 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
1021 for (size_t i = 0; i < raw_instances.size(); ++i) {
1022 instances.push_back(gRegistry->Add(raw_instances[i]));
1023 }
1024 return JDWP::ERR_NONE;
1025}
1026
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001027JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
1028 std::vector<JDWP::ObjectId>& referring_objects)
1029 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001030 gc::Heap* heap = Runtime::Current()->GetHeap();
1031 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001032 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001033 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001034 return JDWP::ERR_INVALID_OBJECT;
1035 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001036 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001037 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001038 for (size_t i = 0; i < raw_instances.size(); ++i) {
1039 referring_objects.push_back(gRegistry->Add(raw_instances[i]));
1040 }
1041 return JDWP::ERR_NONE;
1042}
1043
Elliott Hughes64f574f2013-02-20 14:57:12 -08001044JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id)
1045 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001046 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
1047 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
1048 return JDWP::ERR_INVALID_OBJECT;
1049 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001050 gRegistry->DisableCollection(object_id);
1051 return JDWP::ERR_NONE;
1052}
1053
1054JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id)
1055 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001056 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
1057 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
1058 // also ignores these cases and never return an error. However it's not obvious why this command
1059 // should behave differently from DisableCollection and IsCollected commands. So let's be more
1060 // strict and return an error if this happens.
1061 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
1062 return JDWP::ERR_INVALID_OBJECT;
1063 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001064 gRegistry->EnableCollection(object_id);
1065 return JDWP::ERR_NONE;
1066}
1067
1068JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool& is_collected)
1069 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001070 if (object_id == 0) {
1071 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +01001072 return JDWP::ERR_INVALID_OBJECT;
1073 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001074 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1075 // the RI seems to ignore this and assume object has been collected.
1076 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
1077 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
1078 is_collected = true;
1079 } else {
1080 is_collected = gRegistry->IsCollected(object_id);
1081 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001082 return JDWP::ERR_NONE;
1083}
1084
1085void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
1086 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1087 gRegistry->DisposeObject(object_id, reference_count);
1088}
1089
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001090static JDWP::JdwpTypeTag GetTypeTag(mirror::Class* klass)
1091 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1092 DCHECK(klass != nullptr);
1093 if (klass->IsArrayClass()) {
1094 return JDWP::TT_ARRAY;
1095 } else if (klass->IsInterface()) {
1096 return JDWP::TT_INTERFACE;
1097 } else {
1098 return JDWP::TT_CLASS;
1099 }
1100}
1101
Elliott Hughes88d63092013-01-09 09:55:54 -08001102JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001103 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001104 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001105 if (c == NULL) {
1106 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001107 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001108
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001109 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1110 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001111 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001112 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001113}
1114
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001115void Dbg::GetClassList(std::vector<JDWP::RefTypeId>& classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001116 // Get the complete list of reference classes (i.e. all classes except
1117 // the primitive types).
1118 // Returns a newly-allocated buffer full of RefTypeId values.
1119 struct ClassListCreator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001120 explicit ClassListCreator(std::vector<JDWP::RefTypeId>& classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001121 }
1122
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001123 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001124 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1125 }
1126
Elliott Hughes64f574f2013-02-20 14:57:12 -08001127 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1128 // annotalysis.
1129 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001130 if (!c->IsPrimitive()) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001131 classes.push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001132 }
1133 return true;
1134 }
1135
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001136 std::vector<JDWP::RefTypeId>& classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001137 };
1138
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001139 ClassListCreator clc(classes);
Elliott Hughesa2155262011-11-16 16:26:58 -08001140 Runtime::Current()->GetClassLinker()->VisitClasses(ClassListCreator::Visit, &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001141}
1142
Elliott Hughes88d63092013-01-09 09:55:54 -08001143JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, uint32_t* pStatus, std::string* pDescriptor) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001144 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001145 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001146 if (c == NULL) {
1147 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001148 }
1149
Elliott Hughesa2155262011-11-16 16:26:58 -08001150 if (c->IsArrayClass()) {
1151 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1152 *pTypeTag = JDWP::TT_ARRAY;
1153 } else {
1154 if (c->IsErroneous()) {
1155 *pStatus = JDWP::CS_ERROR;
1156 } else {
1157 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1158 }
1159 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1160 }
1161
1162 if (pDescriptor != NULL) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001163 *pDescriptor = c->GetDescriptor();
Elliott Hughesa2155262011-11-16 16:26:58 -08001164 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001165 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001166}
1167
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001168void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001169 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001170 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
1171 ids.clear();
1172 for (size_t i = 0; i < classes.size(); ++i) {
1173 ids.push_back(gRegistry->Add(classes[i]));
1174 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001175}
1176
Elliott Hughes64f574f2013-02-20 14:57:12 -08001177JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
1178 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001179 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001180 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001181 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001182 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001183
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001184 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001185 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001186
1187 expandBufAdd1(pReply, type_tag);
1188 expandBufAddRefTypeId(pReply, type_id);
1189
1190 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001191}
1192
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001193JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001194 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001195 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001196 if (c == NULL) {
1197 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001198 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001199 *signature = c->GetDescriptor();
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001200 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001201}
1202
Elliott Hughes88d63092013-01-09 09:55:54 -08001203JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string& result) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001204 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001205 mirror::Class* c = DecodeClass(class_id, status);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001206 if (c == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001207 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001208 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001209 const char* source_file = c->GetSourceFile();
1210 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001211 return JDWP::ERR_ABSENT_INFORMATION;
1212 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001213 result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001214 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001215}
1216
Elliott Hughes88d63092013-01-09 09:55:54 -08001217JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t& tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001218 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001219 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001220 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes546b9862012-06-20 16:06:13 -07001221 return JDWP::ERR_INVALID_OBJECT;
1222 }
Ian Rogers98379392014-02-24 16:53:16 -08001223 tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001224 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001225}
1226
Elliott Hughesaed4be92011-12-02 16:16:23 -08001227size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001228 switch (tag) {
1229 case JDWP::JT_VOID:
1230 return 0;
1231 case JDWP::JT_BYTE:
1232 case JDWP::JT_BOOLEAN:
1233 return 1;
1234 case JDWP::JT_CHAR:
1235 case JDWP::JT_SHORT:
1236 return 2;
1237 case JDWP::JT_FLOAT:
1238 case JDWP::JT_INT:
1239 return 4;
1240 case JDWP::JT_ARRAY:
1241 case JDWP::JT_OBJECT:
1242 case JDWP::JT_STRING:
1243 case JDWP::JT_THREAD:
1244 case JDWP::JT_THREAD_GROUP:
1245 case JDWP::JT_CLASS_LOADER:
1246 case JDWP::JT_CLASS_OBJECT:
1247 return sizeof(JDWP::ObjectId);
1248 case JDWP::JT_DOUBLE:
1249 case JDWP::JT_LONG:
1250 return 8;
1251 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001252 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001253 return -1;
1254 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001255}
1256
Elliott Hughes88d63092013-01-09 09:55:54 -08001257JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int& length) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001258 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001259 mirror::Array* a = DecodeArray(array_id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001260 if (a == NULL) {
1261 return status;
Elliott Hughes24437992011-11-30 14:49:33 -08001262 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001263 length = a->GetLength();
1264 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001265}
1266
Elliott Hughes88d63092013-01-09 09:55:54 -08001267JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001268 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001269 mirror::Array* a = DecodeArray(array_id, status);
Ian Rogers98379392014-02-24 16:53:16 -08001270 if (a == nullptr) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001271 return status;
1272 }
Elliott Hughes24437992011-11-30 14:49:33 -08001273
1274 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1275 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001276 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001277 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001278 std::string descriptor(a->GetClass()->GetDescriptor());
Elliott Hughes24437992011-11-30 14:49:33 -08001279 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
1280
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001281 expandBufAdd1(pReply, tag);
1282 expandBufAdd4BE(pReply, count);
1283
Elliott Hughes24437992011-11-30 14:49:33 -08001284 if (IsPrimitiveTag(tag)) {
1285 size_t width = GetTagWidth(tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001286 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1287 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001288 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001289 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1290 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001291 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001292 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1293 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001294 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001295 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1296 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001297 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001298 memcpy(dst, &src[offset * width], count * width);
1299 }
1300 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001301 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001302 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001303 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001304 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001305 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
1306 : tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001307 expandBufAdd1(pReply, specific_tag);
1308 expandBufAddObjectId(pReply, gRegistry->Add(element));
1309 }
1310 }
1311
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001312 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001313}
1314
Ian Rogersef7d42f2014-01-06 12:55:46 -08001315template <typename T>
1316static void CopyArrayData(mirror::Array* a, JDWP::Request& src, int offset, int count)
1317 NO_THREAD_SAFETY_ANALYSIS {
1318 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001319 DCHECK(a->GetClass()->IsPrimitiveArray());
1320
Ian Rogersef7d42f2014-01-06 12:55:46 -08001321 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001322 for (int i = 0; i < count; ++i) {
1323 *dst++ = src.ReadValue(sizeof(T));
1324 }
1325}
1326
Elliott Hughes88d63092013-01-09 09:55:54 -08001327JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001328 JDWP::Request& request)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001329 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001330 JDWP::JdwpError status;
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001331 mirror::Array* dst = DecodeArray(array_id, status);
1332 if (dst == NULL) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001333 return status;
1334 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001335
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001336 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001337 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001338 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001339 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001340 std::string descriptor = dst->GetClass()->GetDescriptor();
1341 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001342
1343 if (IsPrimitiveTag(tag)) {
1344 size_t width = GetTagWidth(tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001345 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001346 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001347 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001348 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001349 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001350 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001351 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001352 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001353 }
1354 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001355 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001356 for (int i = 0; i < count; ++i) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001357 JDWP::ObjectId id = request.ReadObjectId();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001358 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001359 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001360 return JDWP::ERR_INVALID_OBJECT;
1361 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001362 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001363 }
1364 }
1365
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001366 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001367}
1368
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001369JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001370 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001371}
1372
Elliott Hughes88d63092013-01-09 09:55:54 -08001373JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001374 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001375 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001376 if (c == NULL) {
1377 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001378 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001379 new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001380 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001381}
1382
Elliott Hughesbf13d362011-12-08 15:51:37 -08001383/*
1384 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1385 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001386JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001387 JDWP::ObjectId& new_array) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001388 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001389 mirror::Class* c = DecodeClass(array_class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001390 if (c == NULL) {
1391 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001392 }
Ian Rogers6fac4472014-02-25 17:01:10 -08001393 new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
1394 c->GetComponentSize(),
1395 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001396 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001397}
1398
Elliott Hughes88d63092013-01-09 09:55:54 -08001399bool Dbg::MatchType(JDWP::RefTypeId instance_class_id, JDWP::RefTypeId class_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001400 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001401 mirror::Class* c1 = DecodeClass(instance_class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001402 CHECK(c1 != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001403 mirror::Class* c2 = DecodeClass(class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001404 CHECK(c2 != NULL);
Sebastien Hertz123756a2013-11-27 15:49:42 +01001405 return c2->IsAssignableFrom(c1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001406}
1407
Brian Carlstromea46f952013-07-30 01:26:50 -07001408static JDWP::FieldId ToFieldId(const mirror::ArtField* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001409 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001410 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001411 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001412}
1413
Brian Carlstromea46f952013-07-30 01:26:50 -07001414static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001415 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001416 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001417 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001418}
1419
Brian Carlstromea46f952013-07-30 01:26:50 -07001420static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001421 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001422 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001423 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001424}
1425
Brian Carlstromea46f952013-07-30 01:26:50 -07001426static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001427 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001428 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001429 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001430}
1431
Brian Carlstromea46f952013-07-30 01:26:50 -07001432static void SetLocation(JDWP::JdwpLocation& location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001433 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001434 if (m == NULL) {
1435 memset(&location, 0, sizeof(location));
1436 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001437 mirror::Class* c = m->GetDeclaringClass();
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001438 location.type_tag = GetTypeTag(c);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001439 location.class_id = gRegistry->AddRefType(c);
Elliott Hughes74847412012-06-20 18:10:21 -07001440 location.method_id = ToMethodId(m);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001441 location.dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001442 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001443}
1444
Elliott Hughesa96836a2013-01-17 12:27:49 -08001445std::string Dbg::GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001446 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001447 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001448 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001449}
1450
Elliott Hughesa96836a2013-01-17 12:27:49 -08001451std::string Dbg::GetFieldName(JDWP::FieldId field_id)
1452 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001453 return FromFieldId(field_id)->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001454}
1455
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001456/*
1457 * Augment the access flags for synthetic methods and fields by setting
1458 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1459 * flags not specified by the Java programming language.
1460 */
1461static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1462 accessFlags &= kAccJavaFlagsMask;
1463 if ((accessFlags & kAccSynthetic) != 0) {
1464 accessFlags |= 0xf0000000;
1465 }
1466 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001467}
1468
Elliott Hughesdbb40792011-11-18 17:05:22 -08001469/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001470 * Circularly shifts registers so that arguments come first. Debuggers
1471 * expect slots to begin with arguments, but dex code places them at
1472 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001473 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001474static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1475 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001476 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001477 if (code_item == nullptr) {
1478 // We should not get here for a method without code (native, proxy or abstract). Log it and
1479 // return the slot as is since all registers are arguments.
1480 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1481 return slot;
1482 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001483 uint16_t ins_size = code_item->ins_size_;
1484 uint16_t locals_size = code_item->registers_size_ - ins_size;
1485 if (slot >= locals_size) {
1486 return slot - locals_size;
1487 } else {
1488 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001489 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001490}
1491
Jeff Haob7cefc72013-11-14 14:51:09 -08001492/*
1493 * Circularly shifts registers so that arguments come last. Reverts
1494 * slots to dex style argument placement.
1495 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001496static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001497 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001498 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001499 if (code_item == nullptr) {
1500 // We should not get here for a method without code (native, proxy or abstract). Log it and
1501 // return the slot as is since all registers are arguments.
1502 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1503 return slot;
1504 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001505 uint16_t ins_size = code_item->ins_size_;
1506 uint16_t locals_size = code_item->registers_size_ - ins_size;
1507 if (slot < ins_size) {
1508 return slot + locals_size;
1509 } else {
1510 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001511 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001512}
1513
Elliott Hughes88d63092013-01-09 09:55:54 -08001514JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001515 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001516 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001517 if (c == NULL) {
1518 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001519 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001520
1521 size_t instance_field_count = c->NumInstanceFields();
1522 size_t static_field_count = c->NumStaticFields();
1523
1524 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1525
1526 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001527 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001528 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001529 expandBufAddUtf8String(pReply, f->GetName());
1530 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001531 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001532 static const char genericSignature[1] = "";
1533 expandBufAddUtf8String(pReply, genericSignature);
1534 }
1535 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1536 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001537 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001538}
1539
Elliott Hughes88d63092013-01-09 09:55:54 -08001540JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001541 JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001542 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001543 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001544 if (c == NULL) {
1545 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001546 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001547
1548 size_t direct_method_count = c->NumDirectMethods();
1549 size_t virtual_method_count = c->NumVirtualMethods();
1550
1551 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1552
1553 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001554 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001555 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001556 expandBufAddUtf8String(pReply, m->GetName());
1557 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001558 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001559 static const char genericSignature[1] = "";
1560 expandBufAddUtf8String(pReply, genericSignature);
1561 }
1562 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1563 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001564 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001565}
1566
Elliott Hughes88d63092013-01-09 09:55:54 -08001567JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001568 JDWP::JdwpError status;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001569 Thread* self = Thread::Current();
1570 StackHandleScope<1> hs(self);
1571 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, status)));
1572 if (c.Get() == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001573 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001574 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001575 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001576 expandBufAdd4BE(pReply, interface_count);
1577 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001578 expandBufAddRefTypeId(pReply,
1579 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001580 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001581 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001582}
1583
Elliott Hughes88d63092013-01-09 09:55:54 -08001584void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001585 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001586 struct DebugCallbackContext {
1587 int numItems;
1588 JDWP::ExpandBuf* pReply;
1589
Elliott Hughes2435a572012-02-17 16:07:41 -08001590 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001591 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1592 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001593 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001594 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001595 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001596 }
1597 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001598 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001599 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001600 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001601 if (code_item == nullptr) {
1602 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001603 start = -1;
1604 end = -1;
1605 } else {
1606 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001607 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001608 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001609 }
1610
1611 expandBufAdd8BE(pReply, start);
1612 expandBufAdd8BE(pReply, end);
1613
1614 // Add numLines later
1615 size_t numLinesOffset = expandBufGetLength(pReply);
1616 expandBufAdd4BE(pReply, 0);
1617
1618 DebugCallbackContext context;
1619 context.numItems = 0;
1620 context.pReply = pReply;
1621
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001622 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001623 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
1624 DebugCallbackContext::Callback, NULL, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001625 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001626
1627 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001628}
1629
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001630void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1631 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001632 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001633 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001634 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001635 size_t variable_count;
1636 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001637
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001638 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1639 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001640 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001641 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1642
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001643 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1644 pContext->variable_count, startAddress, endAddress - startAddress,
1645 name, descriptor, signature, slot,
1646 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001647
Jeff Haob7cefc72013-11-14 14:51:09 -08001648 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001649
Elliott Hughesdbb40792011-11-18 17:05:22 -08001650 expandBufAdd8BE(pContext->pReply, startAddress);
1651 expandBufAddUtf8String(pContext->pReply, name);
1652 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001653 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001654 expandBufAddUtf8String(pContext->pReply, signature);
1655 }
1656 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1657 expandBufAdd4BE(pContext->pReply, slot);
1658
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001659 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001660 }
1661 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001662 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001663
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001664 // arg_count considers doubles and longs to take 2 units.
1665 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001666 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001667 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001668
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001669 // We don't know the total number of variables yet, so leave a blank and update it later.
1670 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001671 expandBufAdd4BE(pReply, 0);
1672
1673 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001674 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001675 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001676 context.variable_count = 0;
1677 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001678
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001679 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001680 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001681 m->GetDexFile()->DecodeDebugInfo(
1682 code_item, m->IsStatic(), m->GetDexMethodIndex(), NULL, DebugCallbackContext::Callback,
1683 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001684 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001685
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001686 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001687}
1688
Jeff Hao579b0242013-11-18 13:16:49 -08001689void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1690 JDWP::ExpandBuf* pReply) {
1691 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001692 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001693 OutputJValue(tag, return_value, pReply);
1694}
1695
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001696void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1697 JDWP::ExpandBuf* pReply) {
1698 mirror::ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001699 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001700 OutputJValue(tag, field_value, pReply);
1701}
1702
Elliott Hughes9777ba22013-01-17 09:04:19 -08001703JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
1704 std::vector<uint8_t>& bytecodes)
1705 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001706 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001707 if (m == NULL) {
1708 return JDWP::ERR_INVALID_METHODID;
1709 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001710 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001711 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1712 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1713 const uint8_t* end = begin + byte_count;
1714 for (const uint8_t* p = begin; p != end; ++p) {
1715 bytecodes.push_back(*p);
1716 }
1717 return JDWP::ERR_NONE;
1718}
1719
Elliott Hughes88d63092013-01-09 09:55:54 -08001720JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001721 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001722}
1723
Elliott Hughes88d63092013-01-09 09:55:54 -08001724JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001725 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001726}
1727
Elliott Hughes88d63092013-01-09 09:55:54 -08001728static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1729 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001730 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001731 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001732 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001733 mirror::Class* c = DecodeClass(ref_type_id, status);
Elliott Hughes88d63092013-01-09 09:55:54 -08001734 if (ref_type_id != 0 && c == NULL) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001735 return status;
1736 }
1737
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001738 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001739 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001740 return JDWP::ERR_INVALID_OBJECT;
1741 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001742 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001743
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001744 mirror::Class* receiver_class = c;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001745 if (receiver_class == NULL && o != NULL) {
1746 receiver_class = o->GetClass();
1747 }
1748 // TODO: should we give up now if receiver_class is NULL?
1749 if (receiver_class != NULL && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
1750 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001751 return JDWP::ERR_INVALID_FIELDID;
1752 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001753
Elliott Hughes0cf74332012-02-23 23:14:00 -08001754 // The RI only enforces the static/non-static mismatch in one direction.
1755 // TODO: should we change the tests and check both?
1756 if (is_static) {
1757 if (!f->IsStatic()) {
1758 return JDWP::ERR_INVALID_FIELDID;
1759 }
1760 } else {
1761 if (f->IsStatic()) {
1762 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001763 }
1764 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001765 if (f->IsStatic()) {
1766 o = f->GetDeclaringClass();
1767 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001768
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001769 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001770 JValue field_value;
1771 if (tag == JDWP::JT_VOID) {
1772 LOG(FATAL) << "Unknown tag: " << tag;
1773 } else if (!IsPrimitiveTag(tag)) {
1774 field_value.SetL(f->GetObject(o));
1775 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1776 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001777 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001778 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001779 }
Jeff Hao579b0242013-11-18 13:16:49 -08001780 Dbg::OutputJValue(tag, &field_value, pReply);
1781
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001782 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001783}
1784
Elliott Hughes88d63092013-01-09 09:55:54 -08001785JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001786 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001787 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001788}
1789
Elliott Hughes88d63092013-01-09 09:55:54 -08001790JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) {
1791 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001792}
1793
Elliott Hughes88d63092013-01-09 09:55:54 -08001794static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001795 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001796 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001797 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001798 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001799 return JDWP::ERR_INVALID_OBJECT;
1800 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001801 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001802
1803 // The RI only enforces the static/non-static mismatch in one direction.
1804 // TODO: should we change the tests and check both?
1805 if (is_static) {
1806 if (!f->IsStatic()) {
1807 return JDWP::ERR_INVALID_FIELDID;
1808 }
1809 } else {
1810 if (f->IsStatic()) {
1811 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001812 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001813 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001814 if (f->IsStatic()) {
1815 o = f->GetDeclaringClass();
1816 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001817
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001818 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001819
1820 if (IsPrimitiveTag(tag)) {
1821 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001822 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001823 // Debugging can't use transactional mode (runtime only).
1824 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001825 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001826 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001827 // Debugging can't use transactional mode (runtime only).
1828 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001829 }
1830 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001831 mirror::Object* v = gRegistry->Get<mirror::Object*>(value);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001832 if (v == ObjectRegistry::kInvalidObject) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001833 return JDWP::ERR_INVALID_OBJECT;
1834 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001835 if (v != NULL) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001836 mirror::Class* field_type;
1837 {
1838 StackHandleScope<3> hs(Thread::Current());
1839 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1840 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
1841 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
1842 field_type = FieldHelper(h_f).GetType();
1843 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001844 if (!field_type->IsAssignableFrom(v->GetClass())) {
1845 return JDWP::ERR_INVALID_OBJECT;
1846 }
1847 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001848 // Debugging can't use transactional mode (runtime only).
1849 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001850 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001851
1852 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001853}
1854
Elliott Hughes88d63092013-01-09 09:55:54 -08001855JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001856 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001857 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001858}
1859
Elliott Hughes88d63092013-01-09 09:55:54 -08001860JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1861 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001862}
1863
Elliott Hughes88d63092013-01-09 09:55:54 -08001864std::string Dbg::StringToUtf8(JDWP::ObjectId string_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001865 mirror::String* s = gRegistry->Get<mirror::String*>(string_id);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001866 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001867}
1868
Jeff Hao579b0242013-11-18 13:16:49 -08001869void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1870 if (IsPrimitiveTag(tag)) {
1871 expandBufAdd1(pReply, tag);
1872 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1873 expandBufAdd1(pReply, return_value->GetI());
1874 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1875 expandBufAdd2BE(pReply, return_value->GetI());
1876 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1877 expandBufAdd4BE(pReply, return_value->GetI());
1878 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1879 expandBufAdd8BE(pReply, return_value->GetJ());
1880 } else {
1881 CHECK_EQ(tag, JDWP::JT_VOID);
1882 }
1883 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001884 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001885 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001886 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001887 expandBufAddObjectId(pReply, gRegistry->Add(value));
1888 }
1889}
1890
Elliott Hughes221229c2013-01-08 18:17:50 -08001891JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string& name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001892 ScopedObjectAccessUnchecked soa(Thread::Current());
1893 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001894 Thread* thread;
1895 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1896 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1897 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001898 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001899
1900 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001901 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Brian Carlstromea46f952013-07-30 01:26:50 -07001902 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001903 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1904 mirror::String* s =
1905 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Elliott Hughes221229c2013-01-08 18:17:50 -08001906 if (s != NULL) {
1907 name = s->ToModifiedUtf8();
1908 }
1909 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001910}
1911
Elliott Hughes221229c2013-01-08 18:17:50 -08001912JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001913 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001914 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001915 if (thread_object == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001916 return JDWP::ERR_INVALID_OBJECT;
1917 }
Ian Rogers98379392014-02-24 16:53:16 -08001918 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001919 // Okay, so it's an object, but is it actually a thread?
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001920 JDWP::JdwpError error;
1921 {
1922 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
1923 Thread* thread;
1924 error = DecodeThread(soa, thread_id, thread);
1925 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001926 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1927 // Zombie threads are in the null group.
1928 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001929 error = JDWP::ERR_NONE;
1930 } else if (error == JDWP::ERR_NONE) {
1931 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1932 CHECK(c != nullptr);
1933 mirror::ArtField* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001934 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001935 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001936 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001937 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1938 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001939 }
Ian Rogers98379392014-02-24 16:53:16 -08001940 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001941 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001942}
1943
Elliott Hughes88d63092013-01-09 09:55:54 -08001944std::string Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001945 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001946 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001947 CHECK(thread_group != nullptr);
1948 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupName");
1949 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1950 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001951 mirror::ArtField* f = c->FindInstanceField("name", "Ljava/lang/String;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001952 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001953 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Ian Rogers98379392014-02-24 16:53:16 -08001954 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes499c5132011-11-17 14:55:11 -08001955 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001956}
1957
Elliott Hughes88d63092013-01-09 09:55:54 -08001958JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id) {
Ian Rogers98379392014-02-24 16:53:16 -08001959 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001960 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001961 CHECK(thread_group != nullptr);
1962 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupParent");
1963 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1964 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001965 mirror::ArtField* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
Elliott Hughes4e235312011-12-02 11:34:15 -08001966 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001967 mirror::Object* parent = f->GetObject(thread_group);
Ian Rogers98379392014-02-24 16:53:16 -08001968 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes4e235312011-12-02 11:34:15 -08001969 return gRegistry->Add(parent);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001970}
1971
1972JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001973 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001974 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001975 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001976 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001977}
1978
1979JDWP::ObjectId Dbg::GetMainThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001980 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001981 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001982 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001983 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001984}
1985
Jeff Hao920af3e2013-08-28 15:46:38 -07001986JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
1987 switch (state) {
1988 case kBlocked:
1989 return JDWP::TS_MONITOR;
1990 case kNative:
1991 case kRunnable:
1992 case kSuspended:
1993 return JDWP::TS_RUNNING;
1994 case kSleeping:
1995 return JDWP::TS_SLEEPING;
1996 case kStarting:
1997 case kTerminated:
1998 return JDWP::TS_ZOMBIE;
1999 case kTimedWaiting:
2000 case kWaitingForDebuggerSend:
2001 case kWaitingForDebuggerSuspension:
2002 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002003 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002004 case kWaitingForGcToComplete:
2005 case kWaitingForCheckPointsToRun:
2006 case kWaitingForJniOnLoad:
2007 case kWaitingForSignalCatcherOutput:
2008 case kWaitingInMainDebuggerLoop:
2009 case kWaitingInMainSignalCatcherLoop:
2010 case kWaitingPerformingGc:
2011 case kWaiting:
2012 return JDWP::TS_WAIT;
2013 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2014 }
2015 LOG(FATAL) << "Unknown thread state: " << state;
2016 return JDWP::TS_ZOMBIE;
2017}
2018
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002019JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2020 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002021 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002022
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002023 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2024
Ian Rogers50b35e22012-10-04 10:09:15 -07002025 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002026 Thread* thread;
2027 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2028 if (error != JDWP::ERR_NONE) {
2029 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2030 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002031 return JDWP::ERR_NONE;
2032 }
2033 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002034 }
2035
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002036 if (IsSuspendedForDebugger(soa, thread)) {
2037 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002038 }
2039
Jeff Hao920af3e2013-08-28 15:46:38 -07002040 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002041 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002042}
2043
Elliott Hughes221229c2013-01-08 18:17:50 -08002044JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002045 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07002046 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002047 Thread* thread;
2048 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2049 if (error != JDWP::ERR_NONE) {
2050 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002051 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002052 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002053 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002054 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002055}
2056
Elliott Hughesf9501702013-01-11 11:22:27 -08002057JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2058 ScopedObjectAccess soa(Thread::Current());
2059 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2060 Thread* thread;
2061 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2062 if (error != JDWP::ERR_NONE) {
2063 return error;
2064 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002065 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002066 return JDWP::ERR_NONE;
2067}
2068
Elliott Hughescaf76542012-06-28 16:08:22 -07002069void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids) {
Ian Rogers365c1022012-06-22 15:05:28 -07002070 class ThreadListVisitor {
2071 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002072 ThreadListVisitor(const ScopedObjectAccessUnchecked& soa, mirror::Object* desired_thread_group,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002073 std::vector<JDWP::ObjectId>& thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002074 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
jeffhao0dfbb7e2012-11-28 15:26:03 -08002075 : soa_(soa), desired_thread_group_(desired_thread_group), thread_ids_(thread_ids) {}
Ian Rogers365c1022012-06-22 15:05:28 -07002076
Elliott Hughesa2155262011-11-16 16:26:58 -08002077 static void Visit(Thread* t, void* arg) {
2078 reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t);
2079 }
2080
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002081 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2082 // annotalysis.
2083 void Visit(Thread* t) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08002084 if (t == Dbg::GetDebugThread()) {
2085 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2086 // query all threads, so it's easier if we just don't tell them about this thread.
2087 return;
2088 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002089 mirror::Object* peer = t->GetPeer();
jeffhao0dfbb7e2012-11-28 15:26:03 -08002090 if (IsInDesiredThreadGroup(peer)) {
Ian Rogers120f1c72012-09-28 17:17:10 -07002091 thread_ids_.push_back(gRegistry->Add(peer));
Elliott Hughesa2155262011-11-16 16:26:58 -08002092 }
2093 }
2094
Ian Rogers365c1022012-06-22 15:05:28 -07002095 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002096 bool IsInDesiredThreadGroup(mirror::Object* peer)
jeffhao0dfbb7e2012-11-28 15:26:03 -08002097 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao0dfbb7e2012-11-28 15:26:03 -08002098 // peer might be NULL if the thread is still starting up.
2099 if (peer == NULL) {
2100 // We can't tell the debugger about this thread yet.
2101 // TODO: if we identified threads to the debugger by their Thread*
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002102 // rather than their peer's mirror::Object*, we could fix this.
jeffhao0dfbb7e2012-11-28 15:26:03 -08002103 // Doing so might help us report ZOMBIE threads too.
2104 return false;
2105 }
jeffhaoc1e04902012-12-13 12:41:10 -08002106 // Do we want threads from all thread groups?
2107 if (desired_thread_group_ == NULL) {
2108 return true;
2109 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002110 mirror::Object* group = soa_.DecodeField(WellKnownClasses::java_lang_Thread_group)->GetObject(peer);
jeffhao0dfbb7e2012-11-28 15:26:03 -08002111 return (group == desired_thread_group_);
2112 }
2113
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002114 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002115 mirror::Object* const desired_thread_group_;
Elliott Hughescaf76542012-06-28 16:08:22 -07002116 std::vector<JDWP::ObjectId>& thread_ids_;
Elliott Hughesa2155262011-11-16 16:26:58 -08002117 };
2118
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002119 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002120 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002121 ThreadListVisitor tlv(soa, thread_group, thread_ids);
Ian Rogers50b35e22012-10-04 10:09:15 -07002122 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -07002123 Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv);
Elliott Hughescaf76542012-06-28 16:08:22 -07002124}
Elliott Hughesa2155262011-11-16 16:26:58 -08002125
Elliott Hughescaf76542012-06-28 16:08:22 -07002126void Dbg::GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002127 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002128 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughescaf76542012-06-28 16:08:22 -07002129
2130 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Brian Carlstromea46f952013-07-30 01:26:50 -07002131 mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002132 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Elliott Hughescaf76542012-06-28 16:08:22 -07002133
2134 // Get the array and size out of the ArrayList<ThreadGroup>...
Brian Carlstromea46f952013-07-30 01:26:50 -07002135 mirror::ArtField* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;");
2136 mirror::ArtField* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002137 mirror::ObjectArray<mirror::Object>* groups_array =
2138 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
Elliott Hughescaf76542012-06-28 16:08:22 -07002139 const int32_t size = size_field->GetInt(groups_array_list);
2140
2141 // Copy the first 'size' elements out of the array into the result.
2142 for (int32_t i = 0; i < size; ++i) {
2143 child_thread_group_ids.push_back(gRegistry->Add(groups_array->Get(i)));
Elliott Hughesa2155262011-11-16 16:26:58 -08002144 }
2145}
2146
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002147static int GetStackDepth(Thread* thread)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002148 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002149 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07002150 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002151 : StackVisitor(thread, NULL), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002152
Elliott Hughes64f574f2013-02-20 14:57:12 -08002153 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2154 // annotalysis.
2155 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002156 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002157 ++depth;
2158 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002159 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002160 }
2161 size_t depth;
2162 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002163
Ian Rogers7a22fa62013-01-23 12:16:16 -08002164 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002165 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002166 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002167}
2168
Elliott Hughes221229c2013-01-08 18:17:50 -08002169JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002170 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002171 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002172 Thread* thread;
2173 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2174 if (error != JDWP::ERR_NONE) {
2175 return error;
2176 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002177 if (!IsSuspendedForDebugger(soa, thread)) {
2178 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2179 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002180 result = GetStackDepth(thread);
2181 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002182}
2183
Ian Rogers306057f2012-11-26 12:45:53 -08002184JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2185 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002186 class GetFrameVisitor : public StackVisitor {
2187 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08002188 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002189 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002190 : StackVisitor(thread, NULL), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002191 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
2192 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002193 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002194
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002195 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2196 // annotalysis.
2197 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002198 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002199 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002200 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002201 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002202 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002203 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002204 if (depth_ >= start_frame_) {
2205 JDWP::FrameId frame_id(GetFrameId());
2206 JDWP::JdwpLocation location;
2207 SetLocation(location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002208 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002209 expandBufAdd8BE(buf_, frame_id);
2210 expandBufAddLocation(buf_, location);
2211 }
2212 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002213 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002214 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002215
2216 private:
2217 size_t depth_;
2218 const size_t start_frame_;
2219 const size_t frame_count_;
2220 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002221 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002222
2223 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002224 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002225 Thread* thread;
2226 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2227 if (error != JDWP::ERR_NONE) {
2228 return error;
2229 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002230 if (!IsSuspendedForDebugger(soa, thread)) {
2231 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2232 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002233 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002234 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002235 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002236}
2237
2238JDWP::ObjectId Dbg::GetThreadSelfId() {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002239 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08002240 return gRegistry->Add(soa.Self()->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002241}
2242
Elliott Hughes475fc232011-10-25 15:00:35 -07002243void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002244 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002245}
2246
2247void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07002248 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002249}
2250
Elliott Hughes221229c2013-01-08 18:17:50 -08002251JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002252 ScopedLocalRef<jobject> peer(Thread::Current()->GetJniEnv(), NULL);
2253 {
2254 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002255 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002256 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002257 if (peer.get() == NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002258 return JDWP::ERR_THREAD_NOT_ALIVE;
2259 }
2260 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002261 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002262 Thread* thread = ThreadList::SuspendThreadByPeer(peer.get(), request_suspension, true,
2263 &timed_out);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002264 if (thread != NULL) {
2265 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002266 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002267 return JDWP::ERR_INTERNAL;
2268 } else {
2269 return JDWP::ERR_THREAD_NOT_ALIVE;
2270 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002271}
2272
Elliott Hughes221229c2013-01-08 18:17:50 -08002273void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002274 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002275 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
jeffhaoa77f0f62012-12-05 17:19:31 -08002276 Thread* thread;
2277 {
2278 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2279 thread = Thread::FromManagedThread(soa, peer);
2280 }
Elliott Hughes4e235312011-12-02 11:34:15 -08002281 if (thread == NULL) {
2282 LOG(WARNING) << "No such thread for resume: " << peer;
2283 return;
2284 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002285 bool needs_resume;
2286 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002287 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002288 needs_resume = thread->GetSuspendCount() > 0;
2289 }
2290 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002291 Runtime::Current()->GetThreadList()->Resume(thread, true);
2292 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002293}
2294
2295void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002296 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002297}
2298
Ian Rogers0399dde2012-06-06 17:09:28 -07002299struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002300 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002301 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002302 : StackVisitor(thread, context), this_object(NULL), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002303
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002304 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2305 // annotalysis.
2306 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002307 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002308 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002309 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002310 this_object = GetThisObject();
2311 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002312 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002313 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002314
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002315 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002316 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002317};
2318
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002319JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2320 JDWP::ObjectId* result) {
2321 ScopedObjectAccessUnchecked soa(Thread::Current());
2322 Thread* thread;
2323 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002324 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002325 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2326 if (error != JDWP::ERR_NONE) {
2327 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002328 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002329 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002330 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2331 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002332 }
Ian Rogers700a4022014-05-19 16:49:03 -07002333 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002334 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002335 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002336 *result = gRegistry->Add(visitor.this_object);
2337 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002338}
2339
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002340JDWP::JdwpError Dbg::GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2341 JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002342 struct GetLocalVisitor : public StackVisitor {
Ian Rogers98379392014-02-24 16:53:16 -08002343 GetLocalVisitor(const ScopedObjectAccessUnchecked& soa, Thread* thread, Context* context,
2344 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002345 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers98379392014-02-24 16:53:16 -08002346 : StackVisitor(thread, context), soa_(soa), frame_id_(frame_id), slot_(slot), tag_(tag),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002347 buf_(buf), width_(width), error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002348
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002349 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2350 // annotalysis.
2351 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002352 if (GetFrameId() != frame_id_) {
2353 return true; // Not our frame, carry on.
Elliott Hughesdbb40792011-11-18 17:05:22 -08002354 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002355 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002356 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002357 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002358 if (m->IsNative()) {
2359 // We can't read local value from native method.
2360 error_ = JDWP::ERR_OPAQUE_FRAME;
2361 return false;
2362 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002363 uint16_t reg = DemangleSlot(slot_, m);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002364 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
Ian Rogers0399dde2012-06-06 17:09:28 -07002365 switch (tag_) {
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002366 case JDWP::JT_BOOLEAN: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002367 CHECK_EQ(width_, 1U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002368 uint32_t intVal;
2369 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2370 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2371 JDWP::Set1(buf_+1, intVal != 0);
2372 } else {
2373 VLOG(jdwp) << "failed to get boolean local " << reg;
2374 error_ = kFailureErrorCode;
2375 }
2376 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002377 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002378 case JDWP::JT_BYTE: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002379 CHECK_EQ(width_, 1U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002380 uint32_t intVal;
2381 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2382 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2383 JDWP::Set1(buf_+1, intVal);
2384 } else {
2385 VLOG(jdwp) << "failed to get byte local " << reg;
2386 error_ = kFailureErrorCode;
2387 }
2388 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002389 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002390 case JDWP::JT_SHORT:
2391 case JDWP::JT_CHAR: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002392 CHECK_EQ(width_, 2U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002393 uint32_t intVal;
2394 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2395 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2396 JDWP::Set2BE(buf_+1, intVal);
2397 } else {
2398 VLOG(jdwp) << "failed to get short/char local " << reg;
2399 error_ = kFailureErrorCode;
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002400 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002401 break;
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002402 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002403 case JDWP::JT_INT: {
2404 CHECK_EQ(width_, 4U);
2405 uint32_t intVal;
2406 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2407 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2408 JDWP::Set4BE(buf_+1, intVal);
2409 } else {
2410 VLOG(jdwp) << "failed to get int local " << reg;
2411 error_ = kFailureErrorCode;
Sebastien Hertz8ebd94a2014-06-17 09:49:21 +00002412 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002413 break;
Sebastien Hertz8ebd94a2014-06-17 09:49:21 +00002414 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002415 case JDWP::JT_FLOAT: {
2416 CHECK_EQ(width_, 4U);
2417 uint32_t intVal;
2418 if (GetVReg(m, reg, kFloatVReg, &intVal)) {
2419 VLOG(jdwp) << "get float local " << reg << " = " << intVal;
2420 JDWP::Set4BE(buf_+1, intVal);
2421 } else {
2422 VLOG(jdwp) << "failed to get float local " << reg;
2423 error_ = kFailureErrorCode;
2424 }
2425 break;
2426 }
2427 case JDWP::JT_ARRAY:
2428 case JDWP::JT_CLASS_LOADER:
2429 case JDWP::JT_CLASS_OBJECT:
2430 case JDWP::JT_OBJECT:
2431 case JDWP::JT_STRING:
2432 case JDWP::JT_THREAD:
2433 case JDWP::JT_THREAD_GROUP: {
2434 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
2435 uint32_t intVal;
2436 if (GetVReg(m, reg, kReferenceVReg, &intVal)) {
2437 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2438 VLOG(jdwp) << "get " << tag_ << " object local " << reg << " = " << o;
2439 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2440 LOG(FATAL) << "Register " << reg << " expected to hold " << tag_ << " object: " << o;
2441 }
2442 tag_ = TagFromObject(soa_, o);
2443 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2444 } else {
2445 VLOG(jdwp) << "failed to get " << tag_ << " object local " << reg;
2446 error_ = kFailureErrorCode;
2447 }
2448 break;
2449 }
2450 case JDWP::JT_DOUBLE: {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002451 CHECK_EQ(width_, 8U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002452 uint32_t lo;
2453 uint32_t hi;
2454 if (GetVReg(m, reg, kDoubleLoVReg, &lo) && GetVReg(m, reg + 1, kDoubleHiVReg, &hi)) {
2455 uint64_t longVal = (static_cast<uint64_t>(hi) << 32) | lo;
2456 VLOG(jdwp) << "get double local " << reg << " = "
2457 << hi << ":" << lo << " = " << longVal;
2458 JDWP::Set8BE(buf_+1, longVal);
2459 } else {
2460 VLOG(jdwp) << "failed to get double local " << reg;
2461 error_ = kFailureErrorCode;
2462 }
2463 break;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002464 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002465 case JDWP::JT_LONG: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002466 CHECK_EQ(width_, 8U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002467 uint32_t lo;
2468 uint32_t hi;
2469 if (GetVReg(m, reg, kLongLoVReg, &lo) && GetVReg(m, reg + 1, kLongHiVReg, &hi)) {
2470 uint64_t longVal = (static_cast<uint64_t>(hi) << 32) | lo;
2471 VLOG(jdwp) << "get long local " << reg << " = "
2472 << hi << ":" << lo << " = " << longVal;
2473 JDWP::Set8BE(buf_+1, longVal);
2474 } else {
2475 VLOG(jdwp) << "failed to get long local " << reg;
2476 error_ = kFailureErrorCode;
2477 }
2478 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002479 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002480 default:
2481 LOG(FATAL) << "Unknown tag " << tag_;
2482 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002483 }
2484
2485 // Prepend tag, which may have been updated.
2486 JDWP::Set1(buf_, tag_);
2487 return false;
2488 }
Ian Rogers98379392014-02-24 16:53:16 -08002489 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002490 const JDWP::FrameId frame_id_;
2491 const int slot_;
2492 JDWP::JdwpTag tag_;
2493 uint8_t* const buf_;
2494 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002495 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002496 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002497
2498 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002499 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002500 Thread* thread;
2501 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2502 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002503 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002504 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002505 // TODO check thread is suspended by the debugger ?
Ian Rogers700a4022014-05-19 16:49:03 -07002506 std::unique_ptr<Context> context(Context::Create());
Ian Rogers98379392014-02-24 16:53:16 -08002507 GetLocalVisitor visitor(soa, thread, context.get(), frame_id, slot, tag, buf, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002508 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002509 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002510}
2511
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002512JDWP::JdwpError Dbg::SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2513 JDWP::JdwpTag tag, uint64_t value, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002514 struct SetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002515 SetLocalVisitor(Thread* thread, Context* context,
Ian Rogers0399dde2012-06-06 17:09:28 -07002516 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
Ian Rogersca190662012-06-26 15:45:57 -07002517 size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002518 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002519 : StackVisitor(thread, context),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002520 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width),
2521 error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002522
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002523 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2524 // annotalysis.
2525 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002526 if (GetFrameId() != frame_id_) {
2527 return true; // Not our frame, carry on.
2528 }
2529 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002530 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002531 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002532 if (m->IsNative()) {
2533 // We can't read local value from native method.
2534 error_ = JDWP::ERR_OPAQUE_FRAME;
2535 return false;
2536 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002537 uint16_t reg = DemangleSlot(slot_, m);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002538 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
Ian Rogers0399dde2012-06-06 17:09:28 -07002539 switch (tag_) {
2540 case JDWP::JT_BOOLEAN:
2541 case JDWP::JT_BYTE:
2542 CHECK_EQ(width_, 1U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002543 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2544 VLOG(jdwp) << "failed to set boolean/byte local " << reg << " = "
2545 << static_cast<uint32_t>(value_);
2546 error_ = kFailureErrorCode;
2547 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002548 break;
2549 case JDWP::JT_SHORT:
2550 case JDWP::JT_CHAR:
2551 CHECK_EQ(width_, 2U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002552 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2553 VLOG(jdwp) << "failed to set short/char local " << reg << " = "
2554 << static_cast<uint32_t>(value_);
2555 error_ = kFailureErrorCode;
2556 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002557 break;
2558 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002559 CHECK_EQ(width_, 4U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002560 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2561 VLOG(jdwp) << "failed to set int local " << reg << " = "
2562 << static_cast<uint32_t>(value_);
2563 error_ = kFailureErrorCode;
2564 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002565 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002566 case JDWP::JT_FLOAT:
2567 CHECK_EQ(width_, 4U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002568 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kFloatVReg)) {
2569 VLOG(jdwp) << "failed to set float local " << reg << " = "
2570 << static_cast<uint32_t>(value_);
2571 error_ = kFailureErrorCode;
2572 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002573 break;
2574 case JDWP::JT_ARRAY:
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002575 case JDWP::JT_CLASS_LOADER:
2576 case JDWP::JT_CLASS_OBJECT:
Ian Rogers0399dde2012-06-06 17:09:28 -07002577 case JDWP::JT_OBJECT:
2578 case JDWP::JT_STRING:
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002579 case JDWP::JT_THREAD:
2580 case JDWP::JT_THREAD_GROUP: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002581 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002582 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value_));
Elliott Hughes64f574f2013-02-20 14:57:12 -08002583 if (o == ObjectRegistry::kInvalidObject) {
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002584 VLOG(jdwp) << tag_ << " object " << o << " is an invalid object";
2585 error_ = JDWP::ERR_INVALID_OBJECT;
2586 } else if (!SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2587 kReferenceVReg)) {
2588 VLOG(jdwp) << "failed to set " << tag_ << " object local " << reg << " = " << o;
2589 error_ = kFailureErrorCode;
Ian Rogers0399dde2012-06-06 17:09:28 -07002590 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002591 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002592 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002593 case JDWP::JT_DOUBLE: {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002594 CHECK_EQ(width_, 8U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002595 const uint32_t lo = static_cast<uint32_t>(value_);
2596 const uint32_t hi = static_cast<uint32_t>(value_ >> 32);
2597 bool success = SetVReg(m, reg, lo, kDoubleLoVReg);
2598 success &= SetVReg(m, reg + 1, hi, kDoubleHiVReg);
2599 if (!success) {
2600 uint64_t longVal = (static_cast<uint64_t>(hi) << 32) | lo;
2601 VLOG(jdwp) << "failed to set double local " << reg << " = "
2602 << hi << ":" << lo << " = " << longVal;
2603 error_ = kFailureErrorCode;
2604 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002605 break;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002606 }
2607 case JDWP::JT_LONG: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002608 CHECK_EQ(width_, 8U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002609 const uint32_t lo = static_cast<uint32_t>(value_);
2610 const uint32_t hi = static_cast<uint32_t>(value_ >> 32);
2611 bool success = SetVReg(m, reg, lo, kLongLoVReg);
2612 success &= SetVReg(m, reg + 1, hi, kLongHiVReg);
2613 if (!success) {
2614 uint64_t longVal = (static_cast<uint64_t>(hi) << 32) | lo;
2615 VLOG(jdwp) << "failed to set double local " << reg << " = "
2616 << hi << ":" << lo << " = " << longVal;
2617 error_ = kFailureErrorCode;
2618 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002619 break;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002620 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002621 default:
2622 LOG(FATAL) << "Unknown tag " << tag_;
2623 break;
2624 }
2625 return false;
2626 }
2627
2628 const JDWP::FrameId frame_id_;
2629 const int slot_;
2630 const JDWP::JdwpTag tag_;
2631 const uint64_t value_;
2632 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002633 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002634 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002635
2636 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002637 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002638 Thread* thread;
2639 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2640 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002641 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002642 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002643 // TODO check thread is suspended by the debugger ?
Ian Rogers700a4022014-05-19 16:49:03 -07002644 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002645 SetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, value, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002646 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002647 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002648}
2649
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002650JDWP::ObjectId Dbg::GetThisObjectIdForEvent(mirror::Object* this_object) {
2651 // If 'this_object' isn't already in the registry, we know that we're not looking for it, so
2652 // there's no point adding it to the registry and burning through ids.
2653 // When registering an event request with an instance filter, we've been given an existing object
2654 // id so it must already be present in the registry when the event fires.
2655 JDWP::ObjectId this_id = 0;
2656 if (this_object != nullptr && gRegistry->Contains(this_object)) {
2657 this_id = gRegistry->Add(this_object);
2658 }
2659 return this_id;
2660}
2661
Ian Rogersef7d42f2014-01-06 12:55:46 -08002662void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002663 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002664 if (!IsDebuggerActive()) {
2665 return;
2666 }
2667 DCHECK(m != nullptr);
2668 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002669 JDWP::JdwpLocation location;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002670 SetLocation(location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002671
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002672 // We need 'this' for InstanceOnly filters only.
2673 JDWP::ObjectId this_id = GetThisObjectIdForEvent(this_object);
Jeff Hao579b0242013-11-18 13:16:49 -08002674 gJdwpState->PostLocationEvent(&location, this_id, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002675}
2676
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002677void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
2678 mirror::Object* this_object, mirror::ArtField* f) {
2679 if (!IsDebuggerActive()) {
2680 return;
2681 }
2682 DCHECK(m != nullptr);
2683 DCHECK(f != nullptr);
2684 JDWP::JdwpLocation location;
2685 SetLocation(location, m, dex_pc);
2686
2687 JDWP::RefTypeId type_id = gRegistry->AddRefType(f->GetDeclaringClass());
2688 JDWP::FieldId field_id = ToFieldId(f);
2689 JDWP::ObjectId this_id = gRegistry->Add(this_object);
2690
2691 gJdwpState->PostFieldEvent(&location, type_id, field_id, this_id, nullptr, false);
2692}
2693
2694void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
2695 mirror::Object* this_object, mirror::ArtField* f,
2696 const JValue* field_value) {
2697 if (!IsDebuggerActive()) {
2698 return;
2699 }
2700 DCHECK(m != nullptr);
2701 DCHECK(f != nullptr);
2702 DCHECK(field_value != nullptr);
2703 JDWP::JdwpLocation location;
2704 SetLocation(location, m, dex_pc);
2705
2706 JDWP::RefTypeId type_id = gRegistry->AddRefType(f->GetDeclaringClass());
2707 JDWP::FieldId field_id = ToFieldId(f);
2708 JDWP::ObjectId this_id = gRegistry->Add(this_object);
2709
2710 gJdwpState->PostFieldEvent(&location, type_id, field_id, this_id, field_value, true);
2711}
2712
2713void Dbg::PostException(const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002714 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002715 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002716 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002717 return;
2718 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002719
Ian Rogers62d6c772013-02-27 08:32:07 -08002720 JDWP::JdwpLocation jdwp_throw_location;
2721 SetLocation(jdwp_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002722 JDWP::JdwpLocation catch_location;
Elliott Hughescaf76542012-06-28 16:08:22 -07002723 SetLocation(catch_location, catch_method, catch_dex_pc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002724
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002725 // We need 'this' for InstanceOnly filters only.
2726 JDWP::ObjectId this_id = GetThisObjectIdForEvent(throw_location.GetThis());
Elliott Hughes64f574f2013-02-20 14:57:12 -08002727 JDWP::ObjectId exception_id = gRegistry->Add(exception_object);
2728 JDWP::RefTypeId exception_class_id = gRegistry->AddRefType(exception_object->GetClass());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002729
Ian Rogers62d6c772013-02-27 08:32:07 -08002730 gJdwpState->PostException(&jdwp_throw_location, exception_id, exception_class_id, &catch_location,
2731 this_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002732}
2733
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002734void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002735 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002736 return;
2737 }
2738
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002739 // OLD-TODO - we currently always send both "verified" and "prepared" since
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002740 // debuggers seem to like that. There might be some advantage to honesty,
2741 // since the class may not yet be verified.
2742 int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01002743 JDWP::JdwpTypeTag tag = GetTypeTag(c);
Mathieu Chartierf8322842014-05-16 10:59:25 -07002744 gJdwpState->PostClassPrepare(tag, gRegistry->Add(c), c->GetDescriptor(), state);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002745}
2746
Ian Rogers62d6c772013-02-27 08:32:07 -08002747void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002748 mirror::ArtMethod* m, uint32_t dex_pc,
2749 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002750 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002751 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002752 }
2753
Elliott Hughes86964332012-02-15 19:37:42 -08002754 if (IsBreakpoint(m, dex_pc)) {
2755 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002756 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002757
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002758 // If the debugger is single-stepping one of our threads, check to
2759 // see if we're that thread and we've reached a step point.
2760 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2761 DCHECK(single_step_control != nullptr);
2762 if (single_step_control->is_active) {
2763 CHECK(!m->IsNative());
2764 if (single_step_control->step_depth == JDWP::SD_INTO) {
2765 // Step into method calls. We break when the line number
2766 // or method pointer changes. If we're in SS_MIN mode, we
2767 // always stop.
2768 if (single_step_control->method != m) {
2769 event_flags |= kSingleStep;
2770 VLOG(jdwp) << "SS new method";
2771 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2772 event_flags |= kSingleStep;
2773 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002774 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002775 event_flags |= kSingleStep;
2776 VLOG(jdwp) << "SS new line";
2777 }
2778 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2779 // Step over method calls. We break when the line number is
2780 // different and the frame depth is <= the original frame
2781 // depth. (We can't just compare on the method, because we
2782 // might get unrolled past it by an exception, and it's tricky
2783 // to identify recursion.)
2784
2785 int stack_depth = GetStackDepth(thread);
2786
2787 if (stack_depth < single_step_control->stack_depth) {
2788 // Popped up one or more frames, always trigger.
2789 event_flags |= kSingleStep;
2790 VLOG(jdwp) << "SS method pop";
2791 } else if (stack_depth == single_step_control->stack_depth) {
2792 // Same depth, see if we moved.
2793 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002794 event_flags |= kSingleStep;
2795 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002796 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002797 event_flags |= kSingleStep;
2798 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002799 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002800 }
2801 } else {
2802 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2803 // Return from the current method. We break when the frame
2804 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002805
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002806 // This differs from the "method exit" break in that it stops
2807 // with the PC at the next instruction in the returned-to
2808 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002809
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002810 int stack_depth = GetStackDepth(thread);
2811 if (stack_depth < single_step_control->stack_depth) {
2812 event_flags |= kSingleStep;
2813 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002814 }
2815 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002816 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002817
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002818 // If there's something interesting going on, see if it matches one
2819 // of the debugger filters.
2820 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002821 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002822 }
2823}
2824
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002825size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2826 switch (instrumentation_event) {
2827 case instrumentation::Instrumentation::kMethodEntered:
2828 return &method_enter_event_ref_count_;
2829 case instrumentation::Instrumentation::kMethodExited:
2830 return &method_exit_event_ref_count_;
2831 case instrumentation::Instrumentation::kDexPcMoved:
2832 return &dex_pc_change_event_ref_count_;
2833 case instrumentation::Instrumentation::kFieldRead:
2834 return &field_read_event_ref_count_;
2835 case instrumentation::Instrumentation::kFieldWritten:
2836 return &field_write_event_ref_count_;
2837 case instrumentation::Instrumentation::kExceptionCaught:
2838 return &exception_catch_event_ref_count_;
2839 default:
2840 return nullptr;
2841 }
2842}
2843
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002844// Process request while all mutator threads are suspended.
2845void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002846 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002847 switch (request.kind) {
2848 case DeoptimizationRequest::kNothing:
2849 LOG(WARNING) << "Ignoring empty deoptimization request.";
2850 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002851 case DeoptimizationRequest::kRegisterForEvent:
2852 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
2853 request.instrumentation_event);
2854 instrumentation->AddListener(&gDebugInstrumentationListener, request.instrumentation_event);
2855 instrumentation_events_ |= request.instrumentation_event;
2856 break;
2857 case DeoptimizationRequest::kUnregisterForEvent:
2858 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
2859 request.instrumentation_event);
2860 instrumentation->RemoveListener(&gDebugInstrumentationListener,
2861 request.instrumentation_event);
2862 instrumentation_events_ &= ~request.instrumentation_event;
2863 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002864 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002865 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002866 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002867 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002868 break;
2869 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002870 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002871 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002872 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002873 break;
2874 case DeoptimizationRequest::kSelectiveDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002875 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.method) << " ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002876 instrumentation->Deoptimize(request.method);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002877 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.method) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002878 break;
2879 case DeoptimizationRequest::kSelectiveUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002880 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.method) << " ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002881 instrumentation->Undeoptimize(request.method);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002882 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.method) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002883 break;
2884 default:
2885 LOG(FATAL) << "Unsupported deoptimization request kind " << request.kind;
2886 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002887 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002888}
2889
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002890void Dbg::DelayFullUndeoptimization() {
2891 MutexLock mu(Thread::Current(), *deoptimization_lock_);
2892 ++delayed_full_undeoptimization_count_;
2893 DCHECK_LE(delayed_full_undeoptimization_count_, full_deoptimization_event_count_);
2894}
2895
2896void Dbg::ProcessDelayedFullUndeoptimizations() {
2897 // TODO: avoid taking the lock twice (once here and once in ManageDeoptimization).
2898 {
2899 MutexLock mu(Thread::Current(), *deoptimization_lock_);
2900 while (delayed_full_undeoptimization_count_ > 0) {
2901 DeoptimizationRequest req;
2902 req.kind = DeoptimizationRequest::kFullUndeoptimization;
2903 req.method = nullptr;
2904 RequestDeoptimizationLocked(req);
2905 --delayed_full_undeoptimization_count_;
2906 }
2907 }
2908 ManageDeoptimization();
2909}
2910
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002911void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
2912 if (req.kind == DeoptimizationRequest::kNothing) {
2913 // Nothing to do.
2914 return;
2915 }
2916 MutexLock mu(Thread::Current(), *deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002917 RequestDeoptimizationLocked(req);
2918}
2919
2920void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002921 switch (req.kind) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002922 case DeoptimizationRequest::kRegisterForEvent: {
2923 DCHECK_NE(req.instrumentation_event, 0u);
2924 size_t* counter = GetReferenceCounterForEvent(req.instrumentation_event);
2925 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
2926 req.instrumentation_event);
2927 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02002928 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002929 deoptimization_requests_.size(), req.instrumentation_event);
2930 deoptimization_requests_.push_back(req);
2931 }
2932 *counter = *counter + 1;
2933 break;
2934 }
2935 case DeoptimizationRequest::kUnregisterForEvent: {
2936 DCHECK_NE(req.instrumentation_event, 0u);
2937 size_t* counter = GetReferenceCounterForEvent(req.instrumentation_event);
2938 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
2939 req.instrumentation_event);
2940 *counter = *counter - 1;
2941 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02002942 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002943 deoptimization_requests_.size(), req.instrumentation_event);
2944 deoptimization_requests_.push_back(req);
2945 }
2946 break;
2947 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002948 case DeoptimizationRequest::kFullDeoptimization: {
2949 DCHECK(req.method == nullptr);
2950 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002951 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2952 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002953 deoptimization_requests_.push_back(req);
2954 }
2955 ++full_deoptimization_event_count_;
2956 break;
2957 }
2958 case DeoptimizationRequest::kFullUndeoptimization: {
2959 DCHECK(req.method == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02002960 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002961 --full_deoptimization_event_count_;
2962 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002963 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2964 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002965 deoptimization_requests_.push_back(req);
2966 }
2967 break;
2968 }
2969 case DeoptimizationRequest::kSelectiveDeoptimization: {
2970 DCHECK(req.method != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002971 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2972 << " for deoptimization of " << PrettyMethod(req.method);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002973 deoptimization_requests_.push_back(req);
2974 break;
2975 }
2976 case DeoptimizationRequest::kSelectiveUndeoptimization: {
2977 DCHECK(req.method != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002978 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2979 << " for undeoptimization of " << PrettyMethod(req.method);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002980 deoptimization_requests_.push_back(req);
2981 break;
2982 }
2983 default: {
2984 LOG(FATAL) << "Unknown deoptimization request kind " << req.kind;
2985 break;
2986 }
2987 }
2988}
2989
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002990void Dbg::ManageDeoptimization() {
2991 Thread* const self = Thread::Current();
2992 {
2993 // Avoid suspend/resume if there is no pending request.
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002994 MutexLock mu(self, *deoptimization_lock_);
2995 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002996 return;
2997 }
2998 }
2999 CHECK_EQ(self->GetState(), kRunnable);
3000 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3001 // We need to suspend mutator threads first.
3002 Runtime* const runtime = Runtime::Current();
3003 runtime->GetThreadList()->SuspendAll();
3004 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003005 {
3006 MutexLock mu(self, *deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003007 size_t req_index = 0;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003008 for (const DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003009 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003010 ProcessDeoptimizationRequest(request);
3011 }
3012 deoptimization_requests_.clear();
3013 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003014 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3015 runtime->GetThreadList()->ResumeAll();
3016 self->TransitionFromSuspendedToRunnable();
3017}
3018
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003019static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3020 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003021 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003022 if (code_item == nullptr) {
3023 // TODO We should not be asked to watch location in a native or abstract method so the code item
3024 // should never be null. We could just check we never encounter this case.
3025 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003026 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003027 StackHandleScope<2> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003028 mirror::Class* declaring_class = m->GetDeclaringClass();
3029 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3030 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
3031 verifier::MethodVerifier verifier(dex_cache->GetDexFile(), &dex_cache, &class_loader,
3032 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), m,
Ian Rogers46960fe2014-05-23 10:43:43 -07003033 m->GetAccessFlags(), false, true, false);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003034 // Note: we don't need to verify the method.
3035 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3036}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003037
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003038static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
3039 EXCLUSIVE_LOCKS_REQUIRED(Locks::breakpoint_lock_) {
3040 for (const Breakpoint& breakpoint : gBreakpoints) {
3041 if (breakpoint.method == m) {
3042 return &breakpoint;
3043 }
3044 }
3045 return nullptr;
3046}
3047
3048// Sanity checks all existing breakpoints on the same method.
3049static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m, bool need_full_deoptimization)
3050 EXCLUSIVE_LOCKS_REQUIRED(Locks::breakpoint_lock_) {
3051 if (kIsDebugBuild) {
3052 for (const Breakpoint& breakpoint : gBreakpoints) {
3053 CHECK_EQ(need_full_deoptimization, breakpoint.need_full_deoptimization);
3054 }
3055 if (need_full_deoptimization) {
3056 // We should have deoptimized everything but not "selectively" deoptimized this method.
3057 CHECK(Runtime::Current()->GetInstrumentation()->AreAllMethodsDeoptimized());
3058 CHECK(!Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3059 } else {
3060 // We should have "selectively" deoptimized this method.
3061 // Note: while we have not deoptimized everything for this method, we may have done it for
3062 // another event.
3063 CHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3064 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003065 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003066}
3067
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003068// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3069// request if we need to deoptimize.
3070void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3071 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003072 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003073 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003074
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003075 MutexLock mu(self, *Locks::breakpoint_lock_);
3076 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3077 bool need_full_deoptimization;
3078 if (existing_breakpoint == nullptr) {
3079 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3080 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3081 need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3082 if (need_full_deoptimization) {
3083 req->kind = DeoptimizationRequest::kFullDeoptimization;
3084 req->method = nullptr;
3085 } else {
3086 req->kind = DeoptimizationRequest::kSelectiveDeoptimization;
3087 req->method = m;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003088 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003089 } else {
3090 // There is at least one breakpoint for this method: we don't need to deoptimize.
3091 req->kind = DeoptimizationRequest::kNothing;
3092 req->method = nullptr;
3093
3094 need_full_deoptimization = existing_breakpoint->need_full_deoptimization;
3095 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003096 }
3097
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003098 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, need_full_deoptimization));
3099 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3100 << gBreakpoints[gBreakpoints.size() - 1];
3101}
3102
3103// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3104// request if we need to undeoptimize.
3105void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3106 mirror::ArtMethod* m = FromMethodId(location->method_id);
3107 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
3108
3109 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
3110 bool need_full_deoptimization = false;
3111 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
3112 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == location->dex_pc) {
3113 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
3114 need_full_deoptimization = gBreakpoints[i].need_full_deoptimization;
3115 DCHECK_NE(need_full_deoptimization, Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3116 gBreakpoints.erase(gBreakpoints.begin() + i);
3117 break;
3118 }
3119 }
3120 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3121 if (existing_breakpoint == nullptr) {
3122 // There is no more breakpoint on this method: we need to undeoptimize.
3123 if (need_full_deoptimization) {
3124 // This method required full deoptimization: we need to undeoptimize everything.
3125 req->kind = DeoptimizationRequest::kFullUndeoptimization;
3126 req->method = nullptr;
3127 } else {
3128 // This method required selective deoptimization: we need to undeoptimize only that method.
3129 req->kind = DeoptimizationRequest::kSelectiveUndeoptimization;
3130 req->method = m;
3131 }
3132 } else {
3133 // There is at least one breakpoint for this method: we don't need to undeoptimize.
3134 req->kind = DeoptimizationRequest::kNothing;
3135 req->method = nullptr;
3136 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
Elliott Hughes86964332012-02-15 19:37:42 -08003137 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003138}
3139
Jeff Hao449db332013-04-12 18:30:52 -07003140// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3141// cause suspension if the thread is the current thread.
3142class ScopedThreadSuspension {
3143 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003144 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003145 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003146 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Jeff Hao449db332013-04-12 18:30:52 -07003147 thread_(NULL),
3148 error_(JDWP::ERR_NONE),
3149 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003150 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003151 ScopedObjectAccessUnchecked soa(self);
3152 {
3153 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
3154 error_ = DecodeThread(soa, thread_id, thread_);
3155 }
3156 if (error_ == JDWP::ERR_NONE) {
3157 if (thread_ == soa.Self()) {
3158 self_suspend_ = true;
3159 } else {
3160 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
3161 jobject thread_peer = gRegistry->GetJObject(thread_id);
3162 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003163 Thread* suspended_thread = ThreadList::SuspendThreadByPeer(thread_peer, true, true,
3164 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07003165 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
3166 if (suspended_thread == NULL) {
3167 // Thread terminated from under us while suspending.
3168 error_ = JDWP::ERR_INVALID_THREAD;
3169 } else {
3170 CHECK_EQ(suspended_thread, thread_);
3171 other_suspend_ = true;
3172 }
3173 }
3174 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003175 }
Elliott Hughes86964332012-02-15 19:37:42 -08003176
Jeff Hao449db332013-04-12 18:30:52 -07003177 Thread* GetThread() const {
3178 return thread_;
3179 }
3180
3181 JDWP::JdwpError GetError() const {
3182 return error_;
3183 }
3184
3185 ~ScopedThreadSuspension() {
3186 if (other_suspend_) {
3187 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3188 }
3189 }
3190
3191 private:
3192 Thread* thread_;
3193 JDWP::JdwpError error_;
3194 bool self_suspend_;
3195 bool other_suspend_;
3196};
3197
3198JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3199 JDWP::JdwpStepDepth step_depth) {
3200 Thread* self = Thread::Current();
3201 ScopedThreadSuspension sts(self, thread_id);
3202 if (sts.GetError() != JDWP::ERR_NONE) {
3203 return sts.GetError();
3204 }
3205
Elliott Hughes2435a572012-02-17 16:07:41 -08003206 //
3207 // Work out what Method* we're in, the current line number, and how deep the stack currently
3208 // is for step-out.
3209 //
3210
Ian Rogers0399dde2012-06-06 17:09:28 -07003211 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003212 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
3213 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003214 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003215 : StackVisitor(thread, NULL), single_step_control_(single_step_control),
3216 line_number_(line_number) {
3217 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
3218 single_step_control_->method = NULL;
3219 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08003220 }
Ian Rogersca190662012-06-26 15:45:57 -07003221
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003222 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3223 // annotalysis.
3224 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003225 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003226 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003227 ++single_step_control_->stack_depth;
3228 if (single_step_control_->method == NULL) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003229 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003230 single_step_control_->method = m;
3231 *line_number_ = -1;
Elliott Hughes2435a572012-02-17 16:07:41 -08003232 if (dex_cache != NULL) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003233 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003234 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003235 }
Elliott Hughes86964332012-02-15 19:37:42 -08003236 }
3237 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003238 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003239 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003240
3241 SingleStepControl* const single_step_control_;
3242 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08003243 };
Jeff Hao449db332013-04-12 18:30:52 -07003244
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003245 Thread* const thread = sts.GetThread();
3246 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
3247 DCHECK(single_step_control != nullptr);
3248 int32_t line_number = -1;
3249 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07003250 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003251
Elliott Hughes2435a572012-02-17 16:07:41 -08003252 //
3253 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
3254 //
3255
3256 struct DebugCallbackContext {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003257 explicit DebugCallbackContext(SingleStepControl* single_step_control, int32_t line_number,
3258 const DexFile::CodeItem* code_item)
3259 : single_step_control_(single_step_control), line_number_(line_number), code_item_(code_item),
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003260 last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003261 }
3262
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003263 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003264 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003265 if (static_cast<int32_t>(line_number) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003266 if (!context->last_pc_valid) {
3267 // Everything from this address until the next line change is ours.
3268 context->last_pc = address;
3269 context->last_pc_valid = true;
3270 }
3271 // Otherwise, if we're already in a valid range for this line,
3272 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003273 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003274 // Add everything from the last entry up until here to the set
3275 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003276 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003277 }
3278 context->last_pc_valid = false;
3279 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003280 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003281 }
3282
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003283 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003284 // If the line number was the last in the position table...
3285 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003286 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003287 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003288 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003289 }
3290 }
3291 }
3292
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003293 SingleStepControl* const single_step_control_;
3294 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003295 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003296 bool last_pc_valid;
3297 uint32_t last_pc;
3298 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003299 single_step_control->dex_pcs.clear();
Ian Rogersef7d42f2014-01-06 12:55:46 -08003300 mirror::ArtMethod* m = single_step_control->method;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003301 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003302 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003303 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003304 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
3305 DebugCallbackContext::Callback, NULL, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003306 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003307
3308 //
3309 // Everything else...
3310 //
3311
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003312 single_step_control->step_size = step_size;
3313 single_step_control->step_depth = step_depth;
3314 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08003315
Elliott Hughes2435a572012-02-17 16:07:41 -08003316 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003317 VLOG(jdwp) << "Single-step thread: " << *thread;
3318 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
3319 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
3320 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
3321 VLOG(jdwp) << "Single-step current line: " << line_number;
3322 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08003323 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003324 for (uint32_t dex_pc : single_step_control->dex_pcs) {
3325 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003326 }
3327 }
3328
3329 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003330}
3331
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003332void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3333 ScopedObjectAccessUnchecked soa(Thread::Current());
3334 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
3335 Thread* thread;
3336 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003337 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003338 SingleStepControl* single_step_control = thread->GetSingleStepControl();
3339 DCHECK(single_step_control != nullptr);
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003340 single_step_control->Clear();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003341 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003342}
3343
Elliott Hughes45651fd2012-02-21 15:48:20 -08003344static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3345 switch (tag) {
3346 default:
3347 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
3348
3349 // Primitives.
3350 case JDWP::JT_BYTE: return 'B';
3351 case JDWP::JT_CHAR: return 'C';
3352 case JDWP::JT_FLOAT: return 'F';
3353 case JDWP::JT_DOUBLE: return 'D';
3354 case JDWP::JT_INT: return 'I';
3355 case JDWP::JT_LONG: return 'J';
3356 case JDWP::JT_SHORT: return 'S';
3357 case JDWP::JT_VOID: return 'V';
3358 case JDWP::JT_BOOLEAN: return 'Z';
3359
3360 // Reference types.
3361 case JDWP::JT_ARRAY:
3362 case JDWP::JT_OBJECT:
3363 case JDWP::JT_STRING:
3364 case JDWP::JT_THREAD:
3365 case JDWP::JT_THREAD_GROUP:
3366 case JDWP::JT_CLASS_LOADER:
3367 case JDWP::JT_CLASS_OBJECT:
3368 return 'L';
3369 }
3370}
3371
Elliott Hughes88d63092013-01-09 09:55:54 -08003372JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3373 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003374 uint32_t arg_count, uint64_t* arg_values,
3375 JDWP::JdwpTag* arg_types, uint32_t options,
3376 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3377 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003378 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3379
3380 Thread* targetThread = NULL;
3381 DebugInvokeReq* req = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003382 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003383 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003384 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003385 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08003386 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread);
3387 if (error != JDWP::ERR_NONE) {
3388 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3389 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003390 }
3391 req = targetThread->GetInvokeReq();
3392 if (!req->ready) {
3393 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3394 return JDWP::ERR_INVALID_THREAD;
3395 }
3396
3397 /*
3398 * We currently have a bug where we don't successfully resume the
3399 * target thread if the suspend count is too deep. We're expected to
3400 * require one "resume" for each "suspend", but when asked to execute
3401 * a method we have to resume fully and then re-suspend it back to the
3402 * same level. (The easiest way to cause this is to type "suspend"
3403 * multiple times in jdb.)
3404 *
3405 * It's unclear what this means when the event specifies "resume all"
3406 * and some threads are suspended more deeply than others. This is
3407 * a rare problem, so for now we just prevent it from hanging forever
3408 * by rejecting the method invocation request. Without this, we will
3409 * be stuck waiting on a suspended thread.
3410 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003411 int suspend_count;
3412 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003413 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003414 suspend_count = targetThread->GetSuspendCount();
3415 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003416 if (suspend_count > 1) {
3417 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003418 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003419 }
3420
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003421 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003422 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08003423 if (receiver == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003424 return JDWP::ERR_INVALID_OBJECT;
3425 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003426
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003427 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08003428 if (thread == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003429 return JDWP::ERR_INVALID_OBJECT;
3430 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003431 // TODO: check that 'thread' is actually a java.lang.Thread!
3432
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003433 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003434 if (c == NULL) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003435 return status;
3436 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003437
Brian Carlstromea46f952013-07-30 01:26:50 -07003438 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003439 if (m->IsStatic() != (receiver == NULL)) {
3440 return JDWP::ERR_INVALID_METHODID;
3441 }
3442 if (m->IsStatic()) {
3443 if (m->GetDeclaringClass() != c) {
3444 return JDWP::ERR_INVALID_METHODID;
3445 }
3446 } else {
3447 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3448 return JDWP::ERR_INVALID_METHODID;
3449 }
3450 }
3451
3452 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003453 uint32_t shorty_len = 0;
3454 const char* shorty = m->GetShorty(&shorty_len);
3455 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003456 return JDWP::ERR_ILLEGAL_ARGUMENT;
3457 }
Elliott Hughes09201632013-04-15 15:50:07 -07003458
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003459 {
3460 StackHandleScope<3> hs(soa.Self());
3461 MethodHelper mh(hs.NewHandle(m));
3462 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3463 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3464 const DexFile::TypeList* types = m->GetParameterTypeList();
3465 for (size_t i = 0; i < arg_count; ++i) {
3466 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003467 return JDWP::ERR_ILLEGAL_ARGUMENT;
3468 }
3469
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003470 if (shorty[i + 1] == 'L') {
3471 // Did we really get an argument of an appropriate reference type?
3472 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
3473 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i]);
3474 if (argument == ObjectRegistry::kInvalidObject) {
3475 return JDWP::ERR_INVALID_OBJECT;
3476 }
3477 if (argument != NULL && !argument->InstanceOf(parameter_type)) {
3478 return JDWP::ERR_ILLEGAL_ARGUMENT;
3479 }
3480
3481 // Turn the on-the-wire ObjectId into a jobject.
3482 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3483 v.l = gRegistry->GetJObject(arg_values[i]);
3484 }
Elliott Hughes09201632013-04-15 15:50:07 -07003485 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003486 // Update in case it moved.
3487 m = mh.GetMethod();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003488 }
3489
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003490 req->receiver = receiver;
3491 req->thread = thread;
3492 req->klass = c;
3493 req->method = m;
3494 req->arg_count = arg_count;
3495 req->arg_values = arg_values;
3496 req->options = options;
3497 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003498 }
3499
3500 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3501 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3502 // call, and it's unwise to hold it during WaitForSuspend.
3503
3504 {
3505 /*
3506 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003507 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003508 * run out of memory. It's also a good idea to change it before locking
3509 * the invokeReq mutex, although that should never be held for long.
3510 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003511 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003512
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003513 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003514 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003515 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003516
3517 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003518 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003519 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003520 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003521 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003522 thread_list->Resume(targetThread, true);
3523 }
3524
3525 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003526 while (req->invoke_needed) {
3527 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003528 }
3529 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003530 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003531
3532 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003533 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003534 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003535 }
3536
3537 /*
3538 * Suspend the threads. We waited for the target thread to suspend
3539 * itself, so all we need to do is suspend the others.
3540 *
3541 * The suspendAllThreads() call will double-suspend the event thread,
3542 * so we want to resume the target thread once to keep the books straight.
3543 */
3544 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003545 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003546 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003547 thread_list->SuspendAllForDebugger();
3548 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003549 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003550 thread_list->Resume(targetThread, true);
3551 }
3552
3553 // Copy the result.
3554 *pResultTag = req->result_tag;
3555 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003556 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003557 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003558 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003559 }
3560 *pExceptionId = req->exception;
3561 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003562}
3563
3564void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003565 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003566
Elliott Hughes81ff3182012-03-23 20:35:56 -07003567 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003568 // to preserve that across the method invocation.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003569 StackHandleScope<4> hs(soa.Self());
3570 auto old_throw_this_object = hs.NewHandle<mirror::Object>(nullptr);
3571 auto old_throw_method = hs.NewHandle<mirror::ArtMethod>(nullptr);
3572 auto old_exception = hs.NewHandle<mirror::Throwable>(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003573 uint32_t old_throw_dex_pc;
Sebastien Hertz9f102032014-05-23 08:59:42 +02003574 bool old_exception_report_flag;
Ian Rogers62d6c772013-02-27 08:32:07 -08003575 {
3576 ThrowLocation old_throw_location;
3577 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003578 old_throw_this_object.Assign(old_throw_location.GetThis());
3579 old_throw_method.Assign(old_throw_location.GetMethod());
3580 old_exception.Assign(old_exception_obj);
Ian Rogers62d6c772013-02-27 08:32:07 -08003581 old_throw_dex_pc = old_throw_location.GetDexPc();
Sebastien Hertz9f102032014-05-23 08:59:42 +02003582 old_exception_report_flag = soa.Self()->IsExceptionReportedToInstrumentation();
Ian Rogers62d6c772013-02-27 08:32:07 -08003583 soa.Self()->ClearException();
3584 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003585
3586 // Translate the method through the vtable, unless the debugger wants to suppress it.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003587 Handle<mirror::ArtMethod> m(hs.NewHandle(pReq->method));
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003588 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != NULL) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003589 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.Get());
3590 if (actual_method != m.Get()) {
3591 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get()) << " to " << PrettyMethod(actual_method);
3592 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003593 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003594 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003595 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003596 << " receiver=" << pReq->receiver
3597 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003598 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003599
3600 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3601
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003602 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.Get()),
Ian Rogers53b8b092014-03-13 23:45:53 -07003603 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003604
Ian Rogers62d6c772013-02-27 08:32:07 -08003605 mirror::Throwable* exception = soa.Self()->GetException(NULL);
3606 soa.Self()->ClearException();
3607 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003608 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003609 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003610 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3611 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003612 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003613 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3614 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003615 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003616 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003617 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003618 pReq->result_tag = new_tag;
3619 }
3620
3621 /*
3622 * Register the object. We don't actually need an ObjectId yet,
3623 * but we do need to be sure that the GC won't move or discard the
3624 * object when we switch out of RUNNING. The ObjectId conversion
3625 * will add the object to the "do not touch" list.
3626 *
3627 * We can't use the "tracked allocation" mechanism here because
3628 * the object is going to be handed off to a different thread.
3629 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003630 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003631 }
3632
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003633 if (old_exception.Get() != NULL) {
3634 ThrowLocation gc_safe_throw_location(old_throw_this_object.Get(), old_throw_method.Get(),
Ian Rogers62d6c772013-02-27 08:32:07 -08003635 old_throw_dex_pc);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003636 soa.Self()->SetException(gc_safe_throw_location, old_exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +02003637 soa.Self()->SetExceptionReportedToInstrumentation(old_exception_report_flag);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003638 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003639}
3640
Elliott Hughesd07986f2011-12-06 18:27:45 -08003641/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003642 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003643 * need to process each, accumulate the replies, and ship the whole thing
3644 * back.
3645 *
3646 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3647 * and includes the chunk type/length, followed by the data.
3648 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003649 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003650 * chunk. If this becomes inconvenient we will need to adapt.
3651 */
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003652bool Dbg::DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003653 Thread* self = Thread::Current();
3654 JNIEnv* env = self->GetJniEnv();
3655
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003656 uint32_t type = request.ReadUnsigned32("type");
3657 uint32_t length = request.ReadUnsigned32("length");
3658
3659 // Create a byte[] corresponding to 'request'.
3660 size_t request_length = request.size();
3661 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003662 if (dataArray.get() == NULL) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003663 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003664 env->ExceptionClear();
3665 return false;
3666 }
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003667 env->SetByteArrayRegion(dataArray.get(), 0, request_length, reinterpret_cast<const jbyte*>(request.data()));
3668 request.Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003669
3670 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003671 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003672 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003673 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003674 return false;
3675 }
3676
3677 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003678 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3679 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003680 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003681 if (env->ExceptionCheck()) {
3682 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3683 env->ExceptionDescribe();
3684 env->ExceptionClear();
3685 return false;
3686 }
3687
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003688 if (chunk.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003689 return false;
3690 }
3691
3692 /*
3693 * Pull the pieces out of the chunk. We copy the results into a
3694 * newly-allocated buffer that the caller can free. We don't want to
3695 * continue using the Chunk object because nothing has a reference to it.
3696 *
3697 * We could avoid this by returning type/data/offset/length and having
3698 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003699 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003700 * if we have responses for multiple chunks.
3701 *
3702 * So we're pretty much stuck with copying data around multiple times.
3703 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003704 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 -08003705 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003706 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003707 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003708
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003709 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 -07003710 if (length == 0 || replyData.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003711 return false;
3712 }
3713
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003714 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003715 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
3716 if (reply == NULL) {
3717 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3718 return false;
3719 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003720 JDWP::Set4BE(reply + 0, type);
3721 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003722 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003723
3724 *pReplyBuf = reply;
3725 *pReplyLen = length + kChunkHdrLen;
3726
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003727 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003728 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003729}
3730
Elliott Hughesa2155262011-11-16 16:26:58 -08003731void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003732 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003733
3734 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003735 if (self->GetState() != kRunnable) {
3736 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3737 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003738 }
3739
3740 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003741 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003742 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3743 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3744 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003745 if (env->ExceptionCheck()) {
3746 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3747 env->ExceptionDescribe();
3748 env->ExceptionClear();
3749 }
3750}
3751
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003752void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003753 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003754}
3755
3756void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003757 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003758 gDdmThreadNotification = false;
3759}
3760
3761/*
Elliott Hughes82188472011-11-07 18:11:48 -08003762 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003763 *
3764 * Because we broadcast the full set of threads when the notifications are
3765 * first enabled, it's possible for "thread" to be actively executing.
3766 */
Elliott Hughes82188472011-11-07 18:11:48 -08003767void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003768 if (!gDdmThreadNotification) {
3769 return;
3770 }
3771
Elliott Hughes82188472011-11-07 18:11:48 -08003772 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003773 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003774 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003775 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003776 } else {
3777 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003778 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003779 StackHandleScope<1> hs(soa.Self());
3780 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
3781 size_t char_count = (name.Get() != NULL) ? name->GetLength() : 0;
3782 const jchar* chars = (name.Get() != NULL) ? name->GetCharArray()->GetData() : NULL;
Elliott Hughes82188472011-11-07 18:11:48 -08003783
Elliott Hughes21f32d72011-11-09 17:44:13 -08003784 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003785 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003786 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003787 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3788 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003789 }
3790}
3791
Elliott Hughes47fce012011-10-25 18:37:19 -07003792void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003793 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003794 gDdmThreadNotification = enable;
3795 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003796 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3797 // see a suspension in progress and block until that ends. They then post their own start
3798 // notification.
3799 SuspendVM();
3800 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003801 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003802 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003803 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003804 threads = Runtime::Current()->GetThreadList()->GetList();
3805 }
3806 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003807 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003808 for (Thread* thread : threads) {
3809 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003810 }
3811 }
3812 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003813 }
3814}
3815
Elliott Hughesa2155262011-11-16 16:26:58 -08003816void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003817 if (IsDebuggerActive()) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07003818 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08003819 JDWP::ObjectId id = gRegistry->Add(t->GetPeer());
Elliott Hughes82188472011-11-07 18:11:48 -08003820 gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003821 }
Elliott Hughes82188472011-11-07 18:11:48 -08003822 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003823}
3824
3825void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003826 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003827}
3828
3829void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003830 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003831}
3832
Elliott Hughes82188472011-11-07 18:11:48 -08003833void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003834 CHECK(buf != NULL);
3835 iovec vec[1];
3836 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3837 vec[0].iov_len = byte_count;
3838 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003839}
3840
Elliott Hughes21f32d72011-11-09 17:44:13 -08003841void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3842 DdmSendChunk(type, bytes.size(), &bytes[0]);
3843}
3844
Brian Carlstromf5293522013-07-19 00:24:00 -07003845void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003846 if (gJdwpState == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003847 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003848 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003849 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003850 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003851}
3852
Elliott Hughes767a1472011-10-26 18:49:02 -07003853int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3854 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003855 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003856 return true;
3857 }
3858
3859 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
3860 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
3861 return false;
3862 }
3863
3864 gDdmHpifWhen = when;
3865 return true;
3866}
3867
3868bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
3869 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
3870 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
3871 return false;
3872 }
3873
3874 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
3875 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
3876 return false;
3877 }
3878
3879 if (native) {
3880 gDdmNhsgWhen = when;
3881 gDdmNhsgWhat = what;
3882 } else {
3883 gDdmHpsgWhen = when;
3884 gDdmHpsgWhat = what;
3885 }
3886 return true;
3887}
3888
Elliott Hughes7162ad92011-10-27 14:08:42 -07003889void Dbg::DdmSendHeapInfo(HpifWhen reason) {
3890 // If there's a one-shot 'when', reset it.
3891 if (reason == gDdmHpifWhen) {
3892 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
3893 gDdmHpifWhen = HPIF_WHEN_NEVER;
3894 }
3895 }
3896
3897 /*
3898 * Chunk HPIF (client --> server)
3899 *
3900 * Heap Info. General information about the heap,
3901 * suitable for a summary display.
3902 *
3903 * [u4]: number of heaps
3904 *
3905 * For each heap:
3906 * [u4]: heap ID
3907 * [u8]: timestamp in ms since Unix epoch
3908 * [u1]: capture reason (same as 'when' value from server)
3909 * [u4]: max heap size in bytes (-Xmx)
3910 * [u4]: current heap size in bytes
3911 * [u4]: current number of bytes allocated
3912 * [u4]: current number of objects allocated
3913 */
3914 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07003915 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08003916 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08003917 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003918 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08003919 JDWP::Append8BE(bytes, MilliTime());
3920 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003921 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
3922 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003923 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
3924 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08003925 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
3926 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07003927}
3928
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003929enum HpsgSolidity {
3930 SOLIDITY_FREE = 0,
3931 SOLIDITY_HARD = 1,
3932 SOLIDITY_SOFT = 2,
3933 SOLIDITY_WEAK = 3,
3934 SOLIDITY_PHANTOM = 4,
3935 SOLIDITY_FINALIZABLE = 5,
3936 SOLIDITY_SWEEP = 6,
3937};
3938
3939enum HpsgKind {
3940 KIND_OBJECT = 0,
3941 KIND_CLASS_OBJECT = 1,
3942 KIND_ARRAY_1 = 2,
3943 KIND_ARRAY_2 = 3,
3944 KIND_ARRAY_4 = 4,
3945 KIND_ARRAY_8 = 5,
3946 KIND_UNKNOWN = 6,
3947 KIND_NATIVE = 7,
3948};
3949
3950#define HPSG_PARTIAL (1<<7)
3951#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
3952
Ian Rogers30fab402012-01-23 15:43:46 -08003953class HeapChunkContext {
3954 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003955 // Maximum chunk size. Obtain this from the formula:
3956 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
3957 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08003958 : buf_(16384 - 16),
3959 type_(0),
3960 merge_(merge) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003961 Reset();
3962 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08003963 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003964 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08003965 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003966 }
3967 }
3968
3969 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08003970 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003971 Flush();
3972 }
3973 }
3974
3975 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08003976 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003977 return;
3978 }
3979
3980 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003981 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
3982 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003983
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003984 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
3985 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003986 // [u4]: length of piece, in allocation units
3987 // 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 -08003988 pieceLenField_ = p_;
3989 JDWP::Write4BE(&p_, 0x55555555);
3990 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003991 }
3992
Ian Rogersb726dcb2012-09-05 08:57:23 -07003993 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd636b062013-01-18 17:51:18 -08003994 if (pieceLenField_ == NULL) {
3995 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
3996 CHECK(needHeader_);
3997 return;
3998 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003999 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004000 CHECK_LE(&buf_[0], pieceLenField_);
4001 CHECK_LE(pieceLenField_, p_);
4002 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004003
Ian Rogers30fab402012-01-23 15:43:46 -08004004 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004005 Reset();
4006 }
4007
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004008 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004009 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4010 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004011 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004012 }
4013
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004014 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004015 enum { ALLOCATION_UNIT_SIZE = 8 };
4016
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004017 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004018 p_ = &buf_[0];
Ian Rogers15bf2d32012-08-28 17:33:04 -07004019 startOfNextMemoryChunk_ = NULL;
Ian Rogers30fab402012-01-23 15:43:46 -08004020 totalAllocationUnits_ = 0;
4021 needHeader_ = true;
4022 pieceLenField_ = NULL;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004023 }
4024
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004025 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004026 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4027 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004028 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4029 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004030 if (used_bytes == 0) {
4031 if (start == NULL) {
4032 // Reset for start of new heap.
4033 startOfNextMemoryChunk_ = NULL;
4034 Flush();
4035 }
4036 // Only process in use memory so that free region information
4037 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08004038 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08004039 }
4040
Ian Rogers15bf2d32012-08-28 17:33:04 -07004041 /* If we're looking at the native heap, we'll just return
4042 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
4043 */
4044 bool native = type_ == CHUNK_TYPE("NHSG");
4045
4046 if (startOfNextMemoryChunk_ != NULL) {
4047 // Transmit any pending free memory. Native free memory of
4048 // over kMaxFreeLen could be because of the use of mmaps, so
4049 // don't report. If not free memory then start a new segment.
4050 bool flush = true;
4051 if (start > startOfNextMemoryChunk_) {
4052 const size_t kMaxFreeLen = 2 * kPageSize;
4053 void* freeStart = startOfNextMemoryChunk_;
4054 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07004055 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07004056 if (!native || freeLen < kMaxFreeLen) {
4057 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
4058 flush = false;
4059 }
4060 }
4061 if (flush) {
4062 startOfNextMemoryChunk_ = NULL;
4063 Flush();
4064 }
4065 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08004066 mirror::Object* obj = reinterpret_cast<mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08004067
4068 // Determine the type of this chunk.
4069 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4070 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004071 uint8_t state = ExamineObject(obj, native);
4072 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4073 // allocation then the first sizeof(size_t) may belong to it.
4074 const size_t dlMallocOverhead = sizeof(size_t);
4075 AppendChunk(state, start, used_bytes + dlMallocOverhead);
Brian Carlstrom2d888622013-07-18 17:02:00 -07004076 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + dlMallocOverhead;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004077 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004078
Ian Rogers15bf2d32012-08-28 17:33:04 -07004079 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004080 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004081 // Make sure there's enough room left in the buffer.
4082 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4083 // 17 bytes for any header.
4084 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
4085 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4086 if (bytesLeft < needed) {
4087 Flush();
4088 }
4089
4090 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4091 if (bytesLeft < needed) {
4092 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4093 << needed << " bytes)";
4094 return;
4095 }
4096 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004097 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004098 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4099 totalAllocationUnits_ += length;
4100 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004101 *p_++ = state | HPSG_PARTIAL;
4102 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004103 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004104 }
Ian Rogers30fab402012-01-23 15:43:46 -08004105 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004106 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004107 }
4108
Ian Rogersef7d42f2014-01-06 12:55:46 -08004109 uint8_t ExamineObject(mirror::Object* o, bool is_native_heap)
4110 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004111 if (o == NULL) {
4112 return HPSG_STATE(SOLIDITY_FREE, 0);
4113 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004114
Elliott Hughesa2155262011-11-16 16:26:58 -08004115 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004116
Elliott Hughesa2155262011-11-16 16:26:58 -08004117 // If we're looking at the native heap, we'll just return
4118 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004119 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004120 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4121 }
4122
Ian Rogers5bfa60f2012-09-02 21:17:56 -07004123 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004124 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004125 }
4126
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004127 mirror::Class* c = o->GetClass();
Elliott Hughesa2155262011-11-16 16:26:58 -08004128 if (c == NULL) {
4129 // The object was probably just created but hasn't been initialized yet.
4130 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4131 }
4132
Mathieu Chartier590fee92013-09-13 13:46:47 -07004133 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004134 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004135 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4136 }
4137
4138 if (c->IsClassClass()) {
4139 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4140 }
4141
4142 if (c->IsArrayClass()) {
4143 if (o->IsObjectArray()) {
4144 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4145 }
4146 switch (c->GetComponentSize()) {
4147 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4148 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4149 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4150 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4151 }
4152 }
4153
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004154 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4155 }
4156
Ian Rogers30fab402012-01-23 15:43:46 -08004157 std::vector<uint8_t> buf_;
4158 uint8_t* p_;
4159 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004160 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004161 size_t totalAllocationUnits_;
4162 uint32_t type_;
4163 bool merge_;
4164 bool needHeader_;
4165
Elliott Hughesa2155262011-11-16 16:26:58 -08004166 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4167};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004168
4169void Dbg::DdmSendHeapSegments(bool native) {
4170 Dbg::HpsgWhen when;
4171 Dbg::HpsgWhat what;
4172 if (!native) {
4173 when = gDdmHpsgWhen;
4174 what = gDdmHpsgWhat;
4175 } else {
4176 when = gDdmNhsgWhen;
4177 what = gDdmNhsgWhat;
4178 }
4179 if (when == HPSG_WHEN_NEVER) {
4180 return;
4181 }
4182
4183 // Figure out what kind of chunks we'll be sending.
4184 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
4185
4186 // First, send a heap start chunk.
4187 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004188 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004189 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
4190
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004191 Thread* self = Thread::Current();
4192
4193 // To allow the Walk/InspectAll() below to exclusively-lock the
4194 // mutator lock, temporarily release the shared access to the
4195 // mutator lock here by transitioning to the suspended state.
4196 Locks::mutator_lock_->AssertSharedHeld(self);
4197 self->TransitionFromRunnableToSuspended(kSuspended);
4198
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004199 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08004200 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
4201 if (native) {
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004202#ifdef USE_DLMALLOC
Ian Rogers1d54e732013-05-02 21:10:01 -07004203 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004204#else
4205 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4206#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004207 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004208 gc::Heap* heap = Runtime::Current()->GetHeap();
4209 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers1d54e732013-05-02 21:10:01 -07004210 typedef std::vector<gc::space::ContinuousSpace*>::const_iterator It;
4211 for (It cur = spaces.begin(), end = spaces.end(); cur != end; ++cur) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004212 if ((*cur)->IsMallocSpace()) {
4213 (*cur)->AsMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004214 }
4215 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004216 // Walk the large objects, these are not in the AllocSpace.
4217 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004218 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004219
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004220 // Shared-lock the mutator lock back.
4221 self->TransitionFromSuspendedToRunnable();
4222 Locks::mutator_lock_->AssertSharedHeld(self);
4223
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004224 // Finally, send a heap end chunk.
4225 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004226}
4227
Elliott Hughesb1a58792013-07-11 18:10:58 -07004228static size_t GetAllocTrackerMax() {
4229#ifdef HAVE_ANDROID_OS
4230 // Check whether there's a system property overriding the number of records.
4231 const char* propertyName = "dalvik.vm.allocTrackerMax";
4232 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4233 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4234 char* end;
4235 size_t value = strtoul(allocRecordMaxString, &end, 10);
4236 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004237 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4238 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004239 return kDefaultNumAllocRecords;
4240 }
4241 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004242 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4243 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004244 return kDefaultNumAllocRecords;
4245 }
4246 return value;
4247 }
4248#endif
4249 return kDefaultNumAllocRecords;
4250}
4251
Elliott Hughes545a0642011-11-08 19:10:03 -08004252void Dbg::SetAllocTrackingEnabled(bool enabled) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004253 if (enabled) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004254 {
4255 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
4256 if (recent_allocation_records_ == NULL) {
4257 alloc_record_max_ = GetAllocTrackerMax();
4258 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4259 << kMaxAllocRecordStackDepth << " frames, taking "
4260 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4261 alloc_record_head_ = alloc_record_count_ = 0;
4262 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4263 CHECK(recent_allocation_records_ != NULL);
4264 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004265 }
Ian Rogersfa824272013-11-05 16:12:57 -08004266 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004267 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08004268 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004269 {
4270 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
Mathieu Chartier4345c462014-06-27 10:20:14 -07004271 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004272 delete[] recent_allocation_records_;
4273 recent_allocation_records_ = NULL;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004274 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004275 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004276 }
4277}
4278
Ian Rogers0399dde2012-06-06 17:09:28 -07004279struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08004280 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004281 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08004282 : StackVisitor(thread, NULL), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004283
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004284 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4285 // annotalysis.
4286 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004287 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004288 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004289 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004290 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004291 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004292 record->StackElement(depth)->SetMethod(m);
4293 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004294 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004295 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004296 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004297 }
4298
4299 ~AllocRecordStackVisitor() {
4300 // Clear out any unused stack trace elements.
4301 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004302 record->StackElement(depth)->SetMethod(nullptr);
4303 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004304 }
4305 }
4306
4307 AllocRecord* record;
4308 size_t depth;
4309};
4310
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004311void Dbg::RecordAllocation(mirror::Class* type, size_t byte_count) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004312 Thread* self = Thread::Current();
4313 CHECK(self != NULL);
4314
Ian Rogers719d1a32014-03-06 12:13:39 -08004315 MutexLock mu(self, *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08004316 if (recent_allocation_records_ == NULL) {
4317 return;
4318 }
4319
4320 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004321 if (++alloc_record_head_ == alloc_record_max_) {
4322 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004323 }
4324
4325 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004326 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004327 record->SetType(type);
4328 record->SetByteCount(byte_count);
4329 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004330
4331 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004332 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004333 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004334
Ian Rogers719d1a32014-03-06 12:13:39 -08004335 if (alloc_record_count_ < alloc_record_max_) {
4336 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004337 }
4338}
4339
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004340// Returns the index of the head element.
4341//
4342// We point at the most-recently-written record, so if gAllocRecordCount is 1
4343// we want to use the current element. Take "head+1" and subtract count
4344// from it.
4345//
4346// We need to handle underflow in our circular buffer, so we add
Elliott Hughesb1a58792013-07-11 18:10:58 -07004347// gAllocRecordMax and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004348size_t Dbg::HeadIndex() {
4349 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4350 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004351}
4352
4353void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004354 ScopedObjectAccess soa(Thread::Current());
Ian Rogers719d1a32014-03-06 12:13:39 -08004355 MutexLock mu(soa.Self(), *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08004356 if (recent_allocation_records_ == NULL) {
4357 LOG(INFO) << "Not recording tracked allocations";
4358 return;
4359 }
4360
4361 // "i" is the head of the list. We want to start at the end of the
4362 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004363 size_t i = HeadIndex();
Ian Rogers719d1a32014-03-06 12:13:39 -08004364 size_t count = alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004365
Ian Rogers719d1a32014-03-06 12:13:39 -08004366 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004367 while (count--) {
4368 AllocRecord* record = &recent_allocation_records_[i];
4369
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004370 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4371 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004372
4373 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004374 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4375 mirror::ArtMethod* m = stack_element->Method();
Elliott Hughes545a0642011-11-08 19:10:03 -08004376 if (m == NULL) {
4377 break;
4378 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004379 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004380 }
4381
4382 // pause periodically to help logcat catch up
4383 if ((count % 5) == 0) {
4384 usleep(40000);
4385 }
4386
Ian Rogers719d1a32014-03-06 12:13:39 -08004387 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004388 }
4389}
4390
4391class StringTable {
4392 public:
4393 StringTable() {
4394 }
4395
Mathieu Chartier4345c462014-06-27 10:20:14 -07004396 void Add(const std::string& str) {
4397 table_.insert(str);
4398 }
4399
4400 void Add(const char* str) {
4401 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004402 }
4403
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004404 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004405 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004406 if (it == table_.end()) {
4407 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4408 }
4409 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004410 }
4411
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004412 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004413 return table_.size();
4414 }
4415
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004416 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004417 for (const std::string& str : table_) {
4418 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004419 size_t s_len = CountModifiedUtf8Chars(s);
Ian Rogers700a4022014-05-19 16:49:03 -07004420 std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004421 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4422 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004423 }
4424 }
4425
4426 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004427 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004428 DISALLOW_COPY_AND_ASSIGN(StringTable);
4429};
4430
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004431static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004432 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004433 DCHECK(method != nullptr);
4434 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004435 return (source_file != nullptr) ? source_file : "";
4436}
4437
Elliott Hughes545a0642011-11-08 19:10:03 -08004438/*
4439 * The data we send to DDMS contains everything we have recorded.
4440 *
4441 * Message header (all values big-endian):
4442 * (1b) message header len (to allow future expansion); includes itself
4443 * (1b) entry header len
4444 * (1b) stack frame len
4445 * (2b) number of entries
4446 * (4b) offset to string table from start of message
4447 * (2b) number of class name strings
4448 * (2b) number of method name strings
4449 * (2b) number of source file name strings
4450 * For each entry:
4451 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004452 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004453 * (2b) allocated object's class name index
4454 * (1b) stack depth
4455 * For each stack frame:
4456 * (2b) method's class name
4457 * (2b) method name
4458 * (2b) method source file
4459 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4460 * (xb) class name strings
4461 * (xb) method name strings
4462 * (xb) source file strings
4463 *
4464 * As with other DDM traffic, strings are sent as a 4-byte length
4465 * followed by UTF-16 data.
4466 *
4467 * We send up 16-bit unsigned indexes into string tables. In theory there
Elliott Hughesb1a58792013-07-11 18:10:58 -07004468 * can be (kMaxAllocRecordStackDepth * gAllocRecordMax) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004469 * each table, but in practice there should be far fewer.
4470 *
4471 * The chief reason for using a string table here is to keep the size of
4472 * the DDMS message to a minimum. This is partly to make the protocol
4473 * efficient, but also because we have to form the whole thing up all at
4474 * once in a memory buffer.
4475 *
4476 * We use separate string tables for class names, method names, and source
4477 * files to keep the indexes small. There will generally be no overlap
4478 * between the contents of these tables.
4479 */
4480jbyteArray Dbg::GetRecentAllocations() {
4481 if (false) {
4482 DumpRecentAllocations();
4483 }
4484
Ian Rogers50b35e22012-10-04 10:09:15 -07004485 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004486 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004487 {
Ian Rogers719d1a32014-03-06 12:13:39 -08004488 MutexLock mu(self, *alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004489 //
4490 // Part 1: generate string tables.
4491 //
4492 StringTable class_names;
4493 StringTable method_names;
4494 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004495
Ian Rogers719d1a32014-03-06 12:13:39 -08004496 int count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004497 int idx = HeadIndex();
4498 while (count--) {
4499 AllocRecord* record = &recent_allocation_records_[idx];
Mathieu Chartier4345c462014-06-27 10:20:14 -07004500 class_names.Add(record->Type()->GetDescriptor());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004501 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004502 mirror::ArtMethod* m = record->StackElement(i)->Method();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004503 if (m != NULL) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004504 class_names.Add(m->GetDeclaringClassDescriptor());
4505 method_names.Add(m->GetName());
4506 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004507 }
4508 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004509
Ian Rogers719d1a32014-03-06 12:13:39 -08004510 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004511 }
4512
Ian Rogers719d1a32014-03-06 12:13:39 -08004513 LOG(INFO) << "allocation records: " << alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004514
4515 //
4516 // Part 2: Generate the output and store it in the buffer.
4517 //
4518
4519 // (1b) message header len (to allow future expansion); includes itself
4520 // (1b) entry header len
4521 // (1b) stack frame len
4522 const int kMessageHeaderLen = 15;
4523 const int kEntryHeaderLen = 9;
4524 const int kStackFrameLen = 8;
4525 JDWP::Append1BE(bytes, kMessageHeaderLen);
4526 JDWP::Append1BE(bytes, kEntryHeaderLen);
4527 JDWP::Append1BE(bytes, kStackFrameLen);
4528
4529 // (2b) number of entries
4530 // (4b) offset to string table from start of message
4531 // (2b) number of class name strings
4532 // (2b) number of method name strings
4533 // (2b) number of source file name strings
Ian Rogers719d1a32014-03-06 12:13:39 -08004534 JDWP::Append2BE(bytes, alloc_record_count_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004535 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004536 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004537 JDWP::Append2BE(bytes, class_names.Size());
4538 JDWP::Append2BE(bytes, method_names.Size());
4539 JDWP::Append2BE(bytes, filenames.Size());
4540
Ian Rogers719d1a32014-03-06 12:13:39 -08004541 count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004542 idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004543 while (count--) {
4544 // For each entry:
4545 // (4b) total allocation size
4546 // (2b) thread id
4547 // (2b) allocated object's class name index
4548 // (1b) stack depth
4549 AllocRecord* record = &recent_allocation_records_[idx];
4550 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004551 size_t allocated_object_class_name_index =
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004552 class_names.IndexOf(record->Type()->GetDescriptor().c_str());
4553 JDWP::Append4BE(bytes, record->ByteCount());
4554 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004555 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4556 JDWP::Append1BE(bytes, stack_depth);
4557
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004558 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4559 // For each stack frame:
4560 // (2b) method's class name
4561 // (2b) method name
4562 // (2b) method source file
4563 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004564 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004565 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4566 size_t method_name_index = method_names.IndexOf(m->GetName());
4567 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004568 JDWP::Append2BE(bytes, class_name_index);
4569 JDWP::Append2BE(bytes, method_name_index);
4570 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004571 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004572 }
4573
Ian Rogers719d1a32014-03-06 12:13:39 -08004574 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004575 }
4576
4577 // (xb) class name strings
4578 // (xb) method name strings
4579 // (xb) source file strings
4580 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4581 class_names.WriteTo(bytes);
4582 method_names.WriteTo(bytes);
4583 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004584 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004585 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004586 jbyteArray result = env->NewByteArray(bytes.size());
4587 if (result != NULL) {
4588 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4589 }
4590 return result;
4591}
4592
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004593} // namespace art