blob: dc1b4f1dd5c9c321a25942b162bb0109366b9eb0 [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"
Mathieu Chartierc7853442015-03-27 14:35:38 -070024#include "art_field-inl.h"
Elliott Hughes545a0642011-11-08 19:10:03 -080025#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070027#include "dex_file-inl.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070028#include "dex_instruction.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070029#include "gc/accounting/card_table-inl.h"
30#include "gc/space/large_object_space.h"
31#include "gc/space/space-inl.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070032#include "handle_scope.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080033#include "jdwp/object_registry.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070034#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"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010042#include "quick/inline_method_analyser.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070043#include "reflection.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070044#include "safe_map.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080045#include "scoped_thread_state_change.h"
Elliott Hughes6a5bd492011-10-28 14:33:57 -070046#include "ScopedLocalRef.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070047#include "ScopedPrimitiveArray.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070048#include "handle_scope-inl.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070049#include "thread_list.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080050#include "utf.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010051#include "verifier/method_verifier-inl.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070052#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070053
Brian Carlstrom3d92d522013-07-12 09:03:08 -070054#ifdef HAVE_ANDROID_OS
55#include "cutils/properties.h"
56#endif
57
Elliott Hughes872d4ec2011-10-21 17:07:15 -070058namespace art {
59
Brian Carlstrom7934ac22013-07-26 10:54:15 -070060static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
Brian Carlstrom306db812014-09-05 13:01:41 -070061static const size_t kDefaultNumAllocRecords = 64*1024; // Must be a power of 2. 2BE can hold 64k-1.
62
63// Limit alloc_record_count to the 2BE value that is the limit of the current protocol.
64static uint16_t CappedAllocRecordCount(size_t alloc_record_count) {
65 if (alloc_record_count > 0xffff) {
66 return 0xffff;
67 }
68 return alloc_record_count;
69}
Elliott Hughes475fc232011-10-25 15:00:35 -070070
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070071class AllocRecordStackTraceElement {
72 public:
73 AllocRecordStackTraceElement() : method_(nullptr), dex_pc_(0) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080074 }
75
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070076 int32_t LineNumber() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
77 mirror::ArtMethod* method = Method();
78 DCHECK(method != nullptr);
79 return method->GetLineNumFromDexPC(DexPc());
Elliott Hughes545a0642011-11-08 19:10:03 -080080 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070081
82 mirror::ArtMethod* Method() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -070083 ScopedObjectAccessUnchecked soa(Thread::Current());
84 return soa.DecodeMethod(method_);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070085 }
86
87 void SetMethod(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
88 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4345c462014-06-27 10:20:14 -070089 method_ = soa.EncodeMethod(m);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070090 }
91
92 uint32_t DexPc() const {
93 return dex_pc_;
94 }
95
96 void SetDexPc(uint32_t pc) {
97 dex_pc_ = pc;
98 }
99
100 private:
Mathieu Chartier4345c462014-06-27 10:20:14 -0700101 jmethodID method_;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700102 uint32_t dex_pc_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800103};
104
Mathieu Chartier4345c462014-06-27 10:20:14 -0700105jobject Dbg::TypeCache::Add(mirror::Class* t) {
106 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800107 JNIEnv* const env = soa.Env();
108 ScopedLocalRef<jobject> local_ref(soa.Env(), soa.AddLocalReference<jobject>(t));
109 const int32_t hash_code = soa.Decode<mirror::Class*>(local_ref.get())->IdentityHashCode();
Mathieu Chartier4345c462014-06-27 10:20:14 -0700110 auto range = objects_.equal_range(hash_code);
111 for (auto it = range.first; it != range.second; ++it) {
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800112 if (soa.Decode<mirror::Class*>(it->second) == soa.Decode<mirror::Class*>(local_ref.get())) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700113 // Found a matching weak global, return it.
114 return it->second;
115 }
116 }
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800117 const jobject weak_global = env->NewWeakGlobalRef(local_ref.get());
Mathieu Chartier4345c462014-06-27 10:20:14 -0700118 objects_.insert(std::make_pair(hash_code, weak_global));
119 return weak_global;
120}
121
122void Dbg::TypeCache::Clear() {
Brian Carlstrom306db812014-09-05 13:01:41 -0700123 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
124 Thread* self = Thread::Current();
Mathieu Chartier4345c462014-06-27 10:20:14 -0700125 for (const auto& p : objects_) {
Brian Carlstrom306db812014-09-05 13:01:41 -0700126 vm->DeleteWeakGlobalRef(self, p.second);
Mathieu Chartier4345c462014-06-27 10:20:14 -0700127 }
128 objects_.clear();
129}
130
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700131class AllocRecord {
132 public:
133 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -0800134
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700135 mirror::Class* Type() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700136 return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700137 }
138
Brian Carlstrom306db812014-09-05 13:01:41 -0700139 void SetType(mirror::Class* t) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
140 Locks::alloc_tracker_lock_) {
141 type_ = Dbg::type_cache_.Add(t);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700142 }
143
144 size_t GetDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800145 size_t depth = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -0700146 while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800147 ++depth;
148 }
149 return depth;
150 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800151
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700152 size_t ByteCount() const {
153 return byte_count_;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800154 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700155
156 void SetByteCount(size_t count) {
157 byte_count_ = count;
158 }
159
160 uint16_t ThinLockId() const {
161 return thin_lock_id_;
162 }
163
164 void SetThinLockId(uint16_t id) {
165 thin_lock_id_ = id;
166 }
167
168 AllocRecordStackTraceElement* StackElement(size_t index) {
169 DCHECK_LT(index, kMaxAllocRecordStackDepth);
170 return &stack_[index];
171 }
172
173 private:
174 jobject type_; // This is a weak global.
175 size_t byte_count_;
176 uint16_t thin_lock_id_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700177 // Unused entries have null method.
178 AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth];
Elliott Hughes545a0642011-11-08 19:10:03 -0800179};
180
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700181class Breakpoint {
182 public:
Sebastien Hertzf3928792014-11-17 19:00:37 +0100183 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc,
184 DeoptimizationRequest::Kind deoptimization_kind)
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700185 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertzf3928792014-11-17 19:00:37 +0100186 : method_(nullptr), dex_pc_(dex_pc), deoptimization_kind_(deoptimization_kind) {
187 CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing ||
188 deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization ||
189 deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700190 ScopedObjectAccessUnchecked soa(Thread::Current());
191 method_ = soa.EncodeMethod(method);
192 }
193
194 Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
195 : method_(nullptr), dex_pc_(other.dex_pc_),
Sebastien Hertzf3928792014-11-17 19:00:37 +0100196 deoptimization_kind_(other.deoptimization_kind_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700197 ScopedObjectAccessUnchecked soa(Thread::Current());
198 method_ = soa.EncodeMethod(other.Method());
199 }
200
201 mirror::ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
202 ScopedObjectAccessUnchecked soa(Thread::Current());
203 return soa.DecodeMethod(method_);
204 }
205
206 uint32_t DexPc() const {
207 return dex_pc_;
208 }
209
Sebastien Hertzf3928792014-11-17 19:00:37 +0100210 DeoptimizationRequest::Kind GetDeoptimizationKind() const {
211 return deoptimization_kind_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700212 }
213
214 private:
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100215 // The location of this breakpoint.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700216 jmethodID method_;
217 uint32_t dex_pc_;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100218
219 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
Sebastien Hertzf3928792014-11-17 19:00:37 +0100220 DeoptimizationRequest::Kind deoptimization_kind_;
Elliott Hughes86964332012-02-15 19:37:42 -0800221};
222
Sebastien Hertzed2be172014-08-19 15:33:43 +0200223static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700224 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700225 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
Elliott Hughes86964332012-02-15 19:37:42 -0800226 return os;
227}
228
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200229class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800230 public:
231 DebugInstrumentationListener() {}
232 virtual ~DebugInstrumentationListener() {}
233
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200234 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700235 uint32_t dex_pc ATTRIBUTE_UNUSED)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200236 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800237 if (method->IsNative()) {
238 // TODO: post location events is a suspension point and native method entry stubs aren't.
239 return;
240 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100241 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800242 }
243
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200244 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
245 uint32_t dex_pc, const JValue& return_value)
246 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800247 if (method->IsNative()) {
248 // TODO: post location events is a suspension point and native method entry stubs aren't.
249 return;
250 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100251 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800252 }
253
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200254 void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
255 uint32_t dex_pc)
256 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800257 // We're not recorded to listen to this kind of event, so complain.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700258 UNUSED(thread, this_object, method, dex_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800259 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100260 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800261 }
262
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200263 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
264 uint32_t new_dex_pc)
265 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz8379b222014-02-24 17:38:15 +0100266 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800267 }
268
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200269 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700270 uint32_t dex_pc, ArtField* field)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200271 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700272 UNUSED(thread);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200273 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800274 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200275
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700276 void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700277 mirror::ArtMethod* method, uint32_t dex_pc, ArtField* field,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700278 const JValue& field_value)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200279 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
280 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
281 }
282
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000283 void ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED, mirror::Throwable* exception_object)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200284 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000285 Dbg::PostException(exception_object);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200286 }
287
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800288 // We only care about how many backward branches were executed in the Jit.
289 void BackwardBranch(Thread* /*thread*/, mirror::ArtMethod* method, int32_t dex_pc_offset)
290 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
291 LOG(ERROR) << "Unexpected backward branch event in debugger " << PrettyMethod(method)
292 << " " << dex_pc_offset;
293 }
294
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200295 private:
296 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800297} gDebugInstrumentationListener;
298
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700299// JDWP is allowed unless the Zygote forbids it.
300static bool gJdwpAllowed = true;
301
Elliott Hughesc0f09332012-03-26 13:27:06 -0700302// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700303static bool gJdwpConfigured = false;
304
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100305// JDWP options for debugging. Only valid if IsJdwpConfigured() is true.
306static JDWP::JdwpOptions gJdwpOptions;
307
Elliott Hughes3bb81562011-10-21 18:52:59 -0700308// Runtime JDWP state.
Ian Rogersc0542af2014-09-03 16:16:56 -0700309static JDWP::JdwpState* gJdwpState = nullptr;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700310static bool gDebuggerConnected; // debugger or DDMS is connected.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700311
Elliott Hughes47fce012011-10-25 18:37:19 -0700312static bool gDdmThreadNotification = false;
313
Elliott Hughes767a1472011-10-26 18:49:02 -0700314// DDMS GC-related settings.
315static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
316static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
317static Dbg::HpsgWhat gDdmHpsgWhat;
318static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
319static Dbg::HpsgWhat gDdmNhsgWhat;
320
Daniel Mihalyieb076692014-08-22 17:33:31 +0200321bool Dbg::gDebuggerActive = false;
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100322bool Dbg::gDisposed = false;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200323ObjectRegistry* Dbg::gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700324
Elliott Hughes545a0642011-11-08 19:10:03 -0800325// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800326AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
327size_t Dbg::alloc_record_max_ = 0;
328size_t Dbg::alloc_record_head_ = 0;
329size_t Dbg::alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -0700330Dbg::TypeCache Dbg::type_cache_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800331
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100332// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100333std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
334size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100335
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200336// Instrumentation event reference counters.
337size_t Dbg::dex_pc_change_event_ref_count_ = 0;
338size_t Dbg::method_enter_event_ref_count_ = 0;
339size_t Dbg::method_exit_event_ref_count_ = 0;
340size_t Dbg::field_read_event_ref_count_ = 0;
341size_t Dbg::field_write_event_ref_count_ = 0;
342size_t Dbg::exception_catch_event_ref_count_ = 0;
343uint32_t Dbg::instrumentation_events_ = 0;
344
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100345// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800346static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800347
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700348void DebugInvokeReq::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
349 receiver.VisitRootIfNonNull(visitor, root_info); // null for static method call.
350 klass.VisitRoot(visitor, root_info);
351 method.VisitRoot(visitor, root_info);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200352}
353
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700354void SingleStepControl::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
355 visitor->VisitRootIfNonNull(reinterpret_cast<mirror::Object**>(&method_), root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700356}
357
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100358void SingleStepControl::AddDexPc(uint32_t dex_pc) {
359 dex_pcs_.insert(dex_pc);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200360}
361
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100362bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
363 return dex_pcs_.find(dex_pc) == dex_pcs_.end();
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200364}
365
Brian Carlstromea46f952013-07-30 01:26:50 -0700366static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800367 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700368 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzed2be172014-08-19 15:33:43 +0200369 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100370 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700371 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
Elliott Hughes86964332012-02-15 19:37:42 -0800372 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
373 return true;
374 }
375 }
376 return false;
377}
378
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100379static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
380 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800381 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
382 // A thread may be suspended for GC; in this code, we really want to know whether
383 // there's a debugger suspension active.
384 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
385}
386
Ian Rogersc0542af2014-09-03 16:16:56 -0700387static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700388 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200389 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700390 if (o == nullptr) {
391 *error = JDWP::ERR_INVALID_OBJECT;
392 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800393 }
394 if (!o->IsArrayInstance()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700395 *error = JDWP::ERR_INVALID_ARRAY;
396 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800397 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700398 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800399 return o->AsArray();
400}
401
Ian Rogersc0542af2014-09-03 16:16:56 -0700402static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700403 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200404 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700405 if (o == nullptr) {
406 *error = JDWP::ERR_INVALID_OBJECT;
407 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800408 }
409 if (!o->IsClass()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700410 *error = JDWP::ERR_INVALID_CLASS;
411 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800412 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700413 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800414 return o->AsClass();
415}
416
Ian Rogersc0542af2014-09-03 16:16:56 -0700417static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
418 JDWP::JdwpError* error)
Sebastien Hertz69206392015-04-07 15:54:25 +0200419 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
420 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::thread_suspend_count_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200421 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700422 if (thread_peer == nullptr) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800423 // This isn't even an object.
Ian Rogersc0542af2014-09-03 16:16:56 -0700424 *error = JDWP::ERR_INVALID_OBJECT;
425 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800426 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800427
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800428 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800429 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
430 // This isn't a thread.
Ian Rogersc0542af2014-09-03 16:16:56 -0700431 *error = JDWP::ERR_INVALID_THREAD;
432 return nullptr;
Elliott Hughes221229c2013-01-08 18:17:50 -0800433 }
434
Sebastien Hertz69206392015-04-07 15:54:25 +0200435 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700436 Thread* thread = Thread::FromManagedThread(soa, thread_peer);
437 // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a
438 // zombie.
439 *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE;
440 return thread;
Elliott Hughes436e3722012-02-17 20:01:47 -0800441}
442
Elliott Hughes24437992011-11-30 14:49:33 -0800443static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
444 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
445 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
446 return static_cast<JDWP::JdwpTag>(descriptor[0]);
447}
448
Ian Rogers1ff3c982014-08-12 02:30:58 -0700449static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
450 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
451 std::string temp;
452 const char* descriptor = klass->GetDescriptor(&temp);
453 return BasicTagFromDescriptor(descriptor);
454}
455
Ian Rogers98379392014-02-24 16:53:16 -0800456static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700457 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700458 CHECK(c != nullptr);
Elliott Hughes24437992011-11-30 14:49:33 -0800459 if (c->IsArrayClass()) {
460 return JDWP::JT_ARRAY;
461 }
Elliott Hughes24437992011-11-30 14:49:33 -0800462 if (c->IsStringClass()) {
463 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800464 }
Ian Rogers98379392014-02-24 16:53:16 -0800465 if (c->IsClassClass()) {
466 return JDWP::JT_CLASS_OBJECT;
467 }
468 {
469 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
470 if (thread_class->IsAssignableFrom(c)) {
471 return JDWP::JT_THREAD;
472 }
473 }
474 {
475 mirror::Class* thread_group_class =
476 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
477 if (thread_group_class->IsAssignableFrom(c)) {
478 return JDWP::JT_THREAD_GROUP;
479 }
480 }
481 {
482 mirror::Class* class_loader_class =
483 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
484 if (class_loader_class->IsAssignableFrom(c)) {
485 return JDWP::JT_CLASS_LOADER;
486 }
487 }
488 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800489}
490
491/*
492 * Objects declared to hold Object might actually hold a more specific
493 * type. The debugger may take a special interest in these (e.g. it
494 * wants to display the contents of Strings), so we want to return an
495 * appropriate tag.
496 *
497 * Null objects are tagged JT_OBJECT.
498 */
Sebastien Hertz6995c602014-09-09 12:10:13 +0200499JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700500 return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800501}
502
503static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
504 switch (tag) {
505 case JDWP::JT_BOOLEAN:
506 case JDWP::JT_BYTE:
507 case JDWP::JT_CHAR:
508 case JDWP::JT_FLOAT:
509 case JDWP::JT_DOUBLE:
510 case JDWP::JT_INT:
511 case JDWP::JT_LONG:
512 case JDWP::JT_SHORT:
513 case JDWP::JT_VOID:
514 return true;
515 default:
516 return false;
517 }
518}
519
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100520void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700521 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700522 // No JDWP for you!
523 return;
524 }
525
Ian Rogers719d1a32014-03-06 12:13:39 -0800526 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700527 gRegistry = new ObjectRegistry;
528
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700529 // Init JDWP if the debugger is enabled. This may connect out to a
530 // debugger, passively listen for a debugger, or block waiting for a
531 // debugger.
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100532 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
Ian Rogersc0542af2014-09-03 16:16:56 -0700533 if (gJdwpState == nullptr) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800534 // We probably failed because some other process has the port already, which means that
535 // if we don't abort the user is likely to think they're talking to us when they're actually
536 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800537 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700538 }
539
540 // If a debugger has already attached, send the "welcome" message.
541 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700542 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700543 ScopedObjectAccess soa(Thread::Current());
Sebastien Hertz7d955652014-10-22 10:57:10 +0200544 gJdwpState->PostVMStart();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700545 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700546}
547
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700548void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200549 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
550 // destruction of gJdwpState).
551 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
552 gJdwpState->PostVMDeath();
553 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100554 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100555 Dispose();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700556 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800557 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700558 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800559 gRegistry = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700560}
561
Elliott Hughes767a1472011-10-26 18:49:02 -0700562void Dbg::GcDidFinish() {
563 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700564 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700565 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700566 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700567 }
568 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700569 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700570 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700571 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700572 }
573 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700574 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700575 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700576 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700577 }
578}
579
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700580void Dbg::SetJdwpAllowed(bool allowed) {
581 gJdwpAllowed = allowed;
582}
583
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700584DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700585 return Thread::Current()->GetInvokeReq();
586}
587
588Thread* Dbg::GetDebugThread() {
Ian Rogersc0542af2014-09-03 16:16:56 -0700589 return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700590}
591
592void Dbg::ClearWaitForEventThread() {
Sebastien Hertz2bf93f42015-01-09 18:44:05 +0100593 gJdwpState->ReleaseJdwpTokenForEvent();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700594}
595
596void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700597 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800598 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700599 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800600 gDisposed = false;
601}
602
Sebastien Hertzf3928792014-11-17 19:00:37 +0100603bool Dbg::RequiresDeoptimization() {
604 // We don't need deoptimization if everything runs with interpreter after
605 // enabling -Xint mode.
606 return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly();
607}
608
Elliott Hughesa2155262011-11-16 16:26:58 -0800609void Dbg::GoActive() {
610 // Enable all debugging features, including scans for breakpoints.
611 // This is a no-op if we're already active.
612 // Only called from the JDWP handler thread.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200613 if (IsDebuggerActive()) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800614 return;
615 }
616
Elliott Hughesc0f09332012-03-26 13:27:06 -0700617 {
618 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Sebastien Hertzed2be172014-08-19 15:33:43 +0200619 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700620 CHECK_EQ(gBreakpoints.size(), 0U);
621 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800622
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100623 {
Brian Carlstrom306db812014-09-05 13:01:41 -0700624 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100625 CHECK_EQ(deoptimization_requests_.size(), 0U);
626 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200627 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
628 CHECK_EQ(method_enter_event_ref_count_, 0U);
629 CHECK_EQ(method_exit_event_ref_count_, 0U);
630 CHECK_EQ(field_read_event_ref_count_, 0U);
631 CHECK_EQ(field_write_event_ref_count_, 0U);
632 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100633 }
634
Ian Rogers62d6c772013-02-27 08:32:07 -0800635 Runtime* runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700636 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800637 Thread* self = Thread::Current();
638 ThreadState old_state = self->SetStateUnsafe(kRunnable);
639 CHECK_NE(old_state, kRunnable);
Sebastien Hertzf3928792014-11-17 19:00:37 +0100640 if (RequiresDeoptimization()) {
641 runtime->GetInstrumentation()->EnableDeoptimization();
642 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200643 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800644 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800645 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
646 runtime->GetThreadList()->ResumeAll();
647
648 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700649}
650
651void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700652 CHECK(gDebuggerConnected);
653
Elliott Hughesc0f09332012-03-26 13:27:06 -0700654 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700655
Ian Rogers62d6c772013-02-27 08:32:07 -0800656 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
657 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
658 // and clear the object registry.
659 Runtime* runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700660 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800661 Thread* self = Thread::Current();
662 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100663
664 // Debugger may not be active at this point.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200665 if (IsDebuggerActive()) {
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100666 {
667 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
668 // This prevents us from having any pending deoptimization request when the debugger attaches
669 // to us again while no event has been requested yet.
Brian Carlstrom306db812014-09-05 13:01:41 -0700670 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100671 deoptimization_requests_.clear();
672 full_deoptimization_event_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100673 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200674 if (instrumentation_events_ != 0) {
675 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
676 instrumentation_events_);
677 instrumentation_events_ = 0;
678 }
Sebastien Hertzf3928792014-11-17 19:00:37 +0100679 if (RequiresDeoptimization()) {
680 runtime->GetInstrumentation()->DisableDeoptimization();
681 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100682 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100683 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800684 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
685 runtime->GetThreadList()->ResumeAll();
Sebastien Hertz55f65342015-01-13 22:48:34 +0100686
687 {
688 ScopedObjectAccess soa(self);
689 gRegistry->Clear();
690 }
691
692 gDebuggerConnected = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700693}
694
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100695void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) {
696 CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown);
697 gJdwpOptions = jdwp_options;
698 gJdwpConfigured = true;
699}
700
Elliott Hughesc0f09332012-03-26 13:27:06 -0700701bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700702 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700703}
704
705int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800706 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700707}
708
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700709void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700710 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700711}
712
Elliott Hughes88d63092013-01-09 09:55:54 -0800713std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700714 JDWP::JdwpError error;
715 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error);
716 if (o == nullptr) {
717 if (error == JDWP::ERR_NONE) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700718 return "null";
Ian Rogersc0542af2014-09-03 16:16:56 -0700719 } else {
720 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
721 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800722 }
723 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700724 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800725 }
Sebastien Hertz6995c602014-09-09 12:10:13 +0200726 return GetClassName(o->AsClass());
727}
728
729std::string Dbg::GetClassName(mirror::Class* klass) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200730 if (klass == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700731 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200732 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700733 std::string temp;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200734 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700735}
736
Ian Rogersc0542af2014-09-03 16:16:56 -0700737JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800738 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700739 mirror::Class* c = DecodeClass(id, &status);
740 if (c == nullptr) {
741 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800742 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800743 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700744 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800745 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800746}
747
Ian Rogersc0542af2014-09-03 16:16:56 -0700748JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800749 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700750 mirror::Class* c = DecodeClass(id, &status);
751 if (c == nullptr) {
752 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800753 return status;
754 }
755 if (c->IsInterface()) {
756 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700757 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800758 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700759 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800760 }
761 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700762}
763
Elliott Hughes436e3722012-02-17 20:01:47 -0800764JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700765 JDWP::JdwpError error;
766 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
767 if (o == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800768 return JDWP::ERR_INVALID_OBJECT;
769 }
770 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
771 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700772}
773
Elliott Hughes436e3722012-02-17 20:01:47 -0800774JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700775 JDWP::JdwpError error;
776 mirror::Class* c = DecodeClass(id, &error);
777 if (c == nullptr) {
778 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800779 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800780
781 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
782
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700783 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
784 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800785 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700786 if ((access_flags & kAccInterface) == 0) {
787 access_flags |= kAccSuper;
788 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800789
790 expandBufAdd4BE(pReply, access_flags);
791
792 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700793}
794
Ian Rogersc0542af2014-09-03 16:16:56 -0700795JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
796 JDWP::JdwpError error;
797 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
798 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800799 return JDWP::ERR_INVALID_OBJECT;
800 }
801
802 // Ensure all threads are suspended while we read objects' lock words.
803 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100804 CHECK_EQ(self->GetState(), kRunnable);
805 self->TransitionFromRunnableToSuspended(kSuspended);
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700806 Runtime::Current()->GetThreadList()->SuspendAll(__FUNCTION__);
Elliott Hughesf327e072013-01-09 16:01:26 -0800807
808 MonitorInfo monitor_info(o);
809
Sebastien Hertz54263242014-03-19 18:16:50 +0100810 Runtime::Current()->GetThreadList()->ResumeAll();
811 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800812
Ian Rogersc0542af2014-09-03 16:16:56 -0700813 if (monitor_info.owner_ != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700814 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800815 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700816 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800817 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700818 expandBufAdd4BE(reply, monitor_info.entry_count_);
819 expandBufAdd4BE(reply, monitor_info.waiters_.size());
820 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
821 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800822 }
823 return JDWP::ERR_NONE;
824}
825
Elliott Hughes734b8c62013-01-11 15:32:45 -0800826JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700827 std::vector<JDWP::ObjectId>* monitors,
828 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800829 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700830 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700831 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700832 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800833 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700834 : StackVisitor(thread, context), current_stack_depth(0),
835 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800836
837 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
838 // annotalysis.
839 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
840 if (!GetMethod()->IsRuntimeMethod()) {
841 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800842 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800843 }
844 return true;
845 }
846
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700847 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
848 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800849 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700850 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700851 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800852 }
853
Elliott Hughes734b8c62013-01-11 15:32:45 -0800854 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700855 std::vector<JDWP::ObjectId>* const monitors;
856 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800857 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800858
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700859 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +0200860 JDWP::JdwpError error;
861 Thread* thread = DecodeThread(soa, thread_id, &error);
862 if (thread == nullptr) {
863 return error;
864 }
865 if (!IsSuspendedForDebugger(soa, thread)) {
866 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700867 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700868 std::unique_ptr<Context> context(Context::Create());
Ian Rogersc0542af2014-09-03 16:16:56 -0700869 OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700870 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800871 return JDWP::ERR_NONE;
872}
873
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100874JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700875 JDWP::ObjectId* contended_monitor) {
Elliott Hughesf9501702013-01-11 11:22:27 -0800876 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -0700877 *contended_monitor = 0;
Sebastien Hertz69206392015-04-07 15:54:25 +0200878 JDWP::JdwpError error;
879 Thread* thread = DecodeThread(soa, thread_id, &error);
880 if (thread == nullptr) {
881 return error;
Elliott Hughesf9501702013-01-11 11:22:27 -0800882 }
Sebastien Hertz69206392015-04-07 15:54:25 +0200883 if (!IsSuspendedForDebugger(soa, thread)) {
884 return JDWP::ERR_THREAD_NOT_SUSPENDED;
885 }
886 mirror::Object* contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700887 // Add() requires the thread_list_lock_ not held to avoid the lock
888 // level violation.
Ian Rogersc0542af2014-09-03 16:16:56 -0700889 *contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -0800890 return JDWP::ERR_NONE;
891}
892
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800893JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -0700894 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800895 gc::Heap* heap = Runtime::Current()->GetHeap();
896 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800897 std::vector<mirror::Class*> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700898 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800899 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700900 JDWP::JdwpError error;
901 mirror::Class* c = DecodeClass(class_ids[i], &error);
902 if (c == nullptr) {
903 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800904 }
905 classes.push_back(c);
Ian Rogersc0542af2014-09-03 16:16:56 -0700906 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800907 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700908 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800909 return JDWP::ERR_NONE;
910}
911
Ian Rogersc0542af2014-09-03 16:16:56 -0700912JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
913 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800914 gc::Heap* heap = Runtime::Current()->GetHeap();
915 // We only want reachable instances, so do a GC.
916 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700917 JDWP::JdwpError error;
918 mirror::Class* c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800919 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700920 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800921 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800922 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800923 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
924 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700925 instances->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes3b78c942013-01-15 17:35:41 -0800926 }
927 return JDWP::ERR_NONE;
928}
929
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800930JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700931 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800932 gc::Heap* heap = Runtime::Current()->GetHeap();
933 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700934 JDWP::JdwpError error;
935 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
936 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800937 return JDWP::ERR_INVALID_OBJECT;
938 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800939 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800940 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800941 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700942 referring_objects->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800943 }
944 return JDWP::ERR_NONE;
945}
946
Ian Rogersc0542af2014-09-03 16:16:56 -0700947JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
948 JDWP::JdwpError error;
949 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
950 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100951 return JDWP::ERR_INVALID_OBJECT;
952 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800953 gRegistry->DisableCollection(object_id);
954 return JDWP::ERR_NONE;
955}
956
Ian Rogersc0542af2014-09-03 16:16:56 -0700957JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
958 JDWP::JdwpError error;
959 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +0100960 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
961 // also ignores these cases and never return an error. However it's not obvious why this command
962 // should behave differently from DisableCollection and IsCollected commands. So let's be more
963 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -0700964 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100965 return JDWP::ERR_INVALID_OBJECT;
966 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800967 gRegistry->EnableCollection(object_id);
968 return JDWP::ERR_NONE;
969}
970
Ian Rogersc0542af2014-09-03 16:16:56 -0700971JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
972 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100973 if (object_id == 0) {
974 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +0100975 return JDWP::ERR_INVALID_OBJECT;
976 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100977 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
978 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -0700979 JDWP::JdwpError error;
980 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
981 if (o != nullptr) {
982 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100983 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800984 return JDWP::ERR_NONE;
985}
986
Ian Rogersc0542af2014-09-03 16:16:56 -0700987void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -0800988 gRegistry->DisposeObject(object_id, reference_count);
989}
990
Sebastien Hertz6995c602014-09-09 12:10:13 +0200991JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +0100992 DCHECK(klass != nullptr);
993 if (klass->IsArrayClass()) {
994 return JDWP::TT_ARRAY;
995 } else if (klass->IsInterface()) {
996 return JDWP::TT_INTERFACE;
997 } else {
998 return JDWP::TT_CLASS;
999 }
1000}
1001
Elliott Hughes88d63092013-01-09 09:55:54 -08001002JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001003 JDWP::JdwpError error;
1004 mirror::Class* c = DecodeClass(class_id, &error);
1005 if (c == nullptr) {
1006 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001007 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001008
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001009 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1010 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001011 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001012 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001013}
1014
Ian Rogersc0542af2014-09-03 16:16:56 -07001015void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001016 // Get the complete list of reference classes (i.e. all classes except
1017 // the primitive types).
1018 // Returns a newly-allocated buffer full of RefTypeId values.
1019 struct ClassListCreator {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001020 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes_in) : classes(classes_in) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001021 }
1022
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001023 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001024 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1025 }
1026
Elliott Hughes64f574f2013-02-20 14:57:12 -08001027 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1028 // annotalysis.
1029 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001030 if (!c->IsPrimitive()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001031 classes->push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001032 }
1033 return true;
1034 }
1035
Ian Rogersc0542af2014-09-03 16:16:56 -07001036 std::vector<JDWP::RefTypeId>* const classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001037 };
1038
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001039 ClassListCreator clc(classes);
Sebastien Hertz4537c412014-08-28 14:41:50 +02001040 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(ClassListCreator::Visit,
1041 &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001042}
1043
Ian Rogers1ff3c982014-08-12 02:30:58 -07001044JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1045 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001046 JDWP::JdwpError error;
1047 mirror::Class* c = DecodeClass(class_id, &error);
1048 if (c == nullptr) {
1049 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001050 }
1051
Elliott Hughesa2155262011-11-16 16:26:58 -08001052 if (c->IsArrayClass()) {
1053 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1054 *pTypeTag = JDWP::TT_ARRAY;
1055 } else {
1056 if (c->IsErroneous()) {
1057 *pStatus = JDWP::CS_ERROR;
1058 } else {
1059 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1060 }
1061 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1062 }
1063
Ian Rogersc0542af2014-09-03 16:16:56 -07001064 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001065 std::string temp;
1066 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001067 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001068 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001069}
1070
Ian Rogersc0542af2014-09-03 16:16:56 -07001071void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001072 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001073 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001074 ids->clear();
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001075 for (size_t i = 0; i < classes.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001076 ids->push_back(gRegistry->Add(classes[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001077 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001078}
1079
Ian Rogersc0542af2014-09-03 16:16:56 -07001080JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1081 JDWP::JdwpError error;
1082 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1083 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001084 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001085 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001086
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001087 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001088 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001089
1090 expandBufAdd1(pReply, type_tag);
1091 expandBufAddRefTypeId(pReply, type_id);
1092
1093 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001094}
1095
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001096JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001097 JDWP::JdwpError error;
1098 mirror::Class* c = DecodeClass(class_id, &error);
1099 if (c == nullptr) {
1100 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001101 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001102 std::string temp;
1103 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001104 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001105}
1106
Ian Rogersc0542af2014-09-03 16:16:56 -07001107JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1108 JDWP::JdwpError error;
1109 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001110 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001111 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001112 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001113 const char* source_file = c->GetSourceFile();
1114 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001115 return JDWP::ERR_ABSENT_INFORMATION;
1116 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001117 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001118 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001119}
1120
Ian Rogersc0542af2014-09-03 16:16:56 -07001121JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001122 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001123 JDWP::JdwpError error;
1124 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1125 if (error != JDWP::ERR_NONE) {
1126 *tag = JDWP::JT_VOID;
1127 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001128 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001129 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001130 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001131}
1132
Elliott Hughesaed4be92011-12-02 16:16:23 -08001133size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001134 switch (tag) {
1135 case JDWP::JT_VOID:
1136 return 0;
1137 case JDWP::JT_BYTE:
1138 case JDWP::JT_BOOLEAN:
1139 return 1;
1140 case JDWP::JT_CHAR:
1141 case JDWP::JT_SHORT:
1142 return 2;
1143 case JDWP::JT_FLOAT:
1144 case JDWP::JT_INT:
1145 return 4;
1146 case JDWP::JT_ARRAY:
1147 case JDWP::JT_OBJECT:
1148 case JDWP::JT_STRING:
1149 case JDWP::JT_THREAD:
1150 case JDWP::JT_THREAD_GROUP:
1151 case JDWP::JT_CLASS_LOADER:
1152 case JDWP::JT_CLASS_OBJECT:
1153 return sizeof(JDWP::ObjectId);
1154 case JDWP::JT_DOUBLE:
1155 case JDWP::JT_LONG:
1156 return 8;
1157 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001158 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001159 return -1;
1160 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001161}
1162
Ian Rogersc0542af2014-09-03 16:16:56 -07001163JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1164 JDWP::JdwpError error;
1165 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1166 if (a == nullptr) {
1167 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001168 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001169 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001170 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001171}
1172
Elliott Hughes88d63092013-01-09 09:55:54 -08001173JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001174 JDWP::JdwpError error;
1175 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001176 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001177 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001178 }
Elliott Hughes24437992011-11-30 14:49:33 -08001179
1180 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1181 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001182 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001183 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001184 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1185 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001186 expandBufAdd4BE(pReply, count);
1187
Ian Rogers1ff3c982014-08-12 02:30:58 -07001188 if (IsPrimitiveTag(element_tag)) {
1189 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001190 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1191 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001192 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001193 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1194 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001195 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001196 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1197 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001198 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001199 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1200 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001201 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001202 memcpy(dst, &src[offset * width], count * width);
1203 }
1204 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001205 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001206 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001207 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001208 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001209 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001210 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001211 expandBufAdd1(pReply, specific_tag);
1212 expandBufAddObjectId(pReply, gRegistry->Add(element));
1213 }
1214 }
1215
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001216 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001217}
1218
Ian Rogersef7d42f2014-01-06 12:55:46 -08001219template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001220static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001221 NO_THREAD_SAFETY_ANALYSIS {
1222 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001223 DCHECK(a->GetClass()->IsPrimitiveArray());
1224
Ian Rogersef7d42f2014-01-06 12:55:46 -08001225 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001226 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001227 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001228 }
1229}
1230
Elliott Hughes88d63092013-01-09 09:55:54 -08001231JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001232 JDWP::Request* request) {
1233 JDWP::JdwpError error;
1234 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1235 if (dst == nullptr) {
1236 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001237 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001238
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001239 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001240 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001241 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001242 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001243 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001244
Ian Rogers1ff3c982014-08-12 02:30:58 -07001245 if (IsPrimitiveTag(element_tag)) {
1246 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001247 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001248 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001249 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001250 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001251 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001252 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001253 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001254 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001255 }
1256 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001257 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001258 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001259 JDWP::ObjectId id = request->ReadObjectId();
Ian Rogersc0542af2014-09-03 16:16:56 -07001260 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1261 if (error != JDWP::ERR_NONE) {
1262 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001263 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001264 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001265 }
1266 }
1267
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001268 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001269}
1270
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001271JDWP::JdwpError Dbg::CreateString(const std::string& str, JDWP::ObjectId* new_string_id) {
1272 Thread* self = Thread::Current();
1273 mirror::String* new_string = mirror::String::AllocFromModifiedUtf8(self, str.c_str());
1274 if (new_string == nullptr) {
1275 DCHECK(self->IsExceptionPending());
1276 self->ClearException();
1277 LOG(ERROR) << "Could not allocate string";
1278 *new_string_id = 0;
1279 return JDWP::ERR_OUT_OF_MEMORY;
1280 }
1281 *new_string_id = gRegistry->Add(new_string);
1282 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001283}
1284
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001285JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001286 JDWP::JdwpError error;
1287 mirror::Class* c = DecodeClass(class_id, &error);
1288 if (c == nullptr) {
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001289 *new_object_id = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -07001290 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001291 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001292 Thread* self = Thread::Current();
1293 mirror::Object* new_object = c->AllocObject(self);
1294 if (new_object == nullptr) {
1295 DCHECK(self->IsExceptionPending());
1296 self->ClearException();
1297 LOG(ERROR) << "Could not allocate object of type " << PrettyDescriptor(c);
1298 *new_object_id = 0;
1299 return JDWP::ERR_OUT_OF_MEMORY;
1300 }
1301 *new_object_id = gRegistry->Add(new_object);
Elliott Hughes436e3722012-02-17 20:01:47 -08001302 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001303}
1304
Elliott Hughesbf13d362011-12-08 15:51:37 -08001305/*
1306 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1307 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001308JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001309 JDWP::ObjectId* new_array_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001310 JDWP::JdwpError error;
1311 mirror::Class* c = DecodeClass(array_class_id, &error);
1312 if (c == nullptr) {
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001313 *new_array_id = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -07001314 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001315 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001316 Thread* self = Thread::Current();
1317 gc::Heap* heap = Runtime::Current()->GetHeap();
1318 mirror::Array* new_array = mirror::Array::Alloc<true>(self, c, length,
1319 c->GetComponentSizeShift(),
1320 heap->GetCurrentAllocator());
1321 if (new_array == nullptr) {
1322 DCHECK(self->IsExceptionPending());
1323 self->ClearException();
1324 LOG(ERROR) << "Could not allocate array of type " << PrettyDescriptor(c);
1325 *new_array_id = 0;
1326 return JDWP::ERR_OUT_OF_MEMORY;
1327 }
1328 *new_array_id = gRegistry->Add(new_array);
Elliott Hughes436e3722012-02-17 20:01:47 -08001329 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001330}
1331
Mathieu Chartierc7853442015-03-27 14:35:38 -07001332JDWP::FieldId Dbg::ToFieldId(const ArtField* f) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001333 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001334}
1335
Brian Carlstromea46f952013-07-30 01:26:50 -07001336static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001337 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001338 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001339 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001340}
1341
Mathieu Chartierc7853442015-03-27 14:35:38 -07001342static ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001343 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001344 return reinterpret_cast<ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001345}
1346
Brian Carlstromea46f952013-07-30 01:26:50 -07001347static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001348 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001349 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001350 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001351}
1352
Sebastien Hertz6995c602014-09-09 12:10:13 +02001353bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1354 CHECK(event_thread != nullptr);
1355 JDWP::JdwpError error;
1356 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(expected_thread_id,
1357 &error);
1358 return expected_thread_peer == event_thread->GetPeer();
1359}
1360
1361bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1362 const JDWP::EventLocation& event_location) {
1363 if (expected_location.dex_pc != event_location.dex_pc) {
1364 return false;
1365 }
1366 mirror::ArtMethod* m = FromMethodId(expected_location.method_id);
1367 return m == event_location.method;
1368}
1369
1370bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001371 if (event_class == nullptr) {
1372 return false;
1373 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02001374 JDWP::JdwpError error;
1375 mirror::Class* expected_class = DecodeClass(class_id, &error);
1376 CHECK(expected_class != nullptr);
1377 return expected_class->IsAssignableFrom(event_class);
1378}
1379
1380bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001381 ArtField* event_field) {
1382 ArtField* expected_field = FromFieldId(expected_field_id);
Sebastien Hertz6995c602014-09-09 12:10:13 +02001383 if (expected_field != event_field) {
1384 return false;
1385 }
1386 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1387}
1388
1389bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1390 JDWP::JdwpError error;
1391 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error);
1392 return modifier_instance == event_instance;
1393}
1394
1395void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
Sebastien Hertz69206392015-04-07 15:54:25 +02001396 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1397 LOCKS_EXCLUDED(Locks::thread_list_lock_,
1398 Locks::thread_suspend_count_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001399 if (m == nullptr) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001400 memset(location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001401 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001402 mirror::Class* c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001403 location->type_tag = GetTypeTag(c);
1404 location->class_id = gRegistry->AddRefType(c);
1405 location->method_id = ToMethodId(m);
1406 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001407 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001408}
1409
Ian Rogersc0542af2014-09-03 16:16:56 -07001410std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001411 mirror::ArtMethod* m = FromMethodId(method_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001412 if (m == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001413 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001414 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001415 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001416}
1417
Ian Rogersc0542af2014-09-03 16:16:56 -07001418std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001419 ArtField* f = FromFieldId(field_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001420 if (f == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001421 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001422 }
1423 return f->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001424}
1425
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001426/*
1427 * Augment the access flags for synthetic methods and fields by setting
1428 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1429 * flags not specified by the Java programming language.
1430 */
1431static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1432 accessFlags &= kAccJavaFlagsMask;
1433 if ((accessFlags & kAccSynthetic) != 0) {
1434 accessFlags |= 0xf0000000;
1435 }
1436 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001437}
1438
Elliott Hughesdbb40792011-11-18 17:05:22 -08001439/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001440 * Circularly shifts registers so that arguments come first. Debuggers
1441 * expect slots to begin with arguments, but dex code places them at
1442 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001443 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001444static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1445 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001446 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001447 if (code_item == nullptr) {
1448 // We should not get here for a method without code (native, proxy or abstract). Log it and
1449 // return the slot as is since all registers are arguments.
1450 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1451 return slot;
1452 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001453 uint16_t ins_size = code_item->ins_size_;
1454 uint16_t locals_size = code_item->registers_size_ - ins_size;
1455 if (slot >= locals_size) {
1456 return slot - locals_size;
1457 } else {
1458 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001459 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001460}
1461
Jeff Haob7cefc72013-11-14 14:51:09 -08001462/*
1463 * Circularly shifts registers so that arguments come last. Reverts
1464 * slots to dex style argument placement.
1465 */
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001466static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001467 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001468 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001469 if (code_item == nullptr) {
1470 // We should not get here for a method without code (native, proxy or abstract). Log it and
1471 // return the slot as is since all registers are arguments.
1472 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001473 uint16_t vreg_count = mirror::ArtMethod::NumArgRegisters(m->GetShorty());
1474 if (slot < vreg_count) {
1475 *error = JDWP::ERR_NONE;
1476 return slot;
1477 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001478 } else {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001479 if (slot < code_item->registers_size_) {
1480 uint16_t ins_size = code_item->ins_size_;
1481 uint16_t locals_size = code_item->registers_size_ - ins_size;
1482 *error = JDWP::ERR_NONE;
1483 return (slot < ins_size) ? slot + locals_size : slot - ins_size;
1484 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001485 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001486
1487 // Slot is invalid in the method.
1488 LOG(ERROR) << "Invalid local slot " << slot << " for method " << PrettyMethod(m);
1489 *error = JDWP::ERR_INVALID_SLOT;
1490 return DexFile::kDexNoIndex16;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001491}
1492
Elliott Hughes88d63092013-01-09 09:55:54 -08001493JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001494 JDWP::JdwpError error;
1495 mirror::Class* c = DecodeClass(class_id, &error);
1496 if (c == nullptr) {
1497 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001498 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001499
1500 size_t instance_field_count = c->NumInstanceFields();
1501 size_t static_field_count = c->NumStaticFields();
1502
1503 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1504
1505 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001506 ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001507 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001508 expandBufAddUtf8String(pReply, f->GetName());
1509 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001510 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001511 static const char genericSignature[1] = "";
1512 expandBufAddUtf8String(pReply, genericSignature);
1513 }
1514 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1515 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001516 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001517}
1518
Elliott Hughes88d63092013-01-09 09:55:54 -08001519JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001520 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001521 JDWP::JdwpError error;
1522 mirror::Class* c = DecodeClass(class_id, &error);
1523 if (c == nullptr) {
1524 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001525 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001526
1527 size_t direct_method_count = c->NumDirectMethods();
1528 size_t virtual_method_count = c->NumVirtualMethods();
1529
1530 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1531
1532 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001533 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001534 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001535 expandBufAddUtf8String(pReply, m->GetName());
1536 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001537 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001538 static const char genericSignature[1] = "";
1539 expandBufAddUtf8String(pReply, genericSignature);
1540 }
1541 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1542 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001543 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001544}
1545
Elliott Hughes88d63092013-01-09 09:55:54 -08001546JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001547 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001548 Thread* self = Thread::Current();
1549 StackHandleScope<1> hs(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07001550 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error)));
Mathieu Chartierf8322842014-05-16 10:59:25 -07001551 if (c.Get() == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001552 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001553 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001554 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001555 expandBufAdd4BE(pReply, interface_count);
1556 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001557 expandBufAddRefTypeId(pReply,
1558 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001559 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001560 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001561}
1562
Ian Rogersc0542af2014-09-03 16:16:56 -07001563void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001564 struct DebugCallbackContext {
1565 int numItems;
1566 JDWP::ExpandBuf* pReply;
1567
Elliott Hughes2435a572012-02-17 16:07:41 -08001568 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001569 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1570 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001571 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001572 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001573 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001574 }
1575 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001576 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001577 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001578 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001579 if (code_item == nullptr) {
1580 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001581 start = -1;
1582 end = -1;
1583 } else {
1584 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001585 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001586 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001587 }
1588
1589 expandBufAdd8BE(pReply, start);
1590 expandBufAdd8BE(pReply, end);
1591
1592 // Add numLines later
1593 size_t numLinesOffset = expandBufGetLength(pReply);
1594 expandBufAdd4BE(pReply, 0);
1595
1596 DebugCallbackContext context;
1597 context.numItems = 0;
1598 context.pReply = pReply;
1599
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001600 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001601 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001602 DebugCallbackContext::Callback, nullptr, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001603 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001604
1605 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001606}
1607
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001608void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1609 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001610 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001611 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001612 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001613 size_t variable_count;
1614 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001615
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001616 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1617 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001618 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001619 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1620
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001621 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1622 pContext->variable_count, startAddress, endAddress - startAddress,
1623 name, descriptor, signature, slot,
1624 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001625
Jeff Haob7cefc72013-11-14 14:51:09 -08001626 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001627
Elliott Hughesdbb40792011-11-18 17:05:22 -08001628 expandBufAdd8BE(pContext->pReply, startAddress);
1629 expandBufAddUtf8String(pContext->pReply, name);
1630 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001631 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001632 expandBufAddUtf8String(pContext->pReply, signature);
1633 }
1634 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1635 expandBufAdd4BE(pContext->pReply, slot);
1636
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001637 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001638 }
1639 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001640 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001641
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001642 // arg_count considers doubles and longs to take 2 units.
1643 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001644 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001645 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001646
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001647 // We don't know the total number of variables yet, so leave a blank and update it later.
1648 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001649 expandBufAdd4BE(pReply, 0);
1650
1651 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001652 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001653 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001654 context.variable_count = 0;
1655 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001656
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001657 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001658 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001659 m->GetDexFile()->DecodeDebugInfo(
Ian Rogersc0542af2014-09-03 16:16:56 -07001660 code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001661 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001662 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001663
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001664 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001665}
1666
Jeff Hao579b0242013-11-18 13:16:49 -08001667void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1668 JDWP::ExpandBuf* pReply) {
1669 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001670 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001671 OutputJValue(tag, return_value, pReply);
1672}
1673
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001674void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1675 JDWP::ExpandBuf* pReply) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001676 ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001677 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001678 OutputJValue(tag, field_value, pReply);
1679}
1680
Elliott Hughes9777ba22013-01-17 09:04:19 -08001681JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001682 std::vector<uint8_t>* bytecodes) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001683 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001684 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001685 return JDWP::ERR_INVALID_METHODID;
1686 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001687 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001688 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1689 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1690 const uint8_t* end = begin + byte_count;
1691 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001692 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001693 }
1694 return JDWP::ERR_NONE;
1695}
1696
Elliott Hughes88d63092013-01-09 09:55:54 -08001697JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001698 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001699}
1700
Elliott Hughes88d63092013-01-09 09:55:54 -08001701JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001702 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001703}
1704
Elliott Hughes88d63092013-01-09 09:55:54 -08001705static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1706 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001707 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001708 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001709 JDWP::JdwpError error;
1710 mirror::Class* c = DecodeClass(ref_type_id, &error);
1711 if (ref_type_id != 0 && c == nullptr) {
1712 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001713 }
1714
Sebastien Hertz6995c602014-09-09 12:10:13 +02001715 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001716 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001717 return JDWP::ERR_INVALID_OBJECT;
1718 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07001719 ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001720
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001721 mirror::Class* receiver_class = c;
Ian Rogersc0542af2014-09-03 16:16:56 -07001722 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001723 receiver_class = o->GetClass();
1724 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001725 // TODO: should we give up now if receiver_class is null?
Ian Rogersc0542af2014-09-03 16:16:56 -07001726 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001727 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001728 return JDWP::ERR_INVALID_FIELDID;
1729 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001730
Elliott Hughes0cf74332012-02-23 23:14:00 -08001731 // The RI only enforces the static/non-static mismatch in one direction.
1732 // TODO: should we change the tests and check both?
1733 if (is_static) {
1734 if (!f->IsStatic()) {
1735 return JDWP::ERR_INVALID_FIELDID;
1736 }
1737 } else {
1738 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001739 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field "
1740 << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001741 }
1742 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001743 if (f->IsStatic()) {
1744 o = f->GetDeclaringClass();
1745 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001746
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001747 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001748 JValue field_value;
1749 if (tag == JDWP::JT_VOID) {
1750 LOG(FATAL) << "Unknown tag: " << tag;
1751 } else if (!IsPrimitiveTag(tag)) {
1752 field_value.SetL(f->GetObject(o));
1753 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1754 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001755 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001756 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001757 }
Jeff Hao579b0242013-11-18 13:16:49 -08001758 Dbg::OutputJValue(tag, &field_value, pReply);
1759
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001760 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001761}
1762
Elliott Hughes88d63092013-01-09 09:55:54 -08001763JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001764 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001765 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001766}
1767
Ian Rogersc0542af2014-09-03 16:16:56 -07001768JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1769 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001770 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001771}
1772
Elliott Hughes88d63092013-01-09 09:55:54 -08001773static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001774 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001775 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001776 JDWP::JdwpError error;
Sebastien Hertz6995c602014-09-09 12:10:13 +02001777 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001778 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001779 return JDWP::ERR_INVALID_OBJECT;
1780 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07001781 ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001782
1783 // The RI only enforces the static/non-static mismatch in one direction.
1784 // TODO: should we change the tests and check both?
1785 if (is_static) {
1786 if (!f->IsStatic()) {
1787 return JDWP::ERR_INVALID_FIELDID;
1788 }
1789 } else {
1790 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001791 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001792 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001793 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001794 if (f->IsStatic()) {
1795 o = f->GetDeclaringClass();
1796 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001797
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001798 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001799
1800 if (IsPrimitiveTag(tag)) {
1801 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001802 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001803 // Debugging can't use transactional mode (runtime only).
1804 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001805 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001806 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001807 // Debugging can't use transactional mode (runtime only).
1808 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001809 }
1810 } else {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001811 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001812 if (error != JDWP::ERR_NONE) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001813 return JDWP::ERR_INVALID_OBJECT;
1814 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001815 if (v != nullptr) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001816 mirror::Class* field_type;
1817 {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001818 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001819 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001820 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001821 field_type = f->GetType<true>();
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001822 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001823 if (!field_type->IsAssignableFrom(v->GetClass())) {
1824 return JDWP::ERR_INVALID_OBJECT;
1825 }
1826 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001827 // Debugging can't use transactional mode (runtime only).
1828 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001829 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001830
1831 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001832}
1833
Elliott Hughes88d63092013-01-09 09:55:54 -08001834JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001835 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001836 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001837}
1838
Elliott Hughes88d63092013-01-09 09:55:54 -08001839JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1840 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001841}
1842
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001843JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001844 JDWP::JdwpError error;
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001845 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error);
1846 if (error != JDWP::ERR_NONE) {
1847 return error;
1848 }
1849 if (obj == nullptr) {
1850 return JDWP::ERR_INVALID_OBJECT;
1851 }
1852 {
1853 ScopedObjectAccessUnchecked soa(Thread::Current());
1854 mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String);
1855 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
1856 // This isn't a string.
1857 return JDWP::ERR_INVALID_STRING;
1858 }
1859 }
1860 *str = obj->AsString()->ToModifiedUtf8();
1861 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001862}
1863
Jeff Hao579b0242013-11-18 13:16:49 -08001864void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1865 if (IsPrimitiveTag(tag)) {
1866 expandBufAdd1(pReply, tag);
1867 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1868 expandBufAdd1(pReply, return_value->GetI());
1869 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1870 expandBufAdd2BE(pReply, return_value->GetI());
1871 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1872 expandBufAdd4BE(pReply, return_value->GetI());
1873 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1874 expandBufAdd8BE(pReply, return_value->GetJ());
1875 } else {
1876 CHECK_EQ(tag, JDWP::JT_VOID);
1877 }
1878 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001879 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001880 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001881 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001882 expandBufAddObjectId(pReply, gRegistry->Add(value));
1883 }
1884}
1885
Ian Rogersc0542af2014-09-03 16:16:56 -07001886JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001887 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001888 JDWP::JdwpError error;
1889 Thread* thread = DecodeThread(soa, thread_id, &error);
1890 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001891 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1892 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001893 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001894
1895 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07001896 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1897 CHECK(thread_object != nullptr) << error;
Mathieu Chartierc7853442015-03-27 14:35:38 -07001898 ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001899 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1900 mirror::String* s =
1901 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Ian Rogersc0542af2014-09-03 16:16:56 -07001902 if (s != nullptr) {
1903 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08001904 }
1905 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001906}
1907
Elliott Hughes221229c2013-01-08 18:17:50 -08001908JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02001909 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001910 JDWP::JdwpError error;
1911 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1912 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001913 return JDWP::ERR_INVALID_OBJECT;
1914 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001915 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001916 // Okay, so it's an object, but is it actually a thread?
Sebastien Hertz69206392015-04-07 15:54:25 +02001917 Thread* thread = DecodeThread(soa, thread_id, &error);
1918 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001919 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1920 // Zombie threads are in the null group.
1921 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001922 error = JDWP::ERR_NONE;
1923 } else if (error == JDWP::ERR_NONE) {
1924 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1925 CHECK(c != nullptr);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001926 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001927 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001928 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001929 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001930 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1931 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001932 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001933 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001934}
1935
Sebastien Hertza06430c2014-09-15 19:21:30 +02001936static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
1937 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
1938 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001939 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,
1940 error);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001941 if (*error != JDWP::ERR_NONE) {
1942 return nullptr;
1943 }
1944 if (thread_group == nullptr) {
1945 *error = JDWP::ERR_INVALID_OBJECT;
1946 return nullptr;
1947 }
Ian Rogers98379392014-02-24 16:53:16 -08001948 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1949 CHECK(c != nullptr);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001950 if (!c->IsAssignableFrom(thread_group->GetClass())) {
1951 // This is not a java.lang.ThreadGroup.
1952 *error = JDWP::ERR_INVALID_THREAD_GROUP;
1953 return nullptr;
1954 }
1955 *error = JDWP::ERR_NONE;
1956 return thread_group;
1957}
1958
1959JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
1960 ScopedObjectAccessUnchecked soa(Thread::Current());
1961 JDWP::JdwpError error;
1962 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
1963 if (error != JDWP::ERR_NONE) {
1964 return error;
1965 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001966 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupName");
Mathieu Chartierc7853442015-03-27 14:35:38 -07001967 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_name);
Ian Rogersc0542af2014-09-03 16:16:56 -07001968 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001969 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Sebastien Hertza06430c2014-09-15 19:21:30 +02001970
1971 std::string thread_group_name(s->ToModifiedUtf8());
1972 expandBufAddUtf8String(pReply, thread_group_name);
1973 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001974}
1975
Sebastien Hertza06430c2014-09-15 19:21:30 +02001976JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08001977 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001978 JDWP::JdwpError error;
Sebastien Hertza06430c2014-09-15 19:21:30 +02001979 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
1980 if (error != JDWP::ERR_NONE) {
1981 return error;
1982 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001983 mirror::Object* parent;
1984 {
1985 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupParent");
Mathieu Chartierc7853442015-03-27 14:35:38 -07001986 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_parent);
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001987 CHECK(f != nullptr);
1988 parent = f->GetObject(thread_group);
1989 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02001990 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
1991 expandBufAddObjectId(pReply, parent_group_id);
1992 return JDWP::ERR_NONE;
1993}
1994
1995static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
1996 std::vector<JDWP::ObjectId>* child_thread_group_ids)
1997 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1998 CHECK(thread_group != nullptr);
1999
2000 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Mathieu Chartierc7853442015-03-27 14:35:38 -07002001 ArtField* groups_field = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_groups);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002002 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Sebastien Hertze49e1952014-10-13 11:27:13 +02002003 {
2004 // The "groups" field is declared as a java.util.List: check it really is
2005 // an instance of java.util.ArrayList.
2006 CHECK(groups_array_list != nullptr);
2007 mirror::Class* java_util_ArrayList_class =
2008 soa.Decode<mirror::Class*>(WellKnownClasses::java_util_ArrayList);
2009 CHECK(groups_array_list->InstanceOf(java_util_ArrayList_class));
2010 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002011
2012 // Get the array and size out of the ArrayList<ThreadGroup>...
Mathieu Chartierc7853442015-03-27 14:35:38 -07002013 ArtField* array_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_array);
2014 ArtField* size_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_size);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002015 mirror::ObjectArray<mirror::Object>* groups_array =
2016 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
2017 const int32_t size = size_field->GetInt(groups_array_list);
2018
2019 // Copy the first 'size' elements out of the array into the result.
Sebastien Hertz6995c602014-09-09 12:10:13 +02002020 ObjectRegistry* registry = Dbg::GetObjectRegistry();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002021 for (int32_t i = 0; i < size; ++i) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002022 child_thread_group_ids->push_back(registry->Add(groups_array->Get(i)));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002023 }
2024}
2025
2026JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2027 JDWP::ExpandBuf* pReply) {
2028 ScopedObjectAccessUnchecked soa(Thread::Current());
2029 JDWP::JdwpError error;
2030 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2031 if (error != JDWP::ERR_NONE) {
2032 return error;
2033 }
2034
2035 // Add child threads.
2036 {
2037 std::vector<JDWP::ObjectId> child_thread_ids;
2038 GetThreads(thread_group, &child_thread_ids);
2039 expandBufAdd4BE(pReply, child_thread_ids.size());
2040 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2041 expandBufAddObjectId(pReply, child_thread_id);
2042 }
2043 }
2044
2045 // Add child thread groups.
2046 {
2047 std::vector<JDWP::ObjectId> child_thread_groups_ids;
2048 GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids);
2049 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2050 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2051 expandBufAddObjectId(pReply, child_thread_group_id);
2052 }
2053 }
2054
2055 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002056}
2057
2058JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002059 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07002060 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002061 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002062 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002063}
2064
Jeff Hao920af3e2013-08-28 15:46:38 -07002065JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2066 switch (state) {
2067 case kBlocked:
2068 return JDWP::TS_MONITOR;
2069 case kNative:
2070 case kRunnable:
2071 case kSuspended:
2072 return JDWP::TS_RUNNING;
2073 case kSleeping:
2074 return JDWP::TS_SLEEPING;
2075 case kStarting:
2076 case kTerminated:
2077 return JDWP::TS_ZOMBIE;
2078 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002079 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002080 case kWaitingForDebuggerSend:
2081 case kWaitingForDebuggerSuspension:
2082 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002083 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002084 case kWaitingForGcToComplete:
Jeff Hao920af3e2013-08-28 15:46:38 -07002085 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002086 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002087 case kWaitingForSignalCatcherOutput:
Hiroshi Yamauchi0c8c3032015-01-16 16:54:35 -08002088 case kWaitingForVisitObjects:
Jeff Hao920af3e2013-08-28 15:46:38 -07002089 case kWaitingInMainDebuggerLoop:
2090 case kWaitingInMainSignalCatcherLoop:
2091 case kWaitingPerformingGc:
2092 case kWaiting:
2093 return JDWP::TS_WAIT;
2094 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2095 }
2096 LOG(FATAL) << "Unknown thread state: " << state;
2097 return JDWP::TS_ZOMBIE;
2098}
2099
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002100JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2101 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002102 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002103
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002104 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2105
Ian Rogersc0542af2014-09-03 16:16:56 -07002106 JDWP::JdwpError error;
2107 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002108 if (error != JDWP::ERR_NONE) {
2109 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2110 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002111 return JDWP::ERR_NONE;
2112 }
2113 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002114 }
2115
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002116 if (IsSuspendedForDebugger(soa, thread)) {
2117 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002118 }
2119
Jeff Hao920af3e2013-08-28 15:46:38 -07002120 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002121 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002122}
2123
Elliott Hughes221229c2013-01-08 18:17:50 -08002124JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002125 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002126 JDWP::JdwpError error;
2127 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002128 if (error != JDWP::ERR_NONE) {
2129 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002130 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002131 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002132 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002133 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002134}
2135
Elliott Hughesf9501702013-01-11 11:22:27 -08002136JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2137 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002138 JDWP::JdwpError error;
2139 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002140 if (error != JDWP::ERR_NONE) {
2141 return error;
2142 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002143 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002144 return JDWP::ERR_NONE;
2145}
2146
Sebastien Hertz070f7322014-09-09 12:08:49 +02002147static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa,
2148 mirror::Object* desired_thread_group, mirror::Object* peer)
2149 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2150 // Do we want threads from all thread groups?
2151 if (desired_thread_group == nullptr) {
2152 return true;
2153 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07002154 ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Sebastien Hertz070f7322014-09-09 12:08:49 +02002155 DCHECK(thread_group_field != nullptr);
2156 mirror::Object* group = thread_group_field->GetObject(peer);
2157 return (group == desired_thread_group);
2158}
2159
Sebastien Hertza06430c2014-09-15 19:21:30 +02002160void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002161 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz070f7322014-09-09 12:08:49 +02002162 std::list<Thread*> all_threads_list;
2163 {
2164 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2165 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2166 }
2167 for (Thread* t : all_threads_list) {
2168 if (t == Dbg::GetDebugThread()) {
2169 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2170 // query all threads, so it's easier if we just don't tell them about this thread.
2171 continue;
2172 }
2173 if (t->IsStillStarting()) {
2174 // This thread is being started (and has been registered in the thread list). However, it is
2175 // not completely started yet so we must ignore it.
2176 continue;
2177 }
2178 mirror::Object* peer = t->GetPeer();
2179 if (peer == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07002180 // peer might be null if the thread is still starting up. We can't tell the debugger about
Sebastien Hertz070f7322014-09-09 12:08:49 +02002181 // this thread yet.
2182 // TODO: if we identified threads to the debugger by their Thread*
2183 // rather than their peer's mirror::Object*, we could fix this.
2184 // Doing so might help us report ZOMBIE threads too.
2185 continue;
2186 }
2187 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
2188 thread_ids->push_back(gRegistry->Add(peer));
2189 }
2190 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002191}
Elliott Hughesa2155262011-11-16 16:26:58 -08002192
Ian Rogersc0542af2014-09-03 16:16:56 -07002193static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002194 struct CountStackDepthVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002195 explicit CountStackDepthVisitor(Thread* thread_in)
2196 : StackVisitor(thread_in, nullptr), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002197
Elliott Hughes64f574f2013-02-20 14:57:12 -08002198 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2199 // annotalysis.
2200 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002201 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002202 ++depth;
2203 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002204 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002205 }
2206 size_t depth;
2207 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002208
Ian Rogers7a22fa62013-01-23 12:16:16 -08002209 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002210 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002211 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002212}
2213
Ian Rogersc0542af2014-09-03 16:16:56 -07002214JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002215 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002216 JDWP::JdwpError error;
2217 *result = 0;
2218 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002219 if (error != JDWP::ERR_NONE) {
2220 return error;
2221 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002222 if (!IsSuspendedForDebugger(soa, thread)) {
2223 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2224 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002225 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002226 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002227}
2228
Ian Rogers306057f2012-11-26 12:45:53 -08002229JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2230 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002231 class GetFrameVisitor : public StackVisitor {
2232 public:
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002233 GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in,
2234 JDWP::ExpandBuf* buf_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002235 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07002236 : StackVisitor(thread, nullptr), depth_(0),
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002237 start_frame_(start_frame_in), frame_count_(frame_count_in), buf_(buf_in) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002238 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002239 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002240
Sebastien Hertz69206392015-04-07 15:54:25 +02002241 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002242 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002243 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002244 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002245 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002246 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002247 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002248 if (depth_ >= start_frame_) {
2249 JDWP::FrameId frame_id(GetFrameId());
2250 JDWP::JdwpLocation location;
Sebastien Hertz6995c602014-09-09 12:10:13 +02002251 SetJdwpLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002252 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002253 expandBufAdd8BE(buf_, frame_id);
2254 expandBufAddLocation(buf_, location);
2255 }
2256 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002257 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002258 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002259
2260 private:
2261 size_t depth_;
2262 const size_t start_frame_;
2263 const size_t frame_count_;
2264 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002265 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002266
2267 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002268 JDWP::JdwpError error;
2269 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002270 if (error != JDWP::ERR_NONE) {
2271 return error;
2272 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002273 if (!IsSuspendedForDebugger(soa, thread)) {
2274 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2275 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002276 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002277 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002278 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002279}
2280
2281JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002282 return GetThreadId(Thread::Current());
2283}
2284
2285JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002286 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002287 return gRegistry->Add(thread->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002288}
2289
Elliott Hughes475fc232011-10-25 15:00:35 -07002290void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002291 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002292}
2293
2294void Dbg::ResumeVM() {
Sebastien Hertz253fa552014-10-14 17:27:15 +02002295 Runtime::Current()->GetThreadList()->ResumeAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002296}
2297
Elliott Hughes221229c2013-01-08 18:17:50 -08002298JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002299 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002300 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002301 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002302 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002303 JDWP::JdwpError error;
2304 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002305 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002306 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002307 return JDWP::ERR_THREAD_NOT_ALIVE;
2308 }
Ian Rogers4ad5cd32014-11-11 23:08:07 -08002309 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002310 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002311 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2312 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2313 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002314 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002315 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002316 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002317 return JDWP::ERR_INTERNAL;
2318 } else {
2319 return JDWP::ERR_THREAD_NOT_ALIVE;
2320 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002321}
2322
Elliott Hughes221229c2013-01-08 18:17:50 -08002323void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002324 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002325 JDWP::JdwpError error;
2326 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2327 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002328 Thread* thread;
2329 {
2330 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2331 thread = Thread::FromManagedThread(soa, peer);
2332 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002333 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002334 LOG(WARNING) << "No such thread for resume: " << peer;
2335 return;
2336 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002337 bool needs_resume;
2338 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002339 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002340 needs_resume = thread->GetSuspendCount() > 0;
2341 }
2342 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002343 Runtime::Current()->GetThreadList()->Resume(thread, true);
2344 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002345}
2346
2347void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002348 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002349}
2350
Ian Rogers0399dde2012-06-06 17:09:28 -07002351struct GetThisVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002352 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002353 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002354 : StackVisitor(thread, context), this_object(nullptr), frame_id(frame_id_in) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002355
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002356 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2357 // annotalysis.
2358 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002359 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002360 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002361 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002362 this_object = GetThisObject();
2363 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002364 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002365 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002366
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002367 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002368 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002369};
2370
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002371JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2372 JDWP::ObjectId* result) {
2373 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002374 JDWP::JdwpError error;
2375 Thread* thread = DecodeThread(soa, thread_id, &error);
2376 if (error != JDWP::ERR_NONE) {
2377 return error;
2378 }
2379 if (!IsSuspendedForDebugger(soa, thread)) {
2380 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002381 }
Ian Rogers700a4022014-05-19 16:49:03 -07002382 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002383 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002384 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002385 *result = gRegistry->Add(visitor.this_object);
2386 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002387}
2388
Sebastien Hertz8009f392014-09-01 17:07:11 +02002389// Walks the stack until we find the frame with the given FrameId.
2390class FindFrameVisitor FINAL : public StackVisitor {
2391 public:
2392 FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
2393 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2394 : StackVisitor(thread, context), frame_id_(frame_id), error_(JDWP::ERR_INVALID_FRAMEID) {}
Ian Rogersca190662012-06-26 15:45:57 -07002395
Sebastien Hertz8009f392014-09-01 17:07:11 +02002396 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2397 // annotalysis.
2398 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
2399 if (GetFrameId() != frame_id_) {
2400 return true; // Not our frame, carry on.
Ian Rogers0399dde2012-06-06 17:09:28 -07002401 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002402 mirror::ArtMethod* m = GetMethod();
2403 if (m->IsNative()) {
2404 // We can't read/write local value from/into native method.
2405 error_ = JDWP::ERR_OPAQUE_FRAME;
2406 } else {
2407 // We found our frame.
2408 error_ = JDWP::ERR_NONE;
2409 }
2410 return false;
2411 }
2412
2413 JDWP::JdwpError GetError() const {
2414 return error_;
2415 }
2416
2417 private:
2418 const JDWP::FrameId frame_id_;
2419 JDWP::JdwpError error_;
2420};
2421
2422JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2423 JDWP::ObjectId thread_id = request->ReadThreadId();
2424 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002425
2426 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002427 JDWP::JdwpError error;
2428 Thread* thread = DecodeThread(soa, thread_id, &error);
2429 if (error != JDWP::ERR_NONE) {
2430 return error;
2431 }
2432 if (!IsSuspendedForDebugger(soa, thread)) {
2433 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes221229c2013-01-08 18:17:50 -08002434 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002435 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002436 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002437 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002438 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002439 if (visitor.GetError() != JDWP::ERR_NONE) {
2440 return visitor.GetError();
2441 }
2442
2443 // Read the values from visitor's context.
2444 int32_t slot_count = request->ReadSigned32("slot count");
2445 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2446 for (int32_t i = 0; i < slot_count; ++i) {
2447 uint32_t slot = request->ReadUnsigned32("slot");
2448 JDWP::JdwpTag reqSigByte = request->ReadTag();
2449
2450 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
2451
2452 size_t width = Dbg::GetTagWidth(reqSigByte);
Sebastien Hertz7d955652014-10-22 10:57:10 +02002453 uint8_t* ptr = expandBufAddSpace(pReply, width + 1);
Sebastien Hertz69206392015-04-07 15:54:25 +02002454 error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002455 if (error != JDWP::ERR_NONE) {
2456 return error;
2457 }
2458 }
2459 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002460}
2461
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002462constexpr JDWP::JdwpError kStackFrameLocalAccessError = JDWP::ERR_ABSENT_INFORMATION;
2463
2464static std::string GetStackContextAsString(const StackVisitor& visitor)
2465 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2466 return StringPrintf(" at DEX pc 0x%08x in method %s", visitor.GetDexPc(false),
2467 PrettyMethod(visitor.GetMethod()).c_str());
2468}
2469
2470static JDWP::JdwpError FailGetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2471 JDWP::JdwpTag tag)
2472 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2473 LOG(ERROR) << "Failed to read " << tag << " local from register v" << vreg
2474 << GetStackContextAsString(visitor);
2475 return kStackFrameLocalAccessError;
2476}
2477
Sebastien Hertz8009f392014-09-01 17:07:11 +02002478JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2479 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
2480 mirror::ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002481 JDWP::JdwpError error = JDWP::ERR_NONE;
2482 uint16_t vreg = DemangleSlot(slot, m, &error);
2483 if (error != JDWP::ERR_NONE) {
2484 return error;
2485 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002486 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002487 switch (tag) {
2488 case JDWP::JT_BOOLEAN: {
2489 CHECK_EQ(width, 1U);
2490 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002491 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2492 return FailGetLocalValue(visitor, vreg, tag);
Ian Rogers0399dde2012-06-06 17:09:28 -07002493 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002494 VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal;
2495 JDWP::Set1(buf + 1, intVal != 0);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002496 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002497 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002498 case JDWP::JT_BYTE: {
2499 CHECK_EQ(width, 1U);
2500 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002501 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2502 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002503 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002504 VLOG(jdwp) << "get byte local " << vreg << " = " << intVal;
2505 JDWP::Set1(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002506 break;
2507 }
2508 case JDWP::JT_SHORT:
2509 case JDWP::JT_CHAR: {
2510 CHECK_EQ(width, 2U);
2511 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002512 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2513 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002514 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002515 VLOG(jdwp) << "get short/char local " << vreg << " = " << intVal;
2516 JDWP::Set2BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002517 break;
2518 }
2519 case JDWP::JT_INT: {
2520 CHECK_EQ(width, 4U);
2521 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002522 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2523 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002524 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002525 VLOG(jdwp) << "get int local " << vreg << " = " << intVal;
2526 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002527 break;
2528 }
2529 case JDWP::JT_FLOAT: {
2530 CHECK_EQ(width, 4U);
2531 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002532 if (!visitor.GetVReg(m, vreg, kFloatVReg, &intVal)) {
2533 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002534 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002535 VLOG(jdwp) << "get float local " << vreg << " = " << intVal;
2536 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002537 break;
2538 }
2539 case JDWP::JT_ARRAY:
2540 case JDWP::JT_CLASS_LOADER:
2541 case JDWP::JT_CLASS_OBJECT:
2542 case JDWP::JT_OBJECT:
2543 case JDWP::JT_STRING:
2544 case JDWP::JT_THREAD:
2545 case JDWP::JT_THREAD_GROUP: {
2546 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2547 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002548 if (!visitor.GetVReg(m, vreg, kReferenceVReg, &intVal)) {
2549 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002550 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002551 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2552 VLOG(jdwp) << "get " << tag << " object local " << vreg << " = " << o;
2553 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2554 LOG(FATAL) << StringPrintf("Found invalid object %#" PRIxPTR " in register v%u",
2555 reinterpret_cast<uintptr_t>(o), vreg)
2556 << GetStackContextAsString(visitor);
2557 UNREACHABLE();
2558 }
2559 tag = TagFromObject(soa, o);
2560 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002561 break;
2562 }
2563 case JDWP::JT_DOUBLE: {
2564 CHECK_EQ(width, 8U);
2565 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002566 if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2567 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002568 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002569 VLOG(jdwp) << "get double local " << vreg << " = " << longVal;
2570 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002571 break;
2572 }
2573 case JDWP::JT_LONG: {
2574 CHECK_EQ(width, 8U);
2575 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002576 if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) {
2577 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002578 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002579 VLOG(jdwp) << "get long local " << vreg << " = " << longVal;
2580 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002581 break;
2582 }
2583 default:
2584 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002585 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002586 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002587
Sebastien Hertz8009f392014-09-01 17:07:11 +02002588 // Prepend tag, which may have been updated.
2589 JDWP::Set1(buf, tag);
2590 return JDWP::ERR_NONE;
2591}
2592
2593JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2594 JDWP::ObjectId thread_id = request->ReadThreadId();
2595 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002596
2597 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002598 JDWP::JdwpError error;
2599 Thread* thread = DecodeThread(soa, thread_id, &error);
2600 if (error != JDWP::ERR_NONE) {
2601 return error;
2602 }
2603 if (!IsSuspendedForDebugger(soa, thread)) {
2604 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes221229c2013-01-08 18:17:50 -08002605 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002606 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002607 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002608 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002609 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002610 if (visitor.GetError() != JDWP::ERR_NONE) {
2611 return visitor.GetError();
2612 }
2613
2614 // Writes the values into visitor's context.
2615 int32_t slot_count = request->ReadSigned32("slot count");
2616 for (int32_t i = 0; i < slot_count; ++i) {
2617 uint32_t slot = request->ReadUnsigned32("slot");
2618 JDWP::JdwpTag sigByte = request->ReadTag();
2619 size_t width = Dbg::GetTagWidth(sigByte);
2620 uint64_t value = request->ReadValue(width);
2621
2622 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
Sebastien Hertz69206392015-04-07 15:54:25 +02002623 error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002624 if (error != JDWP::ERR_NONE) {
2625 return error;
2626 }
2627 }
2628 return JDWP::ERR_NONE;
2629}
2630
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002631template<typename T>
2632static JDWP::JdwpError FailSetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2633 JDWP::JdwpTag tag, T value)
2634 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2635 LOG(ERROR) << "Failed to write " << tag << " local " << value
2636 << " (0x" << std::hex << value << ") into register v" << vreg
2637 << GetStackContextAsString(visitor);
2638 return kStackFrameLocalAccessError;
2639}
2640
Sebastien Hertz8009f392014-09-01 17:07:11 +02002641JDWP::JdwpError Dbg::SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
2642 uint64_t value, size_t width) {
2643 mirror::ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002644 JDWP::JdwpError error = JDWP::ERR_NONE;
2645 uint16_t vreg = DemangleSlot(slot, m, &error);
2646 if (error != JDWP::ERR_NONE) {
2647 return error;
2648 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002649 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002650 switch (tag) {
2651 case JDWP::JT_BOOLEAN:
2652 case JDWP::JT_BYTE:
2653 CHECK_EQ(width, 1U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002654 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2655 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002656 }
2657 break;
2658 case JDWP::JT_SHORT:
2659 case JDWP::JT_CHAR:
2660 CHECK_EQ(width, 2U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002661 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2662 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002663 }
2664 break;
2665 case JDWP::JT_INT:
2666 CHECK_EQ(width, 4U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002667 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2668 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002669 }
2670 break;
2671 case JDWP::JT_FLOAT:
2672 CHECK_EQ(width, 4U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002673 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) {
2674 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002675 }
2676 break;
2677 case JDWP::JT_ARRAY:
2678 case JDWP::JT_CLASS_LOADER:
2679 case JDWP::JT_CLASS_OBJECT:
2680 case JDWP::JT_OBJECT:
2681 case JDWP::JT_STRING:
2682 case JDWP::JT_THREAD:
2683 case JDWP::JT_THREAD_GROUP: {
2684 CHECK_EQ(width, sizeof(JDWP::ObjectId));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002685 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value),
2686 &error);
2687 if (error != JDWP::ERR_NONE) {
2688 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2689 return JDWP::ERR_INVALID_OBJECT;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002690 }
2691 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2692 kReferenceVReg)) {
2693 return FailSetLocalValue(visitor, vreg, tag, reinterpret_cast<uintptr_t>(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002694 }
2695 break;
2696 }
2697 case JDWP::JT_DOUBLE: {
2698 CHECK_EQ(width, 8U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002699 if (!visitor.SetVRegPair(m, vreg, value, kDoubleLoVReg, kDoubleHiVReg)) {
2700 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002701 }
2702 break;
2703 }
2704 case JDWP::JT_LONG: {
2705 CHECK_EQ(width, 8U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002706 if (!visitor.SetVRegPair(m, vreg, value, kLongLoVReg, kLongHiVReg)) {
2707 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002708 }
2709 break;
2710 }
2711 default:
2712 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002713 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002714 }
2715 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002716}
2717
Sebastien Hertz6995c602014-09-09 12:10:13 +02002718static void SetEventLocation(JDWP::EventLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
2719 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2720 DCHECK(location != nullptr);
2721 if (m == nullptr) {
2722 memset(location, 0, sizeof(*location));
2723 } else {
2724 location->method = m;
2725 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002726 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002727}
2728
Ian Rogersef7d42f2014-01-06 12:55:46 -08002729void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002730 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002731 if (!IsDebuggerActive()) {
2732 return;
2733 }
2734 DCHECK(m != nullptr);
2735 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002736 JDWP::EventLocation location;
2737 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002738
Sebastien Hertz6995c602014-09-09 12:10:13 +02002739 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002740}
2741
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002742void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07002743 mirror::Object* this_object, ArtField* f) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002744 if (!IsDebuggerActive()) {
2745 return;
2746 }
2747 DCHECK(m != nullptr);
2748 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002749 JDWP::EventLocation location;
2750 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002751
Sebastien Hertz6995c602014-09-09 12:10:13 +02002752 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002753}
2754
2755void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07002756 mirror::Object* this_object, ArtField* f,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002757 const JValue* field_value) {
2758 if (!IsDebuggerActive()) {
2759 return;
2760 }
2761 DCHECK(m != nullptr);
2762 DCHECK(f != nullptr);
2763 DCHECK(field_value != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002764 JDWP::EventLocation location;
2765 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002766
Sebastien Hertz6995c602014-09-09 12:10:13 +02002767 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002768}
2769
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002770/**
2771 * Finds the location where this exception will be caught. We search until we reach the top
2772 * frame, in which case this exception is considered uncaught.
2773 */
2774class CatchLocationFinder : public StackVisitor {
2775 public:
2776 CatchLocationFinder(Thread* self, const Handle<mirror::Throwable>& exception, Context* context)
2777 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2778 : StackVisitor(self, context),
2779 self_(self),
2780 exception_(exception),
2781 handle_scope_(self),
2782 this_at_throw_(handle_scope_.NewHandle<mirror::Object>(nullptr)),
2783 catch_method_(handle_scope_.NewHandle<mirror::ArtMethod>(nullptr)),
2784 throw_method_(handle_scope_.NewHandle<mirror::ArtMethod>(nullptr)),
2785 catch_dex_pc_(DexFile::kDexNoIndex),
2786 throw_dex_pc_(DexFile::kDexNoIndex) {
2787 }
2788
2789 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2790 mirror::ArtMethod* method = GetMethod();
2791 DCHECK(method != nullptr);
2792 if (method->IsRuntimeMethod()) {
2793 // Ignore callee save method.
2794 DCHECK(method->IsCalleeSaveMethod());
2795 return true;
2796 }
2797
2798 uint32_t dex_pc = GetDexPc();
2799 if (throw_method_.Get() == nullptr) {
2800 // First Java method found. It is either the method that threw the exception,
2801 // or the Java native method that is reporting an exception thrown by
2802 // native code.
2803 this_at_throw_.Assign(GetThisObject());
2804 throw_method_.Assign(method);
2805 throw_dex_pc_ = dex_pc;
2806 }
2807
2808 if (dex_pc != DexFile::kDexNoIndex) {
2809 StackHandleScope<2> hs(self_);
2810 uint32_t found_dex_pc;
2811 Handle<mirror::Class> exception_class(hs.NewHandle(exception_->GetClass()));
2812 Handle<mirror::ArtMethod> h_method(hs.NewHandle(method));
2813 bool unused_clear_exception;
2814 found_dex_pc = mirror::ArtMethod::FindCatchBlock(
2815 h_method, exception_class, dex_pc, &unused_clear_exception);
2816 if (found_dex_pc != DexFile::kDexNoIndex) {
2817 catch_method_.Assign(method);
2818 catch_dex_pc_ = found_dex_pc;
2819 return false; // End stack walk.
2820 }
2821 }
2822 return true; // Continue stack walk.
2823 }
2824
2825 mirror::ArtMethod* GetCatchMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2826 return catch_method_.Get();
2827 }
2828
2829 mirror::ArtMethod* GetThrowMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2830 return throw_method_.Get();
2831 }
2832
2833 mirror::Object* GetThisAtThrow() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2834 return this_at_throw_.Get();
2835 }
2836
2837 uint32_t GetCatchDexPc() const {
2838 return catch_dex_pc_;
2839 }
2840
2841 uint32_t GetThrowDexPc() const {
2842 return throw_dex_pc_;
2843 }
2844
2845 private:
2846 Thread* const self_;
2847 const Handle<mirror::Throwable>& exception_;
2848 StackHandleScope<3> handle_scope_;
2849 MutableHandle<mirror::Object> this_at_throw_;
2850 MutableHandle<mirror::ArtMethod> catch_method_;
2851 MutableHandle<mirror::ArtMethod> throw_method_;
2852 uint32_t catch_dex_pc_;
2853 uint32_t throw_dex_pc_;
2854
2855 DISALLOW_COPY_AND_ASSIGN(CatchLocationFinder);
2856};
2857
2858void Dbg::PostException(mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002859 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002860 return;
2861 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002862 StackHandleScope<1> handle_scope(Thread::Current());
2863 Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object));
2864 std::unique_ptr<Context> context(Context::Create());
2865 CatchLocationFinder clf(Thread::Current(), h_exception, context.get());
2866 clf.WalkStack(/* include_transitions */ false);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002867 JDWP::EventLocation exception_throw_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002868 SetEventLocation(&exception_throw_location, clf.GetThrowMethod(), clf.GetThrowDexPc());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002869 JDWP::EventLocation exception_catch_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002870 SetEventLocation(&exception_catch_location, clf.GetCatchMethod(), clf.GetCatchDexPc());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002871
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002872 gJdwpState->PostException(&exception_throw_location, h_exception.Get(), &exception_catch_location,
2873 clf.GetThisAtThrow());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002874}
2875
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002876void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002877 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002878 return;
2879 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002880 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002881}
2882
Ian Rogers62d6c772013-02-27 08:32:07 -08002883void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002884 mirror::ArtMethod* m, uint32_t dex_pc,
2885 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002886 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002887 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002888 }
2889
Elliott Hughes86964332012-02-15 19:37:42 -08002890 if (IsBreakpoint(m, dex_pc)) {
2891 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002892 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002893
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002894 // If the debugger is single-stepping one of our threads, check to
2895 // see if we're that thread and we've reached a step point.
2896 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002897 if (single_step_control != nullptr) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002898 CHECK(!m->IsNative());
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002899 if (single_step_control->GetStepDepth() == JDWP::SD_INTO) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002900 // Step into method calls. We break when the line number
2901 // or method pointer changes. If we're in SS_MIN mode, we
2902 // always stop.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002903 if (single_step_control->GetMethod() != m) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002904 event_flags |= kSingleStep;
2905 VLOG(jdwp) << "SS new method";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002906 } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002907 event_flags |= kSingleStep;
2908 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002909 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002910 event_flags |= kSingleStep;
2911 VLOG(jdwp) << "SS new line";
2912 }
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002913 } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002914 // Step over method calls. We break when the line number is
2915 // different and the frame depth is <= the original frame
2916 // depth. (We can't just compare on the method, because we
2917 // might get unrolled past it by an exception, and it's tricky
2918 // to identify recursion.)
2919
2920 int stack_depth = GetStackDepth(thread);
2921
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002922 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002923 // Popped up one or more frames, always trigger.
2924 event_flags |= kSingleStep;
2925 VLOG(jdwp) << "SS method pop";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002926 } else if (stack_depth == single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002927 // Same depth, see if we moved.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002928 if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002929 event_flags |= kSingleStep;
2930 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002931 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002932 event_flags |= kSingleStep;
2933 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002934 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002935 }
2936 } else {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002937 CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002938 // Return from the current method. We break when the frame
2939 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002940
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002941 // This differs from the "method exit" break in that it stops
2942 // with the PC at the next instruction in the returned-to
2943 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002944
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002945 int stack_depth = GetStackDepth(thread);
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002946 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002947 event_flags |= kSingleStep;
2948 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002949 }
2950 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002951 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002952
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002953 // If there's something interesting going on, see if it matches one
2954 // of the debugger filters.
2955 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002956 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002957 }
2958}
2959
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002960size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2961 switch (instrumentation_event) {
2962 case instrumentation::Instrumentation::kMethodEntered:
2963 return &method_enter_event_ref_count_;
2964 case instrumentation::Instrumentation::kMethodExited:
2965 return &method_exit_event_ref_count_;
2966 case instrumentation::Instrumentation::kDexPcMoved:
2967 return &dex_pc_change_event_ref_count_;
2968 case instrumentation::Instrumentation::kFieldRead:
2969 return &field_read_event_ref_count_;
2970 case instrumentation::Instrumentation::kFieldWritten:
2971 return &field_write_event_ref_count_;
2972 case instrumentation::Instrumentation::kExceptionCaught:
2973 return &exception_catch_event_ref_count_;
2974 default:
2975 return nullptr;
2976 }
2977}
2978
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002979// Process request while all mutator threads are suspended.
2980void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002981 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002982 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002983 case DeoptimizationRequest::kNothing:
2984 LOG(WARNING) << "Ignoring empty deoptimization request.";
2985 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002986 case DeoptimizationRequest::kRegisterForEvent:
2987 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002988 request.InstrumentationEvent());
2989 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
2990 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002991 break;
2992 case DeoptimizationRequest::kUnregisterForEvent:
2993 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002994 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002995 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002996 request.InstrumentationEvent());
2997 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002998 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002999 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003000 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003001 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003002 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003003 break;
3004 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003005 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003006 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003007 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003008 break;
3009 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003010 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
3011 instrumentation->Deoptimize(request.Method());
3012 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003013 break;
3014 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003015 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
3016 instrumentation->Undeoptimize(request.Method());
3017 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003018 break;
3019 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003020 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003021 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003022 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003023}
3024
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003025void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003026 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003027 // Nothing to do.
3028 return;
3029 }
Brian Carlstrom306db812014-09-05 13:01:41 -07003030 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003031 RequestDeoptimizationLocked(req);
3032}
3033
3034void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003035 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003036 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003037 DCHECK_NE(req.InstrumentationEvent(), 0u);
3038 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003039 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003040 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003041 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003042 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003043 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003044 deoptimization_requests_.push_back(req);
3045 }
3046 *counter = *counter + 1;
3047 break;
3048 }
3049 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003050 DCHECK_NE(req.InstrumentationEvent(), 0u);
3051 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003052 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003053 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003054 *counter = *counter - 1;
3055 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003056 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003057 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003058 deoptimization_requests_.push_back(req);
3059 }
3060 break;
3061 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003062 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003063 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003064 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003065 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3066 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003067 deoptimization_requests_.push_back(req);
3068 }
3069 ++full_deoptimization_event_count_;
3070 break;
3071 }
3072 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003073 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003074 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003075 --full_deoptimization_event_count_;
3076 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003077 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3078 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003079 deoptimization_requests_.push_back(req);
3080 }
3081 break;
3082 }
3083 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003084 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003085 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003086 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003087 deoptimization_requests_.push_back(req);
3088 break;
3089 }
3090 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003091 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003092 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003093 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003094 deoptimization_requests_.push_back(req);
3095 break;
3096 }
3097 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003098 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003099 break;
3100 }
3101 }
3102}
3103
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003104void Dbg::ManageDeoptimization() {
3105 Thread* const self = Thread::Current();
3106 {
3107 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003108 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003109 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003110 return;
3111 }
3112 }
3113 CHECK_EQ(self->GetState(), kRunnable);
3114 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3115 // We need to suspend mutator threads first.
3116 Runtime* const runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07003117 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003118 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003119 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003120 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003121 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003122 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003123 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003124 ProcessDeoptimizationRequest(request);
3125 }
3126 deoptimization_requests_.clear();
3127 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003128 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3129 runtime->GetThreadList()->ResumeAll();
3130 self->TransitionFromSuspendedToRunnable();
3131}
3132
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003133static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3134 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003135 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003136 if (code_item == nullptr) {
3137 // TODO We should not be asked to watch location in a native or abstract method so the code item
3138 // should never be null. We could just check we never encounter this case.
3139 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003140 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003141 // Note: method verifier may cause thread suspension.
3142 self->AssertThreadSuspensionIsAllowable();
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003143 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003144 mirror::Class* declaring_class = m->GetDeclaringClass();
3145 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3146 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003147 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Ian Rogers7b078e82014-09-10 14:44:24 -07003148 verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003149 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method,
Mathieu Chartier4306ef82014-12-19 18:41:47 -08003150 m->GetAccessFlags(), false, true, false, true);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003151 // Note: we don't need to verify the method.
3152 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3153}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003154
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003155static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003156 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003157 for (Breakpoint& breakpoint : gBreakpoints) {
3158 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003159 return &breakpoint;
3160 }
3161 }
3162 return nullptr;
3163}
3164
Mathieu Chartierd8565452015-03-26 09:41:50 -07003165bool Dbg::MethodHasAnyBreakpoints(mirror::ArtMethod* method) {
3166 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
3167 return FindFirstBreakpointForMethod(method) != nullptr;
3168}
3169
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003170// Sanity checks all existing breakpoints on the same method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003171static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m,
3172 DeoptimizationRequest::Kind deoptimization_kind)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003173 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003174 for (const Breakpoint& breakpoint : gBreakpoints) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003175 if (breakpoint.Method() == m) {
3176 CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind());
3177 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003178 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003179 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
3180 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003181 // We should have deoptimized everything but not "selectively" deoptimized this method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003182 CHECK(instrumentation->AreAllMethodsDeoptimized());
3183 CHECK(!instrumentation->IsDeoptimized(m));
3184 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003185 // We should have "selectively" deoptimized this method.
3186 // Note: while we have not deoptimized everything for this method, we may have done it for
3187 // another event.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003188 CHECK(instrumentation->IsDeoptimized(m));
3189 } else {
3190 // This method does not require deoptimization.
3191 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3192 CHECK(!instrumentation->IsDeoptimized(m));
3193 }
3194}
3195
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003196// Returns the deoptimization kind required to set a breakpoint in a method.
3197// If a breakpoint has already been set, we also return the first breakpoint
3198// through the given 'existing_brkpt' pointer.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003199static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self,
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003200 mirror::ArtMethod* m,
3201 const Breakpoint** existing_brkpt)
Sebastien Hertzf3928792014-11-17 19:00:37 +01003202 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
3203 if (!Dbg::RequiresDeoptimization()) {
3204 // We already run in interpreter-only mode so we don't need to deoptimize anything.
3205 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method "
3206 << PrettyMethod(m);
3207 return DeoptimizationRequest::kNothing;
3208 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003209 const Breakpoint* first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003210 {
3211 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003212 first_breakpoint = FindFirstBreakpointForMethod(m);
3213 *existing_brkpt = first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003214 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003215
3216 if (first_breakpoint == nullptr) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003217 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3218 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3219 // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension.
3220 // Therefore we must not hold any lock when we call it.
3221 bool need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3222 if (need_full_deoptimization) {
3223 VLOG(jdwp) << "Need full deoptimization because of possible inlining of method "
3224 << PrettyMethod(m);
3225 return DeoptimizationRequest::kFullDeoptimization;
3226 } else {
3227 // We don't need to deoptimize if the method has not been compiled.
3228 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
3229 const bool is_compiled = class_linker->GetOatMethodQuickCodeFor(m) != nullptr;
3230 if (is_compiled) {
Sebastien Hertz6963e442014-11-26 22:11:27 +01003231 // If the method may be called through its direct code pointer (without loading
3232 // its updated entrypoint), we need full deoptimization to not miss the breakpoint.
3233 if (class_linker->MayBeCalledWithDirectCodePointer(m)) {
3234 VLOG(jdwp) << "Need full deoptimization because of possible direct code call "
3235 << "into image for compiled method " << PrettyMethod(m);
3236 return DeoptimizationRequest::kFullDeoptimization;
3237 } else {
3238 VLOG(jdwp) << "Need selective deoptimization for compiled method " << PrettyMethod(m);
3239 return DeoptimizationRequest::kSelectiveDeoptimization;
3240 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003241 } else {
3242 // Method is not compiled: we don't need to deoptimize.
3243 VLOG(jdwp) << "No need for deoptimization for non-compiled method " << PrettyMethod(m);
3244 return DeoptimizationRequest::kNothing;
3245 }
3246 }
3247 } else {
3248 // There is at least one breakpoint for this method: we don't need to deoptimize.
3249 // Let's check that all breakpoints are configured the same way for deoptimization.
3250 VLOG(jdwp) << "Breakpoint already set: no deoptimization is required";
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003251 DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003252 if (kIsDebugBuild) {
3253 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3254 SanityCheckExistingBreakpoints(m, deoptimization_kind);
3255 }
3256 return DeoptimizationRequest::kNothing;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003257 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003258}
3259
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003260// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3261// request if we need to deoptimize.
3262void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3263 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003264 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003265 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003266
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003267 const Breakpoint* existing_breakpoint = nullptr;
3268 const DeoptimizationRequest::Kind deoptimization_kind =
3269 GetRequiredDeoptimizationKind(self, m, &existing_breakpoint);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003270 req->SetKind(deoptimization_kind);
3271 if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
3272 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003273 } else {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003274 CHECK(deoptimization_kind == DeoptimizationRequest::kNothing ||
3275 deoptimization_kind == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003276 req->SetMethod(nullptr);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003277 }
3278
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003279 {
3280 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003281 // If there is at least one existing breakpoint on the same method, the new breakpoint
3282 // must have the same deoptimization kind than the existing breakpoint(s).
3283 DeoptimizationRequest::Kind breakpoint_deoptimization_kind;
3284 if (existing_breakpoint != nullptr) {
3285 breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind();
3286 } else {
3287 breakpoint_deoptimization_kind = deoptimization_kind;
3288 }
3289 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind));
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003290 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3291 << gBreakpoints[gBreakpoints.size() - 1];
3292 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003293}
3294
3295// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3296// request if we need to undeoptimize.
3297void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003298 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003299 mirror::ArtMethod* m = FromMethodId(location->method_id);
3300 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003301 DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003302 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003303 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003304 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Sebastien Hertzf3928792014-11-17 19:00:37 +01003305 deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind();
3306 DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization,
3307 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003308 gBreakpoints.erase(gBreakpoints.begin() + i);
3309 break;
3310 }
3311 }
3312 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3313 if (existing_breakpoint == nullptr) {
3314 // There is no more breakpoint on this method: we need to undeoptimize.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003315 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003316 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003317 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3318 req->SetMethod(nullptr);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003319 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003320 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003321 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3322 req->SetMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003323 } else {
3324 // This method had no need for deoptimization: do nothing.
3325 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3326 req->SetKind(DeoptimizationRequest::kNothing);
3327 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003328 }
3329 } else {
3330 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003331 req->SetKind(DeoptimizationRequest::kNothing);
3332 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003333 if (kIsDebugBuild) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003334 SanityCheckExistingBreakpoints(m, deoptimization_kind);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003335 }
Elliott Hughes86964332012-02-15 19:37:42 -08003336 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003337}
3338
Daniel Mihalyieb076692014-08-22 17:33:31 +02003339bool Dbg::IsForcedInterpreterNeededForCallingImpl(Thread* thread, mirror::ArtMethod* m) {
3340 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3341 if (ssc == nullptr) {
3342 // If we are not single-stepping, then we don't have to force interpreter.
3343 return false;
3344 }
3345 if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) {
3346 // If we are in interpreter only mode, then we don't have to force interpreter.
3347 return false;
3348 }
3349
3350 if (!m->IsNative() && !m->IsProxyMethod()) {
3351 // If we want to step into a method, then we have to force interpreter on that call.
3352 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3353 return true;
3354 }
3355 }
3356 return false;
3357}
3358
3359bool Dbg::IsForcedInterpreterNeededForResolutionImpl(Thread* thread, mirror::ArtMethod* m) {
3360 instrumentation::Instrumentation* const instrumentation =
3361 Runtime::Current()->GetInstrumentation();
3362 // If we are in interpreter only mode, then we don't have to force interpreter.
3363 if (instrumentation->InterpretOnly()) {
3364 return false;
3365 }
3366 // We can only interpret pure Java method.
3367 if (m->IsNative() || m->IsProxyMethod()) {
3368 return false;
3369 }
3370 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3371 if (ssc != nullptr) {
3372 // If we want to step into a method, then we have to force interpreter on that call.
3373 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3374 return true;
3375 }
3376 // If we are stepping out from a static initializer, by issuing a step
3377 // in or step over, that was implicitly invoked by calling a static method,
3378 // then we need to step into that method. Having a lower stack depth than
3379 // the one the single step control has indicates that the step originates
3380 // from the static initializer.
3381 if (ssc->GetStepDepth() != JDWP::SD_OUT &&
3382 ssc->GetStackDepth() > GetStackDepth(thread)) {
3383 return true;
3384 }
3385 }
3386 // There are cases where we have to force interpreter on deoptimized methods,
3387 // because in some cases the call will not be performed by invoking an entry
3388 // point that has been replaced by the deoptimization, but instead by directly
3389 // invoking the compiled code of the method, for example.
3390 return instrumentation->IsDeoptimized(m);
3391}
3392
3393bool Dbg::IsForcedInstrumentationNeededForResolutionImpl(Thread* thread, mirror::ArtMethod* m) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003394 // The upcall can be null and in that case we don't need to do anything.
Daniel Mihalyieb076692014-08-22 17:33:31 +02003395 if (m == nullptr) {
3396 return false;
3397 }
3398 instrumentation::Instrumentation* const instrumentation =
3399 Runtime::Current()->GetInstrumentation();
3400 // If we are in interpreter only mode, then we don't have to force interpreter.
3401 if (instrumentation->InterpretOnly()) {
3402 return false;
3403 }
3404 // We can only interpret pure Java method.
3405 if (m->IsNative() || m->IsProxyMethod()) {
3406 return false;
3407 }
3408 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3409 if (ssc != nullptr) {
3410 // If we are stepping out from a static initializer, by issuing a step
3411 // out, that was implicitly invoked by calling a static method, then we
3412 // need to step into the caller of that method. Having a lower stack
3413 // depth than the one the single step control has indicates that the
3414 // step originates from the static initializer.
3415 if (ssc->GetStepDepth() == JDWP::SD_OUT &&
3416 ssc->GetStackDepth() > GetStackDepth(thread)) {
3417 return true;
3418 }
3419 }
3420 // If we are returning from a static intializer, that was implicitly
3421 // invoked by calling a static method and the caller is deoptimized,
3422 // then we have to deoptimize the stack without forcing interpreter
3423 // on the static method that was called originally. This problem can
3424 // be solved easily by forcing instrumentation on the called method,
3425 // because the instrumentation exit hook will recognise the need of
3426 // stack deoptimization by calling IsForcedInterpreterNeededForUpcall.
3427 return instrumentation->IsDeoptimized(m);
3428}
3429
3430bool Dbg::IsForcedInterpreterNeededForUpcallImpl(Thread* thread, mirror::ArtMethod* m) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003431 // The upcall can be null and in that case we don't need to do anything.
Daniel Mihalyieb076692014-08-22 17:33:31 +02003432 if (m == nullptr) {
3433 return false;
3434 }
3435 instrumentation::Instrumentation* const instrumentation =
3436 Runtime::Current()->GetInstrumentation();
3437 // If we are in interpreter only mode, then we don't have to force interpreter.
3438 if (instrumentation->InterpretOnly()) {
3439 return false;
3440 }
3441 // We can only interpret pure Java method.
3442 if (m->IsNative() || m->IsProxyMethod()) {
3443 return false;
3444 }
3445 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3446 if (ssc != nullptr) {
3447 // The debugger is not interested in what is happening under the level
3448 // of the step, thus we only force interpreter when we are not below of
3449 // the step.
3450 if (ssc->GetStackDepth() >= GetStackDepth(thread)) {
3451 return true;
3452 }
3453 }
3454 // We have to require stack deoptimization if the upcall is deoptimized.
3455 return instrumentation->IsDeoptimized(m);
3456}
3457
Jeff Hao449db332013-04-12 18:30:52 -07003458// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3459// cause suspension if the thread is the current thread.
3460class ScopedThreadSuspension {
3461 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003462 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003463 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003464 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003465 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003466 error_(JDWP::ERR_NONE),
3467 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003468 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003469 ScopedObjectAccessUnchecked soa(self);
Sebastien Hertz69206392015-04-07 15:54:25 +02003470 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003471 if (error_ == JDWP::ERR_NONE) {
3472 if (thread_ == soa.Self()) {
3473 self_suspend_ = true;
3474 } else {
3475 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Sebastien Hertz6995c602014-09-09 12:10:13 +02003476 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003477 bool timed_out;
Ian Rogers4ad5cd32014-11-11 23:08:07 -08003478 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3479 Thread* suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true,
3480 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07003481 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003482 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003483 // Thread terminated from under us while suspending.
3484 error_ = JDWP::ERR_INVALID_THREAD;
3485 } else {
3486 CHECK_EQ(suspended_thread, thread_);
3487 other_suspend_ = true;
3488 }
3489 }
3490 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003491 }
Elliott Hughes86964332012-02-15 19:37:42 -08003492
Jeff Hao449db332013-04-12 18:30:52 -07003493 Thread* GetThread() const {
3494 return thread_;
3495 }
3496
3497 JDWP::JdwpError GetError() const {
3498 return error_;
3499 }
3500
3501 ~ScopedThreadSuspension() {
3502 if (other_suspend_) {
3503 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3504 }
3505 }
3506
3507 private:
3508 Thread* thread_;
3509 JDWP::JdwpError error_;
3510 bool self_suspend_;
3511 bool other_suspend_;
3512};
3513
3514JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3515 JDWP::JdwpStepDepth step_depth) {
3516 Thread* self = Thread::Current();
3517 ScopedThreadSuspension sts(self, thread_id);
3518 if (sts.GetError() != JDWP::ERR_NONE) {
3519 return sts.GetError();
3520 }
3521
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003522 // Work out what ArtMethod* we're in, the current line number, and how deep the stack currently
Elliott Hughes2435a572012-02-17 16:07:41 -08003523 // is for step-out.
Ian Rogers0399dde2012-06-06 17:09:28 -07003524 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003525 explicit SingleStepStackVisitor(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
3526 : StackVisitor(thread, nullptr), stack_depth(0), method(nullptr), line_number(-1) {
Elliott Hughes86964332012-02-15 19:37:42 -08003527 }
Ian Rogersca190662012-06-26 15:45:57 -07003528
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003529 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3530 // annotalysis.
3531 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003532 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003533 if (!m->IsRuntimeMethod()) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003534 ++stack_depth;
3535 if (method == nullptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003536 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003537 method = m;
Ian Rogersc0542af2014-09-03 16:16:56 -07003538 if (dex_cache != nullptr) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003539 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003540 line_number = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003541 }
Elliott Hughes86964332012-02-15 19:37:42 -08003542 }
3543 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003544 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003545 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003546
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003547 int stack_depth;
3548 mirror::ArtMethod* method;
3549 int32_t line_number;
Elliott Hughes86964332012-02-15 19:37:42 -08003550 };
Jeff Hao449db332013-04-12 18:30:52 -07003551
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003552 Thread* const thread = sts.GetThread();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003553 SingleStepStackVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07003554 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003555
Elliott Hughes2435a572012-02-17 16:07:41 -08003556 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
Elliott Hughes2435a572012-02-17 16:07:41 -08003557 struct DebugCallbackContext {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003558 explicit DebugCallbackContext(SingleStepControl* single_step_control_cb,
3559 int32_t line_number_cb, const DexFile::CodeItem* code_item)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003560 : single_step_control_(single_step_control_cb), line_number_(line_number_cb),
3561 code_item_(code_item), last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003562 }
3563
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003564 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number_cb) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003565 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003566 if (static_cast<int32_t>(line_number_cb) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003567 if (!context->last_pc_valid) {
3568 // Everything from this address until the next line change is ours.
3569 context->last_pc = address;
3570 context->last_pc_valid = true;
3571 }
3572 // Otherwise, if we're already in a valid range for this line,
3573 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003574 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003575 // Add everything from the last entry up until here to the set
3576 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003577 context->single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003578 }
3579 context->last_pc_valid = false;
3580 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003581 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003582 }
3583
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003584 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003585 // If the line number was the last in the position table...
3586 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003587 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003588 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003589 single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003590 }
3591 }
3592 }
3593
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003594 SingleStepControl* const single_step_control_;
3595 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003596 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003597 bool last_pc_valid;
3598 uint32_t last_pc;
3599 };
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003600
3601 // Allocate single step.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003602 SingleStepControl* single_step_control =
3603 new (std::nothrow) SingleStepControl(step_size, step_depth,
3604 visitor.stack_depth, visitor.method);
3605 if (single_step_control == nullptr) {
3606 LOG(ERROR) << "Failed to allocate SingleStepControl";
3607 return JDWP::ERR_OUT_OF_MEMORY;
3608 }
3609
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003610 mirror::ArtMethod* m = single_step_control->GetMethod();
3611 const int32_t line_number = visitor.line_number;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003612 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003613 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003614 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003615 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07003616 DebugCallbackContext::Callback, nullptr, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003617 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003618
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003619 // Activate single-step in the thread.
3620 thread->ActivateSingleStepControl(single_step_control);
Elliott Hughes86964332012-02-15 19:37:42 -08003621
Elliott Hughes2435a572012-02-17 16:07:41 -08003622 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003623 VLOG(jdwp) << "Single-step thread: " << *thread;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003624 VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize();
3625 VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth();
3626 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->GetMethod());
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003627 VLOG(jdwp) << "Single-step current line: " << line_number;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003628 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth();
Elliott Hughes2435a572012-02-17 16:07:41 -08003629 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003630 for (uint32_t dex_pc : single_step_control->GetDexPcs()) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003631 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003632 }
3633 }
3634
3635 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003636}
3637
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003638void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3639 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07003640 JDWP::JdwpError error;
3641 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003642 if (error == JDWP::ERR_NONE) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003643 thread->DeactivateSingleStepControl();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003644 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003645}
3646
Elliott Hughes45651fd2012-02-21 15:48:20 -08003647static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3648 switch (tag) {
3649 default:
3650 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
Ian Rogersfc787ec2014-10-09 21:56:44 -07003651 UNREACHABLE();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003652
3653 // Primitives.
3654 case JDWP::JT_BYTE: return 'B';
3655 case JDWP::JT_CHAR: return 'C';
3656 case JDWP::JT_FLOAT: return 'F';
3657 case JDWP::JT_DOUBLE: return 'D';
3658 case JDWP::JT_INT: return 'I';
3659 case JDWP::JT_LONG: return 'J';
3660 case JDWP::JT_SHORT: return 'S';
3661 case JDWP::JT_VOID: return 'V';
3662 case JDWP::JT_BOOLEAN: return 'Z';
3663
3664 // Reference types.
3665 case JDWP::JT_ARRAY:
3666 case JDWP::JT_OBJECT:
3667 case JDWP::JT_STRING:
3668 case JDWP::JT_THREAD:
3669 case JDWP::JT_THREAD_GROUP:
3670 case JDWP::JT_CLASS_LOADER:
3671 case JDWP::JT_CLASS_OBJECT:
3672 return 'L';
3673 }
3674}
3675
Elliott Hughes88d63092013-01-09 09:55:54 -08003676JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3677 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003678 uint32_t arg_count, uint64_t* arg_values,
3679 JDWP::JdwpTag* arg_types, uint32_t options,
3680 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3681 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003682 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3683
Ian Rogersc0542af2014-09-03 16:16:56 -07003684 Thread* targetThread = nullptr;
Sebastien Hertz1558b572015-02-25 15:05:59 +01003685 std::unique_ptr<DebugInvokeReq> req;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003686 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003687 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003688 ScopedObjectAccessUnchecked soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07003689 JDWP::JdwpError error;
3690 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003691 if (error != JDWP::ERR_NONE) {
3692 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3693 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003694 }
Sebastien Hertz1558b572015-02-25 15:05:59 +01003695 if (targetThread->GetInvokeReq() != nullptr) {
3696 // Thread is already invoking a method on behalf of the debugger.
3697 LOG(ERROR) << "InvokeMethod request for thread already invoking a method: " << *targetThread;
3698 return JDWP::ERR_ALREADY_INVOKING;
3699 }
3700 if (!targetThread->IsReadyForDebugInvoke()) {
3701 // Thread is not suspended by an event so it cannot invoke a method.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003702 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3703 return JDWP::ERR_INVALID_THREAD;
3704 }
3705
3706 /*
3707 * We currently have a bug where we don't successfully resume the
3708 * target thread if the suspend count is too deep. We're expected to
3709 * require one "resume" for each "suspend", but when asked to execute
3710 * a method we have to resume fully and then re-suspend it back to the
3711 * same level. (The easiest way to cause this is to type "suspend"
3712 * multiple times in jdb.)
3713 *
3714 * It's unclear what this means when the event specifies "resume all"
3715 * and some threads are suspended more deeply than others. This is
3716 * a rare problem, so for now we just prevent it from hanging forever
3717 * by rejecting the method invocation request. Without this, we will
3718 * be stuck waiting on a suspended thread.
3719 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003720 int suspend_count;
3721 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003722 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003723 suspend_count = targetThread->GetSuspendCount();
3724 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003725 if (suspend_count > 1) {
3726 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003727 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003728 }
3729
Ian Rogersc0542af2014-09-03 16:16:56 -07003730 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3731 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003732 return JDWP::ERR_INVALID_OBJECT;
3733 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003734
Sebastien Hertz1558b572015-02-25 15:05:59 +01003735 gRegistry->Get<mirror::Object*>(thread_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07003736 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003737 return JDWP::ERR_INVALID_OBJECT;
3738 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003739
Ian Rogersc0542af2014-09-03 16:16:56 -07003740 mirror::Class* c = DecodeClass(class_id, &error);
3741 if (c == nullptr) {
3742 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003743 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003744
Brian Carlstromea46f952013-07-30 01:26:50 -07003745 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003746 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003747 return JDWP::ERR_INVALID_METHODID;
3748 }
3749 if (m->IsStatic()) {
3750 if (m->GetDeclaringClass() != c) {
3751 return JDWP::ERR_INVALID_METHODID;
3752 }
3753 } else {
3754 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3755 return JDWP::ERR_INVALID_METHODID;
3756 }
3757 }
3758
3759 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003760 uint32_t shorty_len = 0;
3761 const char* shorty = m->GetShorty(&shorty_len);
3762 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003763 return JDWP::ERR_ILLEGAL_ARGUMENT;
3764 }
Elliott Hughes09201632013-04-15 15:50:07 -07003765
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003766 {
3767 StackHandleScope<3> hs(soa.Self());
Ian Rogersa0485602014-12-02 15:48:04 -08003768 HandleWrapper<mirror::ArtMethod> h_m(hs.NewHandleWrapper(&m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003769 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3770 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3771 const DexFile::TypeList* types = m->GetParameterTypeList();
3772 for (size_t i = 0; i < arg_count; ++i) {
3773 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003774 return JDWP::ERR_ILLEGAL_ARGUMENT;
3775 }
3776
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003777 if (shorty[i + 1] == 'L') {
3778 // Did we really get an argument of an appropriate reference type?
Ian Rogersa0485602014-12-02 15:48:04 -08003779 mirror::Class* parameter_type =
3780 h_m->GetClassFromTypeIndex(types->GetTypeItem(i).type_idx_, true);
Ian Rogersc0542af2014-09-03 16:16:56 -07003781 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
3782 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003783 return JDWP::ERR_INVALID_OBJECT;
3784 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003785 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003786 return JDWP::ERR_ILLEGAL_ARGUMENT;
3787 }
3788
3789 // Turn the on-the-wire ObjectId into a jobject.
3790 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3791 v.l = gRegistry->GetJObject(arg_values[i]);
3792 }
Elliott Hughes09201632013-04-15 15:50:07 -07003793 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003794 }
3795
Sebastien Hertz1558b572015-02-25 15:05:59 +01003796 // Allocates a DebugInvokeReq.
3797 req.reset(new (std::nothrow) DebugInvokeReq(receiver, c, m, options, arg_values, arg_count));
3798 if (req.get() == nullptr) {
3799 LOG(ERROR) << "Failed to allocate DebugInvokeReq";
3800 return JDWP::ERR_OUT_OF_MEMORY;
3801 }
3802
3803 // Attach the DebugInvokeReq to the target thread so it executes the method when
3804 // it is resumed. Once the invocation completes, it will detach it and signal us
3805 // before suspending itself.
3806 targetThread->SetDebugInvokeReq(req.get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003807 }
3808
3809 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3810 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3811 // call, and it's unwise to hold it during WaitForSuspend.
3812
3813 {
3814 /*
3815 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003816 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003817 * run out of memory. It's also a good idea to change it before locking
3818 * the invokeReq mutex, although that should never be held for long.
3819 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003820 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003821
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003822 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003823 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003824 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003825
3826 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003827 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003828 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003829 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003830 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003831 thread_list->Resume(targetThread, true);
3832 }
3833
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003834 // The target thread is resumed but needs the JDWP token we're holding.
3835 // We release it now and will acquire it again when the invocation is
3836 // complete and the target thread suspends itself.
3837 gJdwpState->ReleaseJdwpTokenForCommand();
3838
Elliott Hughesd07986f2011-12-06 18:27:45 -08003839 // Wait for the request to finish executing.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003840 while (targetThread->GetInvokeReq() != nullptr) {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003841 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003842 }
3843 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003844 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003845
3846 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003847 SuspendThread(thread_id, false /* request_suspension */);
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003848
3849 // Now the thread is suspended again, we can re-acquire the JDWP token.
3850 gJdwpState->AcquireJdwpTokenForCommand();
3851
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003852 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003853 }
3854
3855 /*
3856 * Suspend the threads. We waited for the target thread to suspend
3857 * itself, so all we need to do is suspend the others.
3858 *
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003859 * The SuspendAllForDebugger() call will double-suspend the event thread,
Elliott Hughesd07986f2011-12-06 18:27:45 -08003860 * so we want to resume the target thread once to keep the books straight.
3861 */
3862 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003863 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003864 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003865 thread_list->SuspendAllForDebugger();
3866 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003867 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003868 thread_list->Resume(targetThread, true);
3869 }
3870
3871 // Copy the result.
3872 *pResultTag = req->result_tag;
Sebastien Hertz1558b572015-02-25 15:05:59 +01003873 *pResultValue = req->result_value;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003874 *pExceptionId = req->exception;
3875 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003876}
3877
3878void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003879 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003880
Elliott Hughes81ff3182012-03-23 20:35:56 -07003881 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003882 // to preserve that across the method invocation.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003883 StackHandleScope<4> hs(soa.Self());
3884 auto old_exception = hs.NewHandle<mirror::Throwable>(soa.Self()->GetException());
3885 soa.Self()->ClearException();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003886
3887 // Translate the method through the vtable, unless the debugger wants to suppress it.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003888 MutableHandle<mirror::ArtMethod> m(hs.NewHandle(pReq->method.Read()));
3889 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) {
3890 mirror::ArtMethod* actual_method = pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m.Get());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003891 if (actual_method != m.Get()) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01003892 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get())
3893 << " to " << PrettyMethod(actual_method);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003894 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003895 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003896 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003897 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertz1558b572015-02-25 15:05:59 +01003898 << " receiver=" << pReq->receiver.Read()
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003899 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003900 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003901
3902 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3903
Sebastien Hertz1558b572015-02-25 15:05:59 +01003904 JValue result = InvokeWithJValues(soa, pReq->receiver.Read(), soa.EncodeMethod(m.Get()),
3905 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003906
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003907 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Sebastien Hertz1558b572015-02-25 15:05:59 +01003908 const bool is_object_result = (pReq->result_tag == JDWP::JT_OBJECT);
3909 Handle<mirror::Object> object_result = hs.NewHandle(is_object_result ? result.GetL() : nullptr);
3910 Handle<mirror::Throwable> exception = hs.NewHandle(soa.Self()->GetException());
3911 soa.Self()->ClearException();
3912 pReq->exception = gRegistry->Add(exception.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003913 if (pReq->exception != 0) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01003914 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get()
3915 << " " << exception->Dump();
3916 pReq->result_value = 0;
3917 } else if (is_object_result) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003918 /* if no exception thrown, examine object result more closely */
Sebastien Hertz1558b572015-02-25 15:05:59 +01003919 JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003920 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003921 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003922 pReq->result_tag = new_tag;
3923 }
3924
Sebastien Hertz1558b572015-02-25 15:05:59 +01003925 // Register the object in the registry and reference its ObjectId. This ensures
3926 // GC safety and prevents from accessing stale reference if the object is moved.
3927 pReq->result_value = gRegistry->Add(object_result.Get());
3928 } else {
3929 // Primitive result.
3930 DCHECK(IsPrimitiveTag(pReq->result_tag));
3931 pReq->result_value = result.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003932 }
3933
Ian Rogersc0542af2014-09-03 16:16:56 -07003934 if (old_exception.Get() != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003935 soa.Self()->SetException(old_exception.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003936 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003937}
3938
Elliott Hughesd07986f2011-12-06 18:27:45 -08003939/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003940 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003941 * need to process each, accumulate the replies, and ship the whole thing
3942 * back.
3943 *
3944 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3945 * and includes the chunk type/length, followed by the data.
3946 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003947 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003948 * chunk. If this becomes inconvenient we will need to adapt.
3949 */
Ian Rogersc0542af2014-09-03 16:16:56 -07003950bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003951 Thread* self = Thread::Current();
3952 JNIEnv* env = self->GetJniEnv();
3953
Ian Rogersc0542af2014-09-03 16:16:56 -07003954 uint32_t type = request->ReadUnsigned32("type");
3955 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003956
3957 // Create a byte[] corresponding to 'request'.
Ian Rogersc0542af2014-09-03 16:16:56 -07003958 size_t request_length = request->size();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003959 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Ian Rogersc0542af2014-09-03 16:16:56 -07003960 if (dataArray.get() == nullptr) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003961 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003962 env->ExceptionClear();
3963 return false;
3964 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003965 env->SetByteArrayRegion(dataArray.get(), 0, request_length,
3966 reinterpret_cast<const jbyte*>(request->data()));
3967 request->Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003968
3969 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003970 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003971 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003972 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003973 return false;
3974 }
3975
3976 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003977 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3978 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003979 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003980 if (env->ExceptionCheck()) {
3981 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3982 env->ExceptionDescribe();
3983 env->ExceptionClear();
3984 return false;
3985 }
3986
Ian Rogersc0542af2014-09-03 16:16:56 -07003987 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003988 return false;
3989 }
3990
3991 /*
3992 * Pull the pieces out of the chunk. We copy the results into a
3993 * newly-allocated buffer that the caller can free. We don't want to
3994 * continue using the Chunk object because nothing has a reference to it.
3995 *
3996 * We could avoid this by returning type/data/offset/length and having
3997 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003998 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003999 * if we have responses for multiple chunks.
4000 *
4001 * So we're pretty much stuck with copying data around multiple times.
4002 */
Elliott Hugheseac76672012-05-24 21:56:51 -07004003 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 -08004004 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07004005 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07004006 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004007
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004008 VLOG(jdwp) << StringPrintf("DDM reply: type=0x%08x data=%p offset=%d length=%d", type, replyData.get(), offset, length);
Ian Rogersc0542af2014-09-03 16:16:56 -07004009 if (length == 0 || replyData.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004010 return false;
4011 }
4012
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004013 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004014 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
Ian Rogersc0542af2014-09-03 16:16:56 -07004015 if (reply == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004016 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
4017 return false;
4018 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07004019 JDWP::Set4BE(reply + 0, type);
4020 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004021 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004022
4023 *pReplyBuf = reply;
4024 *pReplyLen = length + kChunkHdrLen;
4025
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004026 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004027 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004028}
4029
Elliott Hughesa2155262011-11-16 16:26:58 -08004030void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004031 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07004032
4033 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07004034 if (self->GetState() != kRunnable) {
4035 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
4036 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07004037 }
4038
4039 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07004040 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07004041 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4042 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
4043 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07004044 if (env->ExceptionCheck()) {
4045 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
4046 env->ExceptionDescribe();
4047 env->ExceptionClear();
4048 }
4049}
4050
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004051void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004052 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004053}
4054
4055void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004056 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07004057 gDdmThreadNotification = false;
4058}
4059
4060/*
Elliott Hughes82188472011-11-07 18:11:48 -08004061 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07004062 *
4063 * Because we broadcast the full set of threads when the notifications are
4064 * first enabled, it's possible for "thread" to be actively executing.
4065 */
Elliott Hughes82188472011-11-07 18:11:48 -08004066void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004067 if (!gDdmThreadNotification) {
4068 return;
4069 }
4070
Elliott Hughes82188472011-11-07 18:11:48 -08004071 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004072 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004073 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07004074 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08004075 } else {
4076 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004077 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004078 StackHandleScope<1> hs(soa.Self());
4079 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
Ian Rogersc0542af2014-09-03 16:16:56 -07004080 size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0;
Jeff Hao848f70a2014-01-15 13:49:50 -08004081 const jchar* chars = (name.Get() != nullptr) ? name->GetValue() : nullptr;
Elliott Hughes82188472011-11-07 18:11:48 -08004082
Elliott Hughes21f32d72011-11-09 17:44:13 -08004083 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004084 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004085 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08004086 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
4087 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07004088 }
4089}
4090
Elliott Hughes47fce012011-10-25 18:37:19 -07004091void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004092 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07004093 gDdmThreadNotification = enable;
4094 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004095 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
4096 // see a suspension in progress and block until that ends. They then post their own start
4097 // notification.
4098 SuspendVM();
4099 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07004100 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004101 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004102 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004103 threads = Runtime::Current()->GetThreadList()->GetList();
4104 }
4105 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004106 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07004107 for (Thread* thread : threads) {
4108 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004109 }
4110 }
4111 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07004112 }
4113}
4114
Elliott Hughesa2155262011-11-16 16:26:58 -08004115void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07004116 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02004117 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004118 }
Elliott Hughes82188472011-11-07 18:11:48 -08004119 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07004120}
4121
4122void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004123 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004124}
4125
4126void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004127 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004128}
4129
Elliott Hughes82188472011-11-07 18:11:48 -08004130void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004131 CHECK(buf != nullptr);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004132 iovec vec[1];
4133 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
4134 vec[0].iov_len = byte_count;
4135 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004136}
4137
Elliott Hughes21f32d72011-11-09 17:44:13 -08004138void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
4139 DdmSendChunk(type, bytes.size(), &bytes[0]);
4140}
4141
Brian Carlstromf5293522013-07-19 00:24:00 -07004142void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004143 if (gJdwpState == nullptr) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004144 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07004145 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08004146 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004147 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004148}
4149
Mathieu Chartierad466ad2015-01-08 16:28:08 -08004150JDWP::JdwpState* Dbg::GetJdwpState() {
4151 return gJdwpState;
4152}
4153
Elliott Hughes767a1472011-10-26 18:49:02 -07004154int Dbg::DdmHandleHpifChunk(HpifWhen when) {
4155 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07004156 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07004157 return true;
4158 }
4159
4160 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4161 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4162 return false;
4163 }
4164
4165 gDdmHpifWhen = when;
4166 return true;
4167}
4168
4169bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4170 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4171 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4172 return false;
4173 }
4174
4175 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4176 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4177 return false;
4178 }
4179
4180 if (native) {
4181 gDdmNhsgWhen = when;
4182 gDdmNhsgWhat = what;
4183 } else {
4184 gDdmHpsgWhen = when;
4185 gDdmHpsgWhat = what;
4186 }
4187 return true;
4188}
4189
Elliott Hughes7162ad92011-10-27 14:08:42 -07004190void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4191 // If there's a one-shot 'when', reset it.
4192 if (reason == gDdmHpifWhen) {
4193 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4194 gDdmHpifWhen = HPIF_WHEN_NEVER;
4195 }
4196 }
4197
4198 /*
4199 * Chunk HPIF (client --> server)
4200 *
4201 * Heap Info. General information about the heap,
4202 * suitable for a summary display.
4203 *
4204 * [u4]: number of heaps
4205 *
4206 * For each heap:
4207 * [u4]: heap ID
4208 * [u8]: timestamp in ms since Unix epoch
4209 * [u1]: capture reason (same as 'when' value from server)
4210 * [u4]: max heap size in bytes (-Xmx)
4211 * [u4]: current heap size in bytes
4212 * [u4]: current number of bytes allocated
4213 * [u4]: current number of objects allocated
4214 */
4215 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004216 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004217 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004218 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004219 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004220 JDWP::Append8BE(bytes, MilliTime());
4221 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004222 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4223 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004224 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4225 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004226 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
4227 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07004228}
4229
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004230enum HpsgSolidity {
4231 SOLIDITY_FREE = 0,
4232 SOLIDITY_HARD = 1,
4233 SOLIDITY_SOFT = 2,
4234 SOLIDITY_WEAK = 3,
4235 SOLIDITY_PHANTOM = 4,
4236 SOLIDITY_FINALIZABLE = 5,
4237 SOLIDITY_SWEEP = 6,
4238};
4239
4240enum HpsgKind {
4241 KIND_OBJECT = 0,
4242 KIND_CLASS_OBJECT = 1,
4243 KIND_ARRAY_1 = 2,
4244 KIND_ARRAY_2 = 3,
4245 KIND_ARRAY_4 = 4,
4246 KIND_ARRAY_8 = 5,
4247 KIND_UNKNOWN = 6,
4248 KIND_NATIVE = 7,
4249};
4250
4251#define HPSG_PARTIAL (1<<7)
4252#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4253
Ian Rogers30fab402012-01-23 15:43:46 -08004254class HeapChunkContext {
4255 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004256 // Maximum chunk size. Obtain this from the formula:
4257 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4258 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004259 : buf_(16384 - 16),
4260 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004261 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004262 Reset();
4263 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004264 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004265 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004266 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004267 }
4268 }
4269
4270 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004271 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004272 Flush();
4273 }
4274 }
4275
Mathieu Chartier36dab362014-07-30 14:59:56 -07004276 void SetChunkOverhead(size_t chunk_overhead) {
4277 chunk_overhead_ = chunk_overhead;
4278 }
4279
4280 void ResetStartOfNextChunk() {
4281 startOfNextMemoryChunk_ = nullptr;
4282 }
4283
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004284 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004285 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004286 return;
4287 }
4288
4289 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004290 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4291 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004292
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004293 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4294 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004295 // [u4]: length of piece, in allocation units
4296 // 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 -08004297 pieceLenField_ = p_;
4298 JDWP::Write4BE(&p_, 0x55555555);
4299 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004300 }
4301
Ian Rogersb726dcb2012-09-05 08:57:23 -07004302 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004303 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004304 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4305 CHECK(needHeader_);
4306 return;
4307 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004308 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004309 CHECK_LE(&buf_[0], pieceLenField_);
4310 CHECK_LE(pieceLenField_, p_);
4311 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004312
Ian Rogers30fab402012-01-23 15:43:46 -08004313 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004314 Reset();
4315 }
4316
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004317 static void HeapChunkJavaCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004318 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4319 Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004320 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes);
4321 }
4322
4323 static void HeapChunkNativeCallback(void* start, void* end, size_t used_bytes, void* arg)
4324 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4325 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004326 }
4327
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004328 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004329 enum { ALLOCATION_UNIT_SIZE = 8 };
4330
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004331 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004332 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004333 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004334 totalAllocationUnits_ = 0;
4335 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004336 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004337 }
4338
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004339 bool IsNative() const {
4340 return type_ == CHUNK_TYPE("NHSG");
4341 }
4342
4343 // Returns true if the object is not an empty chunk.
4344 bool ProcessRecord(void* start, size_t used_bytes) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004345 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4346 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004347 if (used_bytes == 0) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004348 if (start == nullptr) {
4349 // Reset for start of new heap.
4350 startOfNextMemoryChunk_ = nullptr;
4351 Flush();
4352 }
4353 // Only process in use memory so that free region information
4354 // also includes dlmalloc book keeping.
4355 return false;
Elliott Hughesa2155262011-11-16 16:26:58 -08004356 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004357 if (startOfNextMemoryChunk_ != nullptr) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004358 // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because
4359 // of the use of mmaps, so don't report. If not free memory then start a new segment.
4360 bool flush = true;
4361 if (start > startOfNextMemoryChunk_) {
4362 const size_t kMaxFreeLen = 2 * kPageSize;
4363 void* free_start = startOfNextMemoryChunk_;
4364 void* free_end = start;
4365 const size_t free_len =
4366 reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start);
4367 if (!IsNative() || free_len < kMaxFreeLen) {
4368 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative());
4369 flush = false;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004370 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004371 }
4372 if (flush) {
4373 startOfNextMemoryChunk_ = nullptr;
4374 Flush();
4375 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004376 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004377 return true;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004378 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004379
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004380 void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes)
4381 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4382 if (ProcessRecord(start, used_bytes)) {
4383 uint8_t state = ExamineNativeObject(start);
4384 AppendChunk(state, start, used_bytes + chunk_overhead_, true /*is_native*/);
4385 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4386 }
4387 }
4388
4389 void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes)
4390 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
4391 if (ProcessRecord(start, used_bytes)) {
4392 // Determine the type of this chunk.
4393 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4394 // If it's the same, we should combine them.
4395 uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start));
4396 AppendChunk(state, start, used_bytes + chunk_overhead_, false /*is_native*/);
4397 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4398 }
4399 }
4400
4401 void AppendChunk(uint8_t state, void* ptr, size_t length, bool is_native)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004402 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004403 // Make sure there's enough room left in the buffer.
4404 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4405 // 17 bytes for any header.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004406 const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17;
4407 size_t byte_left = &buf_.back() - p_;
4408 if (byte_left < needed) {
4409 if (is_native) {
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004410 // Cannot trigger memory allocation while walking native heap.
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004411 return;
4412 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004413 Flush();
4414 }
4415
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004416 byte_left = &buf_.back() - p_;
4417 if (byte_left < needed) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004418 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4419 << needed << " bytes)";
4420 return;
4421 }
4422 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004423 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004424 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4425 totalAllocationUnits_ += length;
4426 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004427 *p_++ = state | HPSG_PARTIAL;
4428 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004429 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004430 }
Ian Rogers30fab402012-01-23 15:43:46 -08004431 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004432 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004433 }
4434
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004435 uint8_t ExamineNativeObject(const void* p) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4436 return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4437 }
4438
4439 uint8_t ExamineJavaObject(mirror::Object* o)
Ian Rogersef7d42f2014-01-06 12:55:46 -08004440 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004441 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004442 return HPSG_STATE(SOLIDITY_FREE, 0);
4443 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004444 // It's an allocated chunk. Figure out what it is.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004445 gc::Heap* heap = Runtime::Current()->GetHeap();
4446 if (!heap->IsLiveObjectLocked(o)) {
4447 LOG(ERROR) << "Invalid object in managed heap: " << o;
Elliott Hughesa2155262011-11-16 16:26:58 -08004448 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4449 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004450 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004451 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004452 // The object was probably just created but hasn't been initialized yet.
4453 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4454 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004455 if (!heap->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004456 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004457 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4458 }
Mathieu Chartierf26e1b32015-01-29 10:47:10 -08004459 if (c->GetClass() == nullptr) {
4460 LOG(ERROR) << "Null class of class " << c << " for object " << o;
4461 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4462 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004463 if (c->IsClassClass()) {
4464 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4465 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004466 if (c->IsArrayClass()) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004467 switch (c->GetComponentSize()) {
4468 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4469 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4470 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4471 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4472 }
4473 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004474 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4475 }
4476
Ian Rogers30fab402012-01-23 15:43:46 -08004477 std::vector<uint8_t> buf_;
4478 uint8_t* p_;
4479 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004480 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004481 size_t totalAllocationUnits_;
4482 uint32_t type_;
Ian Rogers30fab402012-01-23 15:43:46 -08004483 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004484 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004485
Elliott Hughesa2155262011-11-16 16:26:58 -08004486 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4487};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004488
Mathieu Chartier36dab362014-07-30 14:59:56 -07004489static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
4490 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
4491 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004492 HeapChunkContext::HeapChunkJavaCallback(
Mathieu Chartier36dab362014-07-30 14:59:56 -07004493 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4494}
4495
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004496void Dbg::DdmSendHeapSegments(bool native) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004497 Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen;
4498 Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004499 if (when == HPSG_WHEN_NEVER) {
4500 return;
4501 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004502 // Figure out what kind of chunks we'll be sending.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004503 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS)
4504 << static_cast<int>(what);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004505
4506 // First, send a heap start chunk.
4507 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004508 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004509 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004510 Thread* self = Thread::Current();
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004511 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004512
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004513 // Send a series of heap segment chunks.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004514 HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native);
Elliott Hughesa2155262011-11-16 16:26:58 -08004515 if (native) {
Ian Rogers872dd822014-10-30 11:19:14 -07004516#if defined(HAVE_ANDROID_OS) && defined(USE_DLMALLOC)
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004517 dlmalloc_inspect_all(HeapChunkContext::HeapChunkNativeCallback, &context);
4518 HeapChunkContext::HeapChunkNativeCallback(nullptr, nullptr, 0, &context); // Indicate end of a space.
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004519#else
4520 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4521#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004522 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004523 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004524 for (const auto& space : heap->GetContinuousSpaces()) {
4525 if (space->IsDlMallocSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004526 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004527 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4528 // allocation then the first sizeof(size_t) may belong to it.
4529 context.SetChunkOverhead(sizeof(size_t));
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004530 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004531 } else if (space->IsRosAllocSpace()) {
4532 context.SetChunkOverhead(0);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004533 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4534 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
4535 self->TransitionFromRunnableToSuspended(kSuspended);
4536 ThreadList* tl = Runtime::Current()->GetThreadList();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07004537 tl->SuspendAll(__FUNCTION__);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004538 {
4539 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004540 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004541 }
4542 tl->ResumeAll();
4543 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004544 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004545 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004546 context.SetChunkOverhead(0);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004547 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004548 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004549 } else if (space->IsRegionSpace()) {
4550 heap->IncrementDisableMovingGC(self);
4551 self->TransitionFromRunnableToSuspended(kSuspended);
4552 ThreadList* tl = Runtime::Current()->GetThreadList();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07004553 tl->SuspendAll(__FUNCTION__);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004554 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4555 context.SetChunkOverhead(0);
4556 space->AsRegionSpace()->Walk(BumpPointerSpaceCallback, &context);
4557 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
4558 tl->ResumeAll();
4559 self->TransitionFromSuspendedToRunnable();
4560 heap->DecrementDisableMovingGC(self);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004561 } else {
4562 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004563 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004564 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004565 }
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004566 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004567 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004568 context.SetChunkOverhead(0);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004569 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004570 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004571
4572 // Finally, send a heap end chunk.
4573 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004574}
4575
Elliott Hughesb1a58792013-07-11 18:10:58 -07004576static size_t GetAllocTrackerMax() {
4577#ifdef HAVE_ANDROID_OS
4578 // Check whether there's a system property overriding the number of records.
4579 const char* propertyName = "dalvik.vm.allocTrackerMax";
4580 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4581 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4582 char* end;
4583 size_t value = strtoul(allocRecordMaxString, &end, 10);
4584 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004585 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4586 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004587 return kDefaultNumAllocRecords;
4588 }
4589 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004590 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4591 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004592 return kDefaultNumAllocRecords;
4593 }
4594 return value;
4595 }
4596#endif
4597 return kDefaultNumAllocRecords;
4598}
4599
Brian Carlstrom306db812014-09-05 13:01:41 -07004600void Dbg::SetAllocTrackingEnabled(bool enable) {
4601 Thread* self = Thread::Current();
4602 if (enable) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004603 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004604 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4605 if (recent_allocation_records_ != nullptr) {
4606 return; // Already enabled, bail.
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004607 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004608 alloc_record_max_ = GetAllocTrackerMax();
4609 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4610 << kMaxAllocRecordStackDepth << " frames, taking "
4611 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4612 DCHECK_EQ(alloc_record_head_, 0U);
4613 DCHECK_EQ(alloc_record_count_, 0U);
4614 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4615 CHECK(recent_allocation_records_ != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004616 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004617 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004618 } else {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004619 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004620 ScopedObjectAccess soa(self); // For type_cache_.Clear();
4621 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4622 if (recent_allocation_records_ == nullptr) {
4623 return; // Already disabled, bail.
4624 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07004625 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004626 delete[] recent_allocation_records_;
Ian Rogersc0542af2014-09-03 16:16:56 -07004627 recent_allocation_records_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -07004628 alloc_record_head_ = 0;
4629 alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004630 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004631 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004632 // If an allocation comes in before we uninstrument, we will safely drop it on the floor.
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004633 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004634 }
4635}
4636
Ian Rogers0399dde2012-06-06 17:09:28 -07004637struct AllocRecordStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004638 AllocRecordStackVisitor(Thread* thread, AllocRecord* record_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004639 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004640 : StackVisitor(thread, nullptr), record(record_in), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004641
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004642 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4643 // annotalysis.
4644 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004645 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004646 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004647 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004648 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004649 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004650 record->StackElement(depth)->SetMethod(m);
4651 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004652 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004653 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004654 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004655 }
4656
4657 ~AllocRecordStackVisitor() {
4658 // Clear out any unused stack trace elements.
4659 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004660 record->StackElement(depth)->SetMethod(nullptr);
4661 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004662 }
4663 }
4664
4665 AllocRecord* record;
4666 size_t depth;
4667};
4668
Ian Rogers844506b2014-09-12 19:59:33 -07004669void Dbg::RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004670 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004671 if (recent_allocation_records_ == nullptr) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004672 // In the process of shutting down recording, bail.
Elliott Hughes545a0642011-11-08 19:10:03 -08004673 return;
4674 }
4675
4676 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004677 if (++alloc_record_head_ == alloc_record_max_) {
4678 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004679 }
4680
4681 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004682 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004683 record->SetType(type);
4684 record->SetByteCount(byte_count);
4685 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004686
4687 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004688 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004689 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004690
Ian Rogers719d1a32014-03-06 12:13:39 -08004691 if (alloc_record_count_ < alloc_record_max_) {
4692 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004693 }
4694}
4695
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004696// Returns the index of the head element.
4697//
Brian Carlstrom306db812014-09-05 13:01:41 -07004698// We point at the most-recently-written record, so if alloc_record_count_ is 1
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004699// we want to use the current element. Take "head+1" and subtract count
4700// from it.
4701//
4702// We need to handle underflow in our circular buffer, so we add
Brian Carlstrom306db812014-09-05 13:01:41 -07004703// alloc_record_max_ and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004704size_t Dbg::HeadIndex() {
4705 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4706 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004707}
4708
4709void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004710 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004711 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004712 if (recent_allocation_records_ == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004713 LOG(INFO) << "Not recording tracked allocations";
4714 return;
4715 }
4716
4717 // "i" is the head of the list. We want to start at the end of the
4718 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004719 size_t i = HeadIndex();
Brian Carlstrom306db812014-09-05 13:01:41 -07004720 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4721 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004722
Ian Rogers719d1a32014-03-06 12:13:39 -08004723 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004724 while (count--) {
4725 AllocRecord* record = &recent_allocation_records_[i];
4726
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004727 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4728 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004729
4730 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004731 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4732 mirror::ArtMethod* m = stack_element->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004733 if (m == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004734 break;
4735 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004736 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004737 }
4738
4739 // pause periodically to help logcat catch up
4740 if ((count % 5) == 0) {
4741 usleep(40000);
4742 }
4743
Ian Rogers719d1a32014-03-06 12:13:39 -08004744 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004745 }
4746}
4747
4748class StringTable {
4749 public:
4750 StringTable() {
4751 }
4752
Mathieu Chartier4345c462014-06-27 10:20:14 -07004753 void Add(const std::string& str) {
4754 table_.insert(str);
4755 }
4756
4757 void Add(const char* str) {
4758 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004759 }
4760
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004761 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004762 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004763 if (it == table_.end()) {
4764 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4765 }
4766 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004767 }
4768
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004769 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004770 return table_.size();
4771 }
4772
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004773 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004774 for (const std::string& str : table_) {
4775 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004776 size_t s_len = CountModifiedUtf8Chars(s);
Christopher Ferris8a354052015-04-24 17:23:53 -07004777 std::unique_ptr<uint16_t[]> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004778 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4779 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004780 }
4781 }
4782
4783 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004784 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004785 DISALLOW_COPY_AND_ASSIGN(StringTable);
4786};
4787
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004788static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004789 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004790 DCHECK(method != nullptr);
4791 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004792 return (source_file != nullptr) ? source_file : "";
4793}
4794
Elliott Hughes545a0642011-11-08 19:10:03 -08004795/*
4796 * The data we send to DDMS contains everything we have recorded.
4797 *
4798 * Message header (all values big-endian):
4799 * (1b) message header len (to allow future expansion); includes itself
4800 * (1b) entry header len
4801 * (1b) stack frame len
4802 * (2b) number of entries
4803 * (4b) offset to string table from start of message
4804 * (2b) number of class name strings
4805 * (2b) number of method name strings
4806 * (2b) number of source file name strings
4807 * For each entry:
4808 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004809 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004810 * (2b) allocated object's class name index
4811 * (1b) stack depth
4812 * For each stack frame:
4813 * (2b) method's class name
4814 * (2b) method name
4815 * (2b) method source file
4816 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4817 * (xb) class name strings
4818 * (xb) method name strings
4819 * (xb) source file strings
4820 *
4821 * As with other DDM traffic, strings are sent as a 4-byte length
4822 * followed by UTF-16 data.
4823 *
4824 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07004825 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004826 * each table, but in practice there should be far fewer.
4827 *
4828 * The chief reason for using a string table here is to keep the size of
4829 * the DDMS message to a minimum. This is partly to make the protocol
4830 * efficient, but also because we have to form the whole thing up all at
4831 * once in a memory buffer.
4832 *
4833 * We use separate string tables for class names, method names, and source
4834 * files to keep the indexes small. There will generally be no overlap
4835 * between the contents of these tables.
4836 */
4837jbyteArray Dbg::GetRecentAllocations() {
Ian Rogerscf7f1912014-10-22 22:06:39 -07004838 if ((false)) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004839 DumpRecentAllocations();
4840 }
4841
Ian Rogers50b35e22012-10-04 10:09:15 -07004842 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004843 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004844 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004845 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004846 //
4847 // Part 1: generate string tables.
4848 //
4849 StringTable class_names;
4850 StringTable method_names;
4851 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004852
Brian Carlstrom306db812014-09-05 13:01:41 -07004853 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4854 uint16_t count = capped_count;
4855 size_t idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004856 while (count--) {
4857 AllocRecord* record = &recent_allocation_records_[idx];
Ian Rogers1ff3c982014-08-12 02:30:58 -07004858 std::string temp;
4859 class_names.Add(record->Type()->GetDescriptor(&temp));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004860 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004861 mirror::ArtMethod* m = record->StackElement(i)->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004862 if (m != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004863 class_names.Add(m->GetDeclaringClassDescriptor());
4864 method_names.Add(m->GetName());
4865 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004866 }
4867 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004868
Ian Rogers719d1a32014-03-06 12:13:39 -08004869 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004870 }
4871
Brian Carlstrom306db812014-09-05 13:01:41 -07004872 LOG(INFO) << "allocation records: " << capped_count;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004873
4874 //
4875 // Part 2: Generate the output and store it in the buffer.
4876 //
4877
4878 // (1b) message header len (to allow future expansion); includes itself
4879 // (1b) entry header len
4880 // (1b) stack frame len
4881 const int kMessageHeaderLen = 15;
4882 const int kEntryHeaderLen = 9;
4883 const int kStackFrameLen = 8;
4884 JDWP::Append1BE(bytes, kMessageHeaderLen);
4885 JDWP::Append1BE(bytes, kEntryHeaderLen);
4886 JDWP::Append1BE(bytes, kStackFrameLen);
4887
4888 // (2b) number of entries
4889 // (4b) offset to string table from start of message
4890 // (2b) number of class name strings
4891 // (2b) number of method name strings
4892 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07004893 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004894 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004895 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004896 JDWP::Append2BE(bytes, class_names.Size());
4897 JDWP::Append2BE(bytes, method_names.Size());
4898 JDWP::Append2BE(bytes, filenames.Size());
4899
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004900 idx = HeadIndex();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004901 std::string temp;
Brian Carlstrom306db812014-09-05 13:01:41 -07004902 for (count = capped_count; count != 0; --count) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004903 // For each entry:
4904 // (4b) total allocation size
4905 // (2b) thread id
4906 // (2b) allocated object's class name index
4907 // (1b) stack depth
4908 AllocRecord* record = &recent_allocation_records_[idx];
4909 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004910 size_t allocated_object_class_name_index =
Ian Rogers1ff3c982014-08-12 02:30:58 -07004911 class_names.IndexOf(record->Type()->GetDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004912 JDWP::Append4BE(bytes, record->ByteCount());
4913 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004914 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4915 JDWP::Append1BE(bytes, stack_depth);
4916
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004917 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4918 // For each stack frame:
4919 // (2b) method's class name
4920 // (2b) method name
4921 // (2b) method source file
4922 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004923 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004924 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4925 size_t method_name_index = method_names.IndexOf(m->GetName());
4926 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004927 JDWP::Append2BE(bytes, class_name_index);
4928 JDWP::Append2BE(bytes, method_name_index);
4929 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004930 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004931 }
Ian Rogers719d1a32014-03-06 12:13:39 -08004932 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004933 }
4934
4935 // (xb) class name strings
4936 // (xb) method name strings
4937 // (xb) source file strings
4938 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4939 class_names.WriteTo(bytes);
4940 method_names.WriteTo(bytes);
4941 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004942 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004943 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004944 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07004945 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004946 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4947 }
4948 return result;
4949}
4950
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07004951mirror::ArtMethod* DeoptimizationRequest::Method() const {
4952 ScopedObjectAccessUnchecked soa(Thread::Current());
4953 return soa.DecodeMethod(method_);
4954}
4955
4956void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
4957 ScopedObjectAccessUnchecked soa(Thread::Current());
4958 method_ = soa.EncodeMethod(m);
4959}
4960
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004961} // namespace art