blob: a767cf086f46c4ee87fe64e7f2b58e22b29a451c [file] [log] [blame]
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "debugger.h"
18
Elliott Hughes3bb81562011-10-21 18:52:59 -070019#include <sys/uio.h>
20
Elliott Hughes545a0642011-11-08 19:10:03 -080021#include <set>
22
Ian Rogers166db042013-07-26 12:05:57 -070023#include "arch/context.h"
Elliott Hughes545a0642011-11-08 19:10:03 -080024#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070026#include "dex_file-inl.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070027#include "dex_instruction.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070028#include "gc/accounting/card_table-inl.h"
29#include "gc/space/large_object_space.h"
30#include "gc/space/space-inl.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070031#include "handle_scope.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080032#include "jdwp/object_registry.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070033#include "mirror/art_field-inl.h"
34#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035#include "mirror/class.h"
36#include "mirror/class-inl.h"
37#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038#include "mirror/object-inl.h"
39#include "mirror/object_array-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070040#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080041#include "mirror/throwable.h"
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_;
Ian Rogersc0542af2014-09-03 16:16:56 -0700177 AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth]; // Unused entries have nullptr method.
Elliott Hughes545a0642011-11-08 19:10:03 -0800178};
179
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700180class Breakpoint {
181 public:
Sebastien Hertzf3928792014-11-17 19:00:37 +0100182 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc,
183 DeoptimizationRequest::Kind deoptimization_kind)
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700184 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertzf3928792014-11-17 19:00:37 +0100185 : method_(nullptr), dex_pc_(dex_pc), deoptimization_kind_(deoptimization_kind) {
186 CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing ||
187 deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization ||
188 deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700189 ScopedObjectAccessUnchecked soa(Thread::Current());
190 method_ = soa.EncodeMethod(method);
191 }
192
193 Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
194 : method_(nullptr), dex_pc_(other.dex_pc_),
Sebastien Hertzf3928792014-11-17 19:00:37 +0100195 deoptimization_kind_(other.deoptimization_kind_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700196 ScopedObjectAccessUnchecked soa(Thread::Current());
197 method_ = soa.EncodeMethod(other.Method());
198 }
199
200 mirror::ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
201 ScopedObjectAccessUnchecked soa(Thread::Current());
202 return soa.DecodeMethod(method_);
203 }
204
205 uint32_t DexPc() const {
206 return dex_pc_;
207 }
208
Sebastien Hertzf3928792014-11-17 19:00:37 +0100209 DeoptimizationRequest::Kind GetDeoptimizationKind() const {
210 return deoptimization_kind_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700211 }
212
213 private:
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100214 // The location of this breakpoint.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700215 jmethodID method_;
216 uint32_t dex_pc_;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100217
218 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
Sebastien Hertzf3928792014-11-17 19:00:37 +0100219 DeoptimizationRequest::Kind deoptimization_kind_;
Elliott Hughes86964332012-02-15 19:37:42 -0800220};
221
Sebastien Hertzed2be172014-08-19 15:33:43 +0200222static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700223 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700224 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
Elliott Hughes86964332012-02-15 19:37:42 -0800225 return os;
226}
227
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200228class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800229 public:
230 DebugInstrumentationListener() {}
231 virtual ~DebugInstrumentationListener() {}
232
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200233 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700234 uint32_t dex_pc ATTRIBUTE_UNUSED)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200235 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800236 if (method->IsNative()) {
237 // TODO: post location events is a suspension point and native method entry stubs aren't.
238 return;
239 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100240 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800241 }
242
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200243 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
244 uint32_t dex_pc, const JValue& return_value)
245 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800246 if (method->IsNative()) {
247 // TODO: post location events is a suspension point and native method entry stubs aren't.
248 return;
249 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100250 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800251 }
252
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200253 void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
254 uint32_t dex_pc)
255 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800256 // We're not recorded to listen to this kind of event, so complain.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700257 UNUSED(thread, this_object, method, dex_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800258 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100259 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800260 }
261
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200262 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
263 uint32_t new_dex_pc)
264 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz8379b222014-02-24 17:38:15 +0100265 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800266 }
267
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200268 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
269 uint32_t dex_pc, mirror::ArtField* field)
270 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700271 UNUSED(thread);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200272 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800273 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200274
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700275 void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object,
276 mirror::ArtMethod* method, uint32_t dex_pc, mirror::ArtField* field,
277 const JValue& field_value)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200278 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
279 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
280 }
281
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000282 void ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED, mirror::Throwable* exception_object)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200283 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000284 Dbg::PostException(exception_object);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200285 }
286
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800287 // We only care about how many backward branches were executed in the Jit.
288 void BackwardBranch(Thread* /*thread*/, mirror::ArtMethod* method, int32_t dex_pc_offset)
289 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
290 LOG(ERROR) << "Unexpected backward branch event in debugger " << PrettyMethod(method)
291 << " " << dex_pc_offset;
292 }
293
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200294 private:
295 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800296} gDebugInstrumentationListener;
297
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700298// JDWP is allowed unless the Zygote forbids it.
299static bool gJdwpAllowed = true;
300
Elliott Hughesc0f09332012-03-26 13:27:06 -0700301// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700302static bool gJdwpConfigured = false;
303
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100304// JDWP options for debugging. Only valid if IsJdwpConfigured() is true.
305static JDWP::JdwpOptions gJdwpOptions;
306
Elliott Hughes3bb81562011-10-21 18:52:59 -0700307// Runtime JDWP state.
Ian Rogersc0542af2014-09-03 16:16:56 -0700308static JDWP::JdwpState* gJdwpState = nullptr;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700309static bool gDebuggerConnected; // debugger or DDMS is connected.
Elliott Hughes86964332012-02-15 19:37:42 -0800310static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
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 Hertz6995c602014-09-09 12:10:13 +0200322ObjectRegistry* Dbg::gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700323
Elliott Hughes545a0642011-11-08 19:10:03 -0800324// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800325AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
326size_t Dbg::alloc_record_max_ = 0;
327size_t Dbg::alloc_record_head_ = 0;
328size_t Dbg::alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -0700329Dbg::TypeCache Dbg::type_cache_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800330
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100331// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100332std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
333size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100334
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200335// Instrumentation event reference counters.
336size_t Dbg::dex_pc_change_event_ref_count_ = 0;
337size_t Dbg::method_enter_event_ref_count_ = 0;
338size_t Dbg::method_exit_event_ref_count_ = 0;
339size_t Dbg::field_read_event_ref_count_ = 0;
340size_t Dbg::field_write_event_ref_count_ = 0;
341size_t Dbg::exception_catch_event_ref_count_ = 0;
342uint32_t Dbg::instrumentation_events_ = 0;
343
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100344// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800345static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800346
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800347void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) {
Sebastien Hertz1558b572015-02-25 15:05:59 +0100348 receiver.VisitRootIfNonNull(callback, arg, root_info); // null for static method call.
349 klass.VisitRoot(callback, arg, root_info);
350 method.VisitRoot(callback, arg, root_info);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200351}
352
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800353void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100354 if (method_ != nullptr) {
355 callback(reinterpret_cast<mirror::Object**>(&method_), arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700356 }
357}
358
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100359void SingleStepControl::AddDexPc(uint32_t dex_pc) {
360 dex_pcs_.insert(dex_pc);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200361}
362
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100363bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
364 return dex_pcs_.find(dex_pc) == dex_pcs_.end();
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200365}
366
Brian Carlstromea46f952013-07-30 01:26:50 -0700367static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800368 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700369 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzed2be172014-08-19 15:33:43 +0200370 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100371 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700372 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
Elliott Hughes86964332012-02-15 19:37:42 -0800373 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
374 return true;
375 }
376 }
377 return false;
378}
379
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100380static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
381 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800382 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
383 // A thread may be suspended for GC; in this code, we really want to know whether
384 // there's a debugger suspension active.
385 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
386}
387
Ian Rogersc0542af2014-09-03 16:16:56 -0700388static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700389 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200390 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700391 if (o == nullptr) {
392 *error = JDWP::ERR_INVALID_OBJECT;
393 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800394 }
395 if (!o->IsArrayInstance()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700396 *error = JDWP::ERR_INVALID_ARRAY;
397 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800398 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700399 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800400 return o->AsArray();
401}
402
Ian Rogersc0542af2014-09-03 16:16:56 -0700403static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700404 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200405 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700406 if (o == nullptr) {
407 *error = JDWP::ERR_INVALID_OBJECT;
408 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800409 }
410 if (!o->IsClass()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700411 *error = JDWP::ERR_INVALID_CLASS;
412 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800413 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700414 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800415 return o->AsClass();
416}
417
Ian Rogersc0542af2014-09-03 16:16:56 -0700418static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
419 JDWP::JdwpError* error)
jeffhaoa77f0f62012-12-05 17:19:31 -0800420 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700421 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
422 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200423 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700424 if (thread_peer == nullptr) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800425 // This isn't even an object.
Ian Rogersc0542af2014-09-03 16:16:56 -0700426 *error = JDWP::ERR_INVALID_OBJECT;
427 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800428 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800429
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800430 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800431 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
432 // This isn't a thread.
Ian Rogersc0542af2014-09-03 16:16:56 -0700433 *error = JDWP::ERR_INVALID_THREAD;
434 return nullptr;
Elliott Hughes221229c2013-01-08 18:17:50 -0800435 }
436
Ian Rogersc0542af2014-09-03 16:16:56 -0700437 Thread* thread = Thread::FromManagedThread(soa, thread_peer);
438 // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a
439 // zombie.
440 *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE;
441 return thread;
Elliott Hughes436e3722012-02-17 20:01:47 -0800442}
443
Elliott Hughes24437992011-11-30 14:49:33 -0800444static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
445 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
446 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
447 return static_cast<JDWP::JdwpTag>(descriptor[0]);
448}
449
Ian Rogers1ff3c982014-08-12 02:30:58 -0700450static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
451 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
452 std::string temp;
453 const char* descriptor = klass->GetDescriptor(&temp);
454 return BasicTagFromDescriptor(descriptor);
455}
456
Ian Rogers98379392014-02-24 16:53:16 -0800457static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700458 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700459 CHECK(c != nullptr);
Elliott Hughes24437992011-11-30 14:49:33 -0800460 if (c->IsArrayClass()) {
461 return JDWP::JT_ARRAY;
462 }
Elliott Hughes24437992011-11-30 14:49:33 -0800463 if (c->IsStringClass()) {
464 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800465 }
Ian Rogers98379392014-02-24 16:53:16 -0800466 if (c->IsClassClass()) {
467 return JDWP::JT_CLASS_OBJECT;
468 }
469 {
470 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
471 if (thread_class->IsAssignableFrom(c)) {
472 return JDWP::JT_THREAD;
473 }
474 }
475 {
476 mirror::Class* thread_group_class =
477 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
478 if (thread_group_class->IsAssignableFrom(c)) {
479 return JDWP::JT_THREAD_GROUP;
480 }
481 }
482 {
483 mirror::Class* class_loader_class =
484 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
485 if (class_loader_class->IsAssignableFrom(c)) {
486 return JDWP::JT_CLASS_LOADER;
487 }
488 }
489 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800490}
491
492/*
493 * Objects declared to hold Object might actually hold a more specific
494 * type. The debugger may take a special interest in these (e.g. it
495 * wants to display the contents of Strings), so we want to return an
496 * appropriate tag.
497 *
498 * Null objects are tagged JT_OBJECT.
499 */
Sebastien Hertz6995c602014-09-09 12:10:13 +0200500JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700501 return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800502}
503
504static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
505 switch (tag) {
506 case JDWP::JT_BOOLEAN:
507 case JDWP::JT_BYTE:
508 case JDWP::JT_CHAR:
509 case JDWP::JT_FLOAT:
510 case JDWP::JT_DOUBLE:
511 case JDWP::JT_INT:
512 case JDWP::JT_LONG:
513 case JDWP::JT_SHORT:
514 case JDWP::JT_VOID:
515 return true;
516 default:
517 return false;
518 }
519}
520
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100521void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700522 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700523 // No JDWP for you!
524 return;
525 }
526
Ian Rogers719d1a32014-03-06 12:13:39 -0800527 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700528 gRegistry = new ObjectRegistry;
529
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700530 // Init JDWP if the debugger is enabled. This may connect out to a
531 // debugger, passively listen for a debugger, or block waiting for a
532 // debugger.
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100533 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
Ian Rogersc0542af2014-09-03 16:16:56 -0700534 if (gJdwpState == nullptr) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800535 // We probably failed because some other process has the port already, which means that
536 // if we don't abort the user is likely to think they're talking to us when they're actually
537 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800538 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700539 }
540
541 // If a debugger has already attached, send the "welcome" message.
542 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700543 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700544 ScopedObjectAccess soa(Thread::Current());
Sebastien Hertz7d955652014-10-22 10:57:10 +0200545 gJdwpState->PostVMStart();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700546 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700547}
548
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700549void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200550 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
551 // destruction of gJdwpState).
552 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
553 gJdwpState->PostVMDeath();
554 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100555 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
556 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700557 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800558 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700559 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800560 gRegistry = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700561}
562
Elliott Hughes767a1472011-10-26 18:49:02 -0700563void Dbg::GcDidFinish() {
564 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700565 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700566 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700567 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700568 }
569 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700570 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700571 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700572 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700573 }
574 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700575 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700576 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700577 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700578 }
579}
580
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700581void Dbg::SetJdwpAllowed(bool allowed) {
582 gJdwpAllowed = allowed;
583}
584
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700585DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700586 return Thread::Current()->GetInvokeReq();
587}
588
589Thread* Dbg::GetDebugThread() {
Ian Rogersc0542af2014-09-03 16:16:56 -0700590 return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700591}
592
593void Dbg::ClearWaitForEventThread() {
Sebastien Hertz2bf93f42015-01-09 18:44:05 +0100594 gJdwpState->ReleaseJdwpTokenForEvent();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700595}
596
597void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700598 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800599 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700600 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800601 gDisposed = false;
602}
603
604void Dbg::Disposed() {
605 gDisposed = true;
606}
607
608bool Dbg::IsDisposed() {
609 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700610}
611
Sebastien Hertzf3928792014-11-17 19:00:37 +0100612bool Dbg::RequiresDeoptimization() {
613 // We don't need deoptimization if everything runs with interpreter after
614 // enabling -Xint mode.
615 return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly();
616}
617
Elliott Hughesa2155262011-11-16 16:26:58 -0800618void Dbg::GoActive() {
619 // Enable all debugging features, including scans for breakpoints.
620 // This is a no-op if we're already active.
621 // Only called from the JDWP handler thread.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200622 if (IsDebuggerActive()) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800623 return;
624 }
625
Elliott Hughesc0f09332012-03-26 13:27:06 -0700626 {
627 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Sebastien Hertzed2be172014-08-19 15:33:43 +0200628 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700629 CHECK_EQ(gBreakpoints.size(), 0U);
630 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800631
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100632 {
Brian Carlstrom306db812014-09-05 13:01:41 -0700633 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100634 CHECK_EQ(deoptimization_requests_.size(), 0U);
635 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200636 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
637 CHECK_EQ(method_enter_event_ref_count_, 0U);
638 CHECK_EQ(method_exit_event_ref_count_, 0U);
639 CHECK_EQ(field_read_event_ref_count_, 0U);
640 CHECK_EQ(field_write_event_ref_count_, 0U);
641 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100642 }
643
Ian Rogers62d6c772013-02-27 08:32:07 -0800644 Runtime* runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700645 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800646 Thread* self = Thread::Current();
647 ThreadState old_state = self->SetStateUnsafe(kRunnable);
648 CHECK_NE(old_state, kRunnable);
Sebastien Hertzf3928792014-11-17 19:00:37 +0100649 if (RequiresDeoptimization()) {
650 runtime->GetInstrumentation()->EnableDeoptimization();
651 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200652 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800653 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800654 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
655 runtime->GetThreadList()->ResumeAll();
656
657 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700658}
659
660void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700661 CHECK(gDebuggerConnected);
662
Elliott Hughesc0f09332012-03-26 13:27:06 -0700663 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700664
Ian Rogers62d6c772013-02-27 08:32:07 -0800665 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
666 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
667 // and clear the object registry.
668 Runtime* runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700669 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800670 Thread* self = Thread::Current();
671 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100672
673 // Debugger may not be active at this point.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200674 if (IsDebuggerActive()) {
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100675 {
676 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
677 // This prevents us from having any pending deoptimization request when the debugger attaches
678 // to us again while no event has been requested yet.
Brian Carlstrom306db812014-09-05 13:01:41 -0700679 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100680 deoptimization_requests_.clear();
681 full_deoptimization_event_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100682 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200683 if (instrumentation_events_ != 0) {
684 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
685 instrumentation_events_);
686 instrumentation_events_ = 0;
687 }
Sebastien Hertzf3928792014-11-17 19:00:37 +0100688 if (RequiresDeoptimization()) {
689 runtime->GetInstrumentation()->DisableDeoptimization();
690 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100691 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100692 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800693 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
694 runtime->GetThreadList()->ResumeAll();
Sebastien Hertz55f65342015-01-13 22:48:34 +0100695
696 {
697 ScopedObjectAccess soa(self);
698 gRegistry->Clear();
699 }
700
701 gDebuggerConnected = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700702}
703
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100704void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) {
705 CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown);
706 gJdwpOptions = jdwp_options;
707 gJdwpConfigured = true;
708}
709
Elliott Hughesc0f09332012-03-26 13:27:06 -0700710bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700711 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700712}
713
714int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800715 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700716}
717
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700718void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700719 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700720}
721
Elliott Hughes88d63092013-01-09 09:55:54 -0800722std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700723 JDWP::JdwpError error;
724 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error);
725 if (o == nullptr) {
726 if (error == JDWP::ERR_NONE) {
727 return "NULL";
728 } else {
729 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
730 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800731 }
732 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700733 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800734 }
Sebastien Hertz6995c602014-09-09 12:10:13 +0200735 return GetClassName(o->AsClass());
736}
737
738std::string Dbg::GetClassName(mirror::Class* klass) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200739 if (klass == nullptr) {
740 return "NULL";
741 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700742 std::string temp;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200743 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700744}
745
Ian Rogersc0542af2014-09-03 16:16:56 -0700746JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800747 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700748 mirror::Class* c = DecodeClass(id, &status);
749 if (c == nullptr) {
750 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800751 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800752 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700753 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800754 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800755}
756
Ian Rogersc0542af2014-09-03 16:16:56 -0700757JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800758 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700759 mirror::Class* c = DecodeClass(id, &status);
760 if (c == nullptr) {
761 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800762 return status;
763 }
764 if (c->IsInterface()) {
765 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700766 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800767 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700768 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800769 }
770 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700771}
772
Elliott Hughes436e3722012-02-17 20:01:47 -0800773JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700774 JDWP::JdwpError error;
775 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
776 if (o == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800777 return JDWP::ERR_INVALID_OBJECT;
778 }
779 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
780 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700781}
782
Elliott Hughes436e3722012-02-17 20:01:47 -0800783JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700784 JDWP::JdwpError error;
785 mirror::Class* c = DecodeClass(id, &error);
786 if (c == nullptr) {
787 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800788 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800789
790 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
791
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700792 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
793 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800794 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700795 if ((access_flags & kAccInterface) == 0) {
796 access_flags |= kAccSuper;
797 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800798
799 expandBufAdd4BE(pReply, access_flags);
800
801 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700802}
803
Ian Rogersc0542af2014-09-03 16:16:56 -0700804JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
805 JDWP::JdwpError error;
806 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
807 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800808 return JDWP::ERR_INVALID_OBJECT;
809 }
810
811 // Ensure all threads are suspended while we read objects' lock words.
812 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100813 CHECK_EQ(self->GetState(), kRunnable);
814 self->TransitionFromRunnableToSuspended(kSuspended);
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700815 Runtime::Current()->GetThreadList()->SuspendAll(__FUNCTION__);
Elliott Hughesf327e072013-01-09 16:01:26 -0800816
817 MonitorInfo monitor_info(o);
818
Sebastien Hertz54263242014-03-19 18:16:50 +0100819 Runtime::Current()->GetThreadList()->ResumeAll();
820 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800821
Ian Rogersc0542af2014-09-03 16:16:56 -0700822 if (monitor_info.owner_ != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700823 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800824 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700825 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800826 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700827 expandBufAdd4BE(reply, monitor_info.entry_count_);
828 expandBufAdd4BE(reply, monitor_info.waiters_.size());
829 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
830 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800831 }
832 return JDWP::ERR_NONE;
833}
834
Elliott Hughes734b8c62013-01-11 15:32:45 -0800835JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700836 std::vector<JDWP::ObjectId>* monitors,
837 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800838 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700839 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700840 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700841 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800842 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700843 : StackVisitor(thread, context), current_stack_depth(0),
844 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800845
846 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
847 // annotalysis.
848 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
849 if (!GetMethod()->IsRuntimeMethod()) {
850 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800851 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800852 }
853 return true;
854 }
855
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700856 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
857 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800858 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700859 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700860 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800861 }
862
Elliott Hughes734b8c62013-01-11 15:32:45 -0800863 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700864 std::vector<JDWP::ObjectId>* const monitors;
865 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800866 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800867
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700868 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700869 Thread* thread;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700870 {
871 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700872 JDWP::JdwpError error;
873 thread = DecodeThread(soa, thread_id, &error);
874 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700875 return error;
876 }
877 if (!IsSuspendedForDebugger(soa, thread)) {
878 return JDWP::ERR_THREAD_NOT_SUSPENDED;
879 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700880 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700881 std::unique_ptr<Context> context(Context::Create());
Ian Rogersc0542af2014-09-03 16:16:56 -0700882 OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700883 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800884 return JDWP::ERR_NONE;
885}
886
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100887JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700888 JDWP::ObjectId* contended_monitor) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700889 mirror::Object* contended_monitor_obj;
Elliott Hughesf9501702013-01-11 11:22:27 -0800890 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -0700891 *contended_monitor = 0;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700892 {
893 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700894 JDWP::JdwpError error;
895 Thread* thread = DecodeThread(soa, thread_id, &error);
896 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700897 return error;
898 }
899 if (!IsSuspendedForDebugger(soa, thread)) {
900 return JDWP::ERR_THREAD_NOT_SUSPENDED;
901 }
902 contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Elliott Hughesf9501702013-01-11 11:22:27 -0800903 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700904 // Add() requires the thread_list_lock_ not held to avoid the lock
905 // level violation.
Ian Rogersc0542af2014-09-03 16:16:56 -0700906 *contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -0800907 return JDWP::ERR_NONE;
908}
909
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800910JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -0700911 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800912 gc::Heap* heap = Runtime::Current()->GetHeap();
913 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800914 std::vector<mirror::Class*> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700915 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800916 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700917 JDWP::JdwpError error;
918 mirror::Class* c = DecodeClass(class_ids[i], &error);
919 if (c == nullptr) {
920 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800921 }
922 classes.push_back(c);
Ian Rogersc0542af2014-09-03 16:16:56 -0700923 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800924 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700925 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800926 return JDWP::ERR_NONE;
927}
928
Ian Rogersc0542af2014-09-03 16:16:56 -0700929JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
930 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800931 gc::Heap* heap = Runtime::Current()->GetHeap();
932 // We only want reachable instances, so do a GC.
933 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700934 JDWP::JdwpError error;
935 mirror::Class* c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800936 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700937 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800938 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800939 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800940 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
941 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700942 instances->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes3b78c942013-01-15 17:35:41 -0800943 }
944 return JDWP::ERR_NONE;
945}
946
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800947JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700948 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800949 gc::Heap* heap = Runtime::Current()->GetHeap();
950 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700951 JDWP::JdwpError error;
952 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
953 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800954 return JDWP::ERR_INVALID_OBJECT;
955 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800956 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800957 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800958 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700959 referring_objects->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800960 }
961 return JDWP::ERR_NONE;
962}
963
Ian Rogersc0542af2014-09-03 16:16:56 -0700964JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
965 JDWP::JdwpError error;
966 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
967 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100968 return JDWP::ERR_INVALID_OBJECT;
969 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800970 gRegistry->DisableCollection(object_id);
971 return JDWP::ERR_NONE;
972}
973
Ian Rogersc0542af2014-09-03 16:16:56 -0700974JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
975 JDWP::JdwpError error;
976 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +0100977 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
978 // also ignores these cases and never return an error. However it's not obvious why this command
979 // should behave differently from DisableCollection and IsCollected commands. So let's be more
980 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -0700981 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100982 return JDWP::ERR_INVALID_OBJECT;
983 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800984 gRegistry->EnableCollection(object_id);
985 return JDWP::ERR_NONE;
986}
987
Ian Rogersc0542af2014-09-03 16:16:56 -0700988JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
989 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100990 if (object_id == 0) {
991 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +0100992 return JDWP::ERR_INVALID_OBJECT;
993 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100994 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
995 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -0700996 JDWP::JdwpError error;
997 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
998 if (o != nullptr) {
999 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001000 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001001 return JDWP::ERR_NONE;
1002}
1003
Ian Rogersc0542af2014-09-03 16:16:56 -07001004void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001005 gRegistry->DisposeObject(object_id, reference_count);
1006}
1007
Sebastien Hertz6995c602014-09-09 12:10:13 +02001008JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001009 DCHECK(klass != nullptr);
1010 if (klass->IsArrayClass()) {
1011 return JDWP::TT_ARRAY;
1012 } else if (klass->IsInterface()) {
1013 return JDWP::TT_INTERFACE;
1014 } else {
1015 return JDWP::TT_CLASS;
1016 }
1017}
1018
Elliott Hughes88d63092013-01-09 09:55:54 -08001019JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001020 JDWP::JdwpError error;
1021 mirror::Class* c = DecodeClass(class_id, &error);
1022 if (c == nullptr) {
1023 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001024 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001025
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001026 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1027 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001028 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001029 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001030}
1031
Ian Rogersc0542af2014-09-03 16:16:56 -07001032void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001033 // Get the complete list of reference classes (i.e. all classes except
1034 // the primitive types).
1035 // Returns a newly-allocated buffer full of RefTypeId values.
1036 struct ClassListCreator {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001037 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes_in) : classes(classes_in) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001038 }
1039
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001040 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001041 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1042 }
1043
Elliott Hughes64f574f2013-02-20 14:57:12 -08001044 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1045 // annotalysis.
1046 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001047 if (!c->IsPrimitive()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001048 classes->push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001049 }
1050 return true;
1051 }
1052
Ian Rogersc0542af2014-09-03 16:16:56 -07001053 std::vector<JDWP::RefTypeId>* const classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001054 };
1055
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001056 ClassListCreator clc(classes);
Sebastien Hertz4537c412014-08-28 14:41:50 +02001057 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(ClassListCreator::Visit,
1058 &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001059}
1060
Ian Rogers1ff3c982014-08-12 02:30:58 -07001061JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1062 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001063 JDWP::JdwpError error;
1064 mirror::Class* c = DecodeClass(class_id, &error);
1065 if (c == nullptr) {
1066 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001067 }
1068
Elliott Hughesa2155262011-11-16 16:26:58 -08001069 if (c->IsArrayClass()) {
1070 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1071 *pTypeTag = JDWP::TT_ARRAY;
1072 } else {
1073 if (c->IsErroneous()) {
1074 *pStatus = JDWP::CS_ERROR;
1075 } else {
1076 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1077 }
1078 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1079 }
1080
Ian Rogersc0542af2014-09-03 16:16:56 -07001081 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001082 std::string temp;
1083 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001084 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001085 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001086}
1087
Ian Rogersc0542af2014-09-03 16:16:56 -07001088void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001089 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001090 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001091 ids->clear();
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001092 for (size_t i = 0; i < classes.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001093 ids->push_back(gRegistry->Add(classes[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001094 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001095}
1096
Ian Rogersc0542af2014-09-03 16:16:56 -07001097JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1098 JDWP::JdwpError error;
1099 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1100 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001101 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001102 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001103
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001104 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001105 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001106
1107 expandBufAdd1(pReply, type_tag);
1108 expandBufAddRefTypeId(pReply, type_id);
1109
1110 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001111}
1112
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001113JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001114 JDWP::JdwpError error;
1115 mirror::Class* c = DecodeClass(class_id, &error);
1116 if (c == nullptr) {
1117 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001118 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001119 std::string temp;
1120 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001121 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001122}
1123
Ian Rogersc0542af2014-09-03 16:16:56 -07001124JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1125 JDWP::JdwpError error;
1126 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001127 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001128 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001129 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001130 const char* source_file = c->GetSourceFile();
1131 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001132 return JDWP::ERR_ABSENT_INFORMATION;
1133 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001134 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001135 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001136}
1137
Ian Rogersc0542af2014-09-03 16:16:56 -07001138JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001139 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001140 JDWP::JdwpError error;
1141 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1142 if (error != JDWP::ERR_NONE) {
1143 *tag = JDWP::JT_VOID;
1144 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001145 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001146 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001147 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001148}
1149
Elliott Hughesaed4be92011-12-02 16:16:23 -08001150size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001151 switch (tag) {
1152 case JDWP::JT_VOID:
1153 return 0;
1154 case JDWP::JT_BYTE:
1155 case JDWP::JT_BOOLEAN:
1156 return 1;
1157 case JDWP::JT_CHAR:
1158 case JDWP::JT_SHORT:
1159 return 2;
1160 case JDWP::JT_FLOAT:
1161 case JDWP::JT_INT:
1162 return 4;
1163 case JDWP::JT_ARRAY:
1164 case JDWP::JT_OBJECT:
1165 case JDWP::JT_STRING:
1166 case JDWP::JT_THREAD:
1167 case JDWP::JT_THREAD_GROUP:
1168 case JDWP::JT_CLASS_LOADER:
1169 case JDWP::JT_CLASS_OBJECT:
1170 return sizeof(JDWP::ObjectId);
1171 case JDWP::JT_DOUBLE:
1172 case JDWP::JT_LONG:
1173 return 8;
1174 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001175 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001176 return -1;
1177 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001178}
1179
Ian Rogersc0542af2014-09-03 16:16:56 -07001180JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1181 JDWP::JdwpError error;
1182 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1183 if (a == nullptr) {
1184 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001185 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001186 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001187 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001188}
1189
Elliott Hughes88d63092013-01-09 09:55:54 -08001190JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001191 JDWP::JdwpError error;
1192 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001193 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001194 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001195 }
Elliott Hughes24437992011-11-30 14:49:33 -08001196
1197 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1198 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001199 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001200 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001201 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1202 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001203 expandBufAdd4BE(pReply, count);
1204
Ian Rogers1ff3c982014-08-12 02:30:58 -07001205 if (IsPrimitiveTag(element_tag)) {
1206 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001207 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1208 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001209 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001210 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1211 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001212 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001213 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1214 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001215 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001216 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1217 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001218 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001219 memcpy(dst, &src[offset * width], count * width);
1220 }
1221 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001222 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001223 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001224 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001225 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001226 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001227 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001228 expandBufAdd1(pReply, specific_tag);
1229 expandBufAddObjectId(pReply, gRegistry->Add(element));
1230 }
1231 }
1232
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001233 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001234}
1235
Ian Rogersef7d42f2014-01-06 12:55:46 -08001236template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001237static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001238 NO_THREAD_SAFETY_ANALYSIS {
1239 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001240 DCHECK(a->GetClass()->IsPrimitiveArray());
1241
Ian Rogersef7d42f2014-01-06 12:55:46 -08001242 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001243 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001244 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001245 }
1246}
1247
Elliott Hughes88d63092013-01-09 09:55:54 -08001248JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001249 JDWP::Request* request) {
1250 JDWP::JdwpError error;
1251 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1252 if (dst == nullptr) {
1253 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001254 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001255
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001256 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001257 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001258 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001259 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001260 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001261
Ian Rogers1ff3c982014-08-12 02:30:58 -07001262 if (IsPrimitiveTag(element_tag)) {
1263 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001264 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001265 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001266 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001267 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001268 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001269 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001270 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001271 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001272 }
1273 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001274 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001275 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001276 JDWP::ObjectId id = request->ReadObjectId();
Ian Rogersc0542af2014-09-03 16:16:56 -07001277 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1278 if (error != JDWP::ERR_NONE) {
1279 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001280 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001281 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001282 }
1283 }
1284
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001285 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001286}
1287
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001288JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001289 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001290}
1291
Ian Rogersc0542af2014-09-03 16:16:56 -07001292JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object) {
1293 JDWP::JdwpError error;
1294 mirror::Class* c = DecodeClass(class_id, &error);
1295 if (c == nullptr) {
1296 *new_object = 0;
1297 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001298 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001299 *new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001300 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001301}
1302
Elliott Hughesbf13d362011-12-08 15:51:37 -08001303/*
1304 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1305 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001306JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogersc0542af2014-09-03 16:16:56 -07001307 JDWP::ObjectId* new_array) {
1308 JDWP::JdwpError error;
1309 mirror::Class* c = DecodeClass(array_class_id, &error);
1310 if (c == nullptr) {
1311 *new_array = 0;
1312 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001313 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001314 *new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -07001315 c->GetComponentSizeShift(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001316 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001317 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001318}
1319
Sebastien Hertz6995c602014-09-09 12:10:13 +02001320JDWP::FieldId Dbg::ToFieldId(const mirror::ArtField* f) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001321 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001322 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001323}
1324
Brian Carlstromea46f952013-07-30 01:26:50 -07001325static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001326 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001327 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001328 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001329}
1330
Brian Carlstromea46f952013-07-30 01:26:50 -07001331static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001332 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001333 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001334 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001335}
1336
Brian Carlstromea46f952013-07-30 01:26:50 -07001337static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001338 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001339 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001340 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001341}
1342
Sebastien Hertz6995c602014-09-09 12:10:13 +02001343bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1344 CHECK(event_thread != nullptr);
1345 JDWP::JdwpError error;
1346 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(expected_thread_id,
1347 &error);
1348 return expected_thread_peer == event_thread->GetPeer();
1349}
1350
1351bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1352 const JDWP::EventLocation& event_location) {
1353 if (expected_location.dex_pc != event_location.dex_pc) {
1354 return false;
1355 }
1356 mirror::ArtMethod* m = FromMethodId(expected_location.method_id);
1357 return m == event_location.method;
1358}
1359
1360bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001361 if (event_class == nullptr) {
1362 return false;
1363 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02001364 JDWP::JdwpError error;
1365 mirror::Class* expected_class = DecodeClass(class_id, &error);
1366 CHECK(expected_class != nullptr);
1367 return expected_class->IsAssignableFrom(event_class);
1368}
1369
1370bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
1371 mirror::ArtField* event_field) {
1372 mirror::ArtField* expected_field = FromFieldId(expected_field_id);
1373 if (expected_field != event_field) {
1374 return false;
1375 }
1376 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1377}
1378
1379bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1380 JDWP::JdwpError error;
1381 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error);
1382 return modifier_instance == event_instance;
1383}
1384
1385void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001386 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001387 if (m == nullptr) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001388 memset(location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001389 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001390 mirror::Class* c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001391 location->type_tag = GetTypeTag(c);
1392 location->class_id = gRegistry->AddRefType(c);
1393 location->method_id = ToMethodId(m);
1394 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001395 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001396}
1397
Ian Rogersc0542af2014-09-03 16:16:56 -07001398std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001399 mirror::ArtMethod* m = FromMethodId(method_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001400 if (m == nullptr) {
1401 return "NULL";
1402 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001403 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001404}
1405
Ian Rogersc0542af2014-09-03 16:16:56 -07001406std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001407 mirror::ArtField* f = FromFieldId(field_id);
1408 if (f == nullptr) {
1409 return "NULL";
1410 }
1411 return f->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001412}
1413
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001414/*
1415 * Augment the access flags for synthetic methods and fields by setting
1416 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1417 * flags not specified by the Java programming language.
1418 */
1419static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1420 accessFlags &= kAccJavaFlagsMask;
1421 if ((accessFlags & kAccSynthetic) != 0) {
1422 accessFlags |= 0xf0000000;
1423 }
1424 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001425}
1426
Elliott Hughesdbb40792011-11-18 17:05:22 -08001427/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001428 * Circularly shifts registers so that arguments come first. Debuggers
1429 * expect slots to begin with arguments, but dex code places them at
1430 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001431 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001432static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1433 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001434 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001435 if (code_item == nullptr) {
1436 // We should not get here for a method without code (native, proxy or abstract). Log it and
1437 // return the slot as is since all registers are arguments.
1438 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1439 return slot;
1440 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001441 uint16_t ins_size = code_item->ins_size_;
1442 uint16_t locals_size = code_item->registers_size_ - ins_size;
1443 if (slot >= locals_size) {
1444 return slot - locals_size;
1445 } else {
1446 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001447 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001448}
1449
Jeff Haob7cefc72013-11-14 14:51:09 -08001450/*
1451 * Circularly shifts registers so that arguments come last. Reverts
1452 * slots to dex style argument placement.
1453 */
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001454static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001455 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001456 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001457 if (code_item == nullptr) {
1458 // We should not get here for a method without code (native, proxy or abstract). Log it and
1459 // return the slot as is since all registers are arguments.
1460 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001461 uint16_t vreg_count = mirror::ArtMethod::NumArgRegisters(m->GetShorty());
1462 if (slot < vreg_count) {
1463 *error = JDWP::ERR_NONE;
1464 return slot;
1465 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001466 } else {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001467 if (slot < code_item->registers_size_) {
1468 uint16_t ins_size = code_item->ins_size_;
1469 uint16_t locals_size = code_item->registers_size_ - ins_size;
1470 *error = JDWP::ERR_NONE;
1471 return (slot < ins_size) ? slot + locals_size : slot - ins_size;
1472 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001473 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001474
1475 // Slot is invalid in the method.
1476 LOG(ERROR) << "Invalid local slot " << slot << " for method " << PrettyMethod(m);
1477 *error = JDWP::ERR_INVALID_SLOT;
1478 return DexFile::kDexNoIndex16;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001479}
1480
Elliott Hughes88d63092013-01-09 09:55:54 -08001481JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001482 JDWP::JdwpError error;
1483 mirror::Class* c = DecodeClass(class_id, &error);
1484 if (c == nullptr) {
1485 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001486 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001487
1488 size_t instance_field_count = c->NumInstanceFields();
1489 size_t static_field_count = c->NumStaticFields();
1490
1491 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1492
1493 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001494 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001495 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001496 expandBufAddUtf8String(pReply, f->GetName());
1497 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001498 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001499 static const char genericSignature[1] = "";
1500 expandBufAddUtf8String(pReply, genericSignature);
1501 }
1502 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1503 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001504 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001505}
1506
Elliott Hughes88d63092013-01-09 09:55:54 -08001507JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001508 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001509 JDWP::JdwpError error;
1510 mirror::Class* c = DecodeClass(class_id, &error);
1511 if (c == nullptr) {
1512 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001513 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001514
1515 size_t direct_method_count = c->NumDirectMethods();
1516 size_t virtual_method_count = c->NumVirtualMethods();
1517
1518 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1519
1520 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001521 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001522 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001523 expandBufAddUtf8String(pReply, m->GetName());
1524 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001525 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001526 static const char genericSignature[1] = "";
1527 expandBufAddUtf8String(pReply, genericSignature);
1528 }
1529 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1530 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001531 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001532}
1533
Elliott Hughes88d63092013-01-09 09:55:54 -08001534JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001535 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001536 Thread* self = Thread::Current();
1537 StackHandleScope<1> hs(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07001538 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error)));
Mathieu Chartierf8322842014-05-16 10:59:25 -07001539 if (c.Get() == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001540 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001541 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001542 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001543 expandBufAdd4BE(pReply, interface_count);
1544 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001545 expandBufAddRefTypeId(pReply,
1546 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001547 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001548 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001549}
1550
Ian Rogersc0542af2014-09-03 16:16:56 -07001551void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001552 struct DebugCallbackContext {
1553 int numItems;
1554 JDWP::ExpandBuf* pReply;
1555
Elliott Hughes2435a572012-02-17 16:07:41 -08001556 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001557 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1558 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001559 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001560 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001561 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001562 }
1563 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001564 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001565 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001566 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001567 if (code_item == nullptr) {
1568 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001569 start = -1;
1570 end = -1;
1571 } else {
1572 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001573 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001574 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001575 }
1576
1577 expandBufAdd8BE(pReply, start);
1578 expandBufAdd8BE(pReply, end);
1579
1580 // Add numLines later
1581 size_t numLinesOffset = expandBufGetLength(pReply);
1582 expandBufAdd4BE(pReply, 0);
1583
1584 DebugCallbackContext context;
1585 context.numItems = 0;
1586 context.pReply = pReply;
1587
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001588 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001589 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001590 DebugCallbackContext::Callback, nullptr, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001591 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001592
1593 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001594}
1595
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001596void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1597 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001598 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001599 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001600 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001601 size_t variable_count;
1602 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001603
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001604 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1605 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001606 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001607 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1608
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001609 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1610 pContext->variable_count, startAddress, endAddress - startAddress,
1611 name, descriptor, signature, slot,
1612 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001613
Jeff Haob7cefc72013-11-14 14:51:09 -08001614 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001615
Elliott Hughesdbb40792011-11-18 17:05:22 -08001616 expandBufAdd8BE(pContext->pReply, startAddress);
1617 expandBufAddUtf8String(pContext->pReply, name);
1618 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001619 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001620 expandBufAddUtf8String(pContext->pReply, signature);
1621 }
1622 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1623 expandBufAdd4BE(pContext->pReply, slot);
1624
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001625 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001626 }
1627 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001628 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001629
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001630 // arg_count considers doubles and longs to take 2 units.
1631 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001632 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001633 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001634
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001635 // We don't know the total number of variables yet, so leave a blank and update it later.
1636 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001637 expandBufAdd4BE(pReply, 0);
1638
1639 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001640 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001641 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001642 context.variable_count = 0;
1643 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001644
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001645 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001646 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001647 m->GetDexFile()->DecodeDebugInfo(
Ian Rogersc0542af2014-09-03 16:16:56 -07001648 code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001649 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001650 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001651
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001652 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001653}
1654
Jeff Hao579b0242013-11-18 13:16:49 -08001655void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1656 JDWP::ExpandBuf* pReply) {
1657 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001658 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001659 OutputJValue(tag, return_value, pReply);
1660}
1661
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001662void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1663 JDWP::ExpandBuf* pReply) {
1664 mirror::ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001665 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001666 OutputJValue(tag, field_value, pReply);
1667}
1668
Elliott Hughes9777ba22013-01-17 09:04:19 -08001669JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001670 std::vector<uint8_t>* bytecodes) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001671 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001672 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001673 return JDWP::ERR_INVALID_METHODID;
1674 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001675 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001676 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1677 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1678 const uint8_t* end = begin + byte_count;
1679 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001680 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001681 }
1682 return JDWP::ERR_NONE;
1683}
1684
Elliott Hughes88d63092013-01-09 09:55:54 -08001685JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001686 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001687}
1688
Elliott Hughes88d63092013-01-09 09:55:54 -08001689JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001690 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001691}
1692
Elliott Hughes88d63092013-01-09 09:55:54 -08001693static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1694 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001695 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001696 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001697 JDWP::JdwpError error;
1698 mirror::Class* c = DecodeClass(ref_type_id, &error);
1699 if (ref_type_id != 0 && c == nullptr) {
1700 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001701 }
1702
Sebastien Hertz6995c602014-09-09 12:10:13 +02001703 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001704 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001705 return JDWP::ERR_INVALID_OBJECT;
1706 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001707 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001708
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001709 mirror::Class* receiver_class = c;
Ian Rogersc0542af2014-09-03 16:16:56 -07001710 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001711 receiver_class = o->GetClass();
1712 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001713 // TODO: should we give up now if receiver_class is nullptr?
1714 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001715 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001716 return JDWP::ERR_INVALID_FIELDID;
1717 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001718
Elliott Hughes0cf74332012-02-23 23:14:00 -08001719 // The RI only enforces the static/non-static mismatch in one direction.
1720 // TODO: should we change the tests and check both?
1721 if (is_static) {
1722 if (!f->IsStatic()) {
1723 return JDWP::ERR_INVALID_FIELDID;
1724 }
1725 } else {
1726 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001727 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field "
1728 << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001729 }
1730 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001731 if (f->IsStatic()) {
1732 o = f->GetDeclaringClass();
1733 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001734
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001735 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001736 JValue field_value;
1737 if (tag == JDWP::JT_VOID) {
1738 LOG(FATAL) << "Unknown tag: " << tag;
1739 } else if (!IsPrimitiveTag(tag)) {
1740 field_value.SetL(f->GetObject(o));
1741 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1742 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001743 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001744 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001745 }
Jeff Hao579b0242013-11-18 13:16:49 -08001746 Dbg::OutputJValue(tag, &field_value, pReply);
1747
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001748 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001749}
1750
Elliott Hughes88d63092013-01-09 09:55:54 -08001751JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001752 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001753 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001754}
1755
Ian Rogersc0542af2014-09-03 16:16:56 -07001756JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1757 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001758 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001759}
1760
Elliott Hughes88d63092013-01-09 09:55:54 -08001761static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001762 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001763 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001764 JDWP::JdwpError error;
Sebastien Hertz6995c602014-09-09 12:10:13 +02001765 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001766 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001767 return JDWP::ERR_INVALID_OBJECT;
1768 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001769 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001770
1771 // The RI only enforces the static/non-static mismatch in one direction.
1772 // TODO: should we change the tests and check both?
1773 if (is_static) {
1774 if (!f->IsStatic()) {
1775 return JDWP::ERR_INVALID_FIELDID;
1776 }
1777 } else {
1778 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001779 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001780 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001781 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001782 if (f->IsStatic()) {
1783 o = f->GetDeclaringClass();
1784 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001785
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001786 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001787
1788 if (IsPrimitiveTag(tag)) {
1789 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001790 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001791 // Debugging can't use transactional mode (runtime only).
1792 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001793 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001794 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001795 // Debugging can't use transactional mode (runtime only).
1796 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001797 }
1798 } else {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001799 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001800 if (error != JDWP::ERR_NONE) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001801 return JDWP::ERR_INVALID_OBJECT;
1802 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001803 if (v != nullptr) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001804 mirror::Class* field_type;
1805 {
1806 StackHandleScope<3> hs(Thread::Current());
1807 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1808 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
1809 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07001810 field_type = h_f->GetType<true>();
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001811 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001812 if (!field_type->IsAssignableFrom(v->GetClass())) {
1813 return JDWP::ERR_INVALID_OBJECT;
1814 }
1815 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001816 // Debugging can't use transactional mode (runtime only).
1817 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001818 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001819
1820 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001821}
1822
Elliott Hughes88d63092013-01-09 09:55:54 -08001823JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001824 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001825 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001826}
1827
Elliott Hughes88d63092013-01-09 09:55:54 -08001828JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1829 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001830}
1831
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001832JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001833 JDWP::JdwpError error;
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001834 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error);
1835 if (error != JDWP::ERR_NONE) {
1836 return error;
1837 }
1838 if (obj == nullptr) {
1839 return JDWP::ERR_INVALID_OBJECT;
1840 }
1841 {
1842 ScopedObjectAccessUnchecked soa(Thread::Current());
1843 mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String);
1844 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
1845 // This isn't a string.
1846 return JDWP::ERR_INVALID_STRING;
1847 }
1848 }
1849 *str = obj->AsString()->ToModifiedUtf8();
1850 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001851}
1852
Jeff Hao579b0242013-11-18 13:16:49 -08001853void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1854 if (IsPrimitiveTag(tag)) {
1855 expandBufAdd1(pReply, tag);
1856 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1857 expandBufAdd1(pReply, return_value->GetI());
1858 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1859 expandBufAdd2BE(pReply, return_value->GetI());
1860 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1861 expandBufAdd4BE(pReply, return_value->GetI());
1862 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1863 expandBufAdd8BE(pReply, return_value->GetJ());
1864 } else {
1865 CHECK_EQ(tag, JDWP::JT_VOID);
1866 }
1867 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001868 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001869 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001870 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001871 expandBufAddObjectId(pReply, gRegistry->Add(value));
1872 }
1873}
1874
Ian Rogersc0542af2014-09-03 16:16:56 -07001875JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001876 ScopedObjectAccessUnchecked soa(Thread::Current());
1877 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001878 JDWP::JdwpError error;
1879 Thread* thread = DecodeThread(soa, thread_id, &error);
1880 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001881 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1882 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001883 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001884
1885 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07001886 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1887 CHECK(thread_object != nullptr) << error;
Brian Carlstromea46f952013-07-30 01:26:50 -07001888 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001889 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1890 mirror::String* s =
1891 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Ian Rogersc0542af2014-09-03 16:16:56 -07001892 if (s != nullptr) {
1893 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08001894 }
1895 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001896}
1897
Elliott Hughes221229c2013-01-08 18:17:50 -08001898JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02001899 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001900 JDWP::JdwpError error;
1901 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1902 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001903 return JDWP::ERR_INVALID_OBJECT;
1904 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001905 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001906 // Okay, so it's an object, but is it actually a thread?
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001907 {
1908 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001909 Thread* thread = DecodeThread(soa, thread_id, &error);
1910 UNUSED(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001911 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001912 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1913 // Zombie threads are in the null group.
1914 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001915 error = JDWP::ERR_NONE;
1916 } else if (error == JDWP::ERR_NONE) {
1917 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1918 CHECK(c != nullptr);
Sebastien Hertze49e1952014-10-13 11:27:13 +02001919 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001920 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001921 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001922 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001923 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1924 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001925 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001926 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001927}
1928
Sebastien Hertza06430c2014-09-15 19:21:30 +02001929static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
1930 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
1931 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001932 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,
1933 error);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001934 if (*error != JDWP::ERR_NONE) {
1935 return nullptr;
1936 }
1937 if (thread_group == nullptr) {
1938 *error = JDWP::ERR_INVALID_OBJECT;
1939 return nullptr;
1940 }
Ian Rogers98379392014-02-24 16:53:16 -08001941 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1942 CHECK(c != nullptr);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001943 if (!c->IsAssignableFrom(thread_group->GetClass())) {
1944 // This is not a java.lang.ThreadGroup.
1945 *error = JDWP::ERR_INVALID_THREAD_GROUP;
1946 return nullptr;
1947 }
1948 *error = JDWP::ERR_NONE;
1949 return thread_group;
1950}
1951
1952JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
1953 ScopedObjectAccessUnchecked soa(Thread::Current());
1954 JDWP::JdwpError error;
1955 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
1956 if (error != JDWP::ERR_NONE) {
1957 return error;
1958 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001959 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupName");
Sebastien Hertze49e1952014-10-13 11:27:13 +02001960 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_name);
Ian Rogersc0542af2014-09-03 16:16:56 -07001961 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001962 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Sebastien Hertza06430c2014-09-15 19:21:30 +02001963
1964 std::string thread_group_name(s->ToModifiedUtf8());
1965 expandBufAddUtf8String(pReply, thread_group_name);
1966 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001967}
1968
Sebastien Hertza06430c2014-09-15 19:21:30 +02001969JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08001970 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001971 JDWP::JdwpError error;
Sebastien Hertza06430c2014-09-15 19:21:30 +02001972 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
1973 if (error != JDWP::ERR_NONE) {
1974 return error;
1975 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001976 mirror::Object* parent;
1977 {
1978 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupParent");
Sebastien Hertze49e1952014-10-13 11:27:13 +02001979 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_parent);
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001980 CHECK(f != nullptr);
1981 parent = f->GetObject(thread_group);
1982 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02001983 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
1984 expandBufAddObjectId(pReply, parent_group_id);
1985 return JDWP::ERR_NONE;
1986}
1987
1988static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
1989 std::vector<JDWP::ObjectId>* child_thread_group_ids)
1990 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1991 CHECK(thread_group != nullptr);
1992
1993 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Sebastien Hertze49e1952014-10-13 11:27:13 +02001994 mirror::ArtField* groups_field = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_groups);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001995 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Sebastien Hertze49e1952014-10-13 11:27:13 +02001996 {
1997 // The "groups" field is declared as a java.util.List: check it really is
1998 // an instance of java.util.ArrayList.
1999 CHECK(groups_array_list != nullptr);
2000 mirror::Class* java_util_ArrayList_class =
2001 soa.Decode<mirror::Class*>(WellKnownClasses::java_util_ArrayList);
2002 CHECK(groups_array_list->InstanceOf(java_util_ArrayList_class));
2003 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002004
2005 // Get the array and size out of the ArrayList<ThreadGroup>...
Sebastien Hertze49e1952014-10-13 11:27:13 +02002006 mirror::ArtField* array_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_array);
2007 mirror::ArtField* size_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_size);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002008 mirror::ObjectArray<mirror::Object>* groups_array =
2009 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
2010 const int32_t size = size_field->GetInt(groups_array_list);
2011
2012 // Copy the first 'size' elements out of the array into the result.
Sebastien Hertz6995c602014-09-09 12:10:13 +02002013 ObjectRegistry* registry = Dbg::GetObjectRegistry();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002014 for (int32_t i = 0; i < size; ++i) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002015 child_thread_group_ids->push_back(registry->Add(groups_array->Get(i)));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002016 }
2017}
2018
2019JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2020 JDWP::ExpandBuf* pReply) {
2021 ScopedObjectAccessUnchecked soa(Thread::Current());
2022 JDWP::JdwpError error;
2023 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2024 if (error != JDWP::ERR_NONE) {
2025 return error;
2026 }
2027
2028 // Add child threads.
2029 {
2030 std::vector<JDWP::ObjectId> child_thread_ids;
2031 GetThreads(thread_group, &child_thread_ids);
2032 expandBufAdd4BE(pReply, child_thread_ids.size());
2033 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2034 expandBufAddObjectId(pReply, child_thread_id);
2035 }
2036 }
2037
2038 // Add child thread groups.
2039 {
2040 std::vector<JDWP::ObjectId> child_thread_groups_ids;
2041 GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids);
2042 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2043 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2044 expandBufAddObjectId(pReply, child_thread_group_id);
2045 }
2046 }
2047
2048 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002049}
2050
2051JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002052 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07002053 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002054 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002055 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002056}
2057
Jeff Hao920af3e2013-08-28 15:46:38 -07002058JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2059 switch (state) {
2060 case kBlocked:
2061 return JDWP::TS_MONITOR;
2062 case kNative:
2063 case kRunnable:
2064 case kSuspended:
2065 return JDWP::TS_RUNNING;
2066 case kSleeping:
2067 return JDWP::TS_SLEEPING;
2068 case kStarting:
2069 case kTerminated:
2070 return JDWP::TS_ZOMBIE;
2071 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002072 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002073 case kWaitingForDebuggerSend:
2074 case kWaitingForDebuggerSuspension:
2075 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002076 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002077 case kWaitingForGcToComplete:
Jeff Hao920af3e2013-08-28 15:46:38 -07002078 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002079 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002080 case kWaitingForSignalCatcherOutput:
Hiroshi Yamauchi0c8c3032015-01-16 16:54:35 -08002081 case kWaitingForVisitObjects:
Jeff Hao920af3e2013-08-28 15:46:38 -07002082 case kWaitingInMainDebuggerLoop:
2083 case kWaitingInMainSignalCatcherLoop:
2084 case kWaitingPerformingGc:
2085 case kWaiting:
2086 return JDWP::TS_WAIT;
2087 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2088 }
2089 LOG(FATAL) << "Unknown thread state: " << state;
2090 return JDWP::TS_ZOMBIE;
2091}
2092
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002093JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2094 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002095 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002096
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002097 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2098
Ian Rogers50b35e22012-10-04 10:09:15 -07002099 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002100 JDWP::JdwpError error;
2101 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002102 if (error != JDWP::ERR_NONE) {
2103 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2104 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002105 return JDWP::ERR_NONE;
2106 }
2107 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002108 }
2109
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002110 if (IsSuspendedForDebugger(soa, thread)) {
2111 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002112 }
2113
Jeff Hao920af3e2013-08-28 15:46:38 -07002114 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002115 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002116}
2117
Elliott Hughes221229c2013-01-08 18:17:50 -08002118JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002119 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07002120 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002121 JDWP::JdwpError error;
2122 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002123 if (error != JDWP::ERR_NONE) {
2124 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002125 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002126 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002127 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002128 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002129}
2130
Elliott Hughesf9501702013-01-11 11:22:27 -08002131JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2132 ScopedObjectAccess soa(Thread::Current());
2133 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002134 JDWP::JdwpError error;
2135 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002136 if (error != JDWP::ERR_NONE) {
2137 return error;
2138 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002139 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002140 return JDWP::ERR_NONE;
2141}
2142
Sebastien Hertz070f7322014-09-09 12:08:49 +02002143static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa,
2144 mirror::Object* desired_thread_group, mirror::Object* peer)
2145 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2146 // Do we want threads from all thread groups?
2147 if (desired_thread_group == nullptr) {
2148 return true;
2149 }
2150 mirror::ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
2151 DCHECK(thread_group_field != nullptr);
2152 mirror::Object* group = thread_group_field->GetObject(peer);
2153 return (group == desired_thread_group);
2154}
2155
Sebastien Hertza06430c2014-09-15 19:21:30 +02002156void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002157 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz070f7322014-09-09 12:08:49 +02002158 std::list<Thread*> all_threads_list;
2159 {
2160 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2161 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2162 }
2163 for (Thread* t : all_threads_list) {
2164 if (t == Dbg::GetDebugThread()) {
2165 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2166 // query all threads, so it's easier if we just don't tell them about this thread.
2167 continue;
2168 }
2169 if (t->IsStillStarting()) {
2170 // This thread is being started (and has been registered in the thread list). However, it is
2171 // not completely started yet so we must ignore it.
2172 continue;
2173 }
2174 mirror::Object* peer = t->GetPeer();
2175 if (peer == nullptr) {
2176 // peer might be NULL if the thread is still starting up. We can't tell the debugger about
2177 // this thread yet.
2178 // TODO: if we identified threads to the debugger by their Thread*
2179 // rather than their peer's mirror::Object*, we could fix this.
2180 // Doing so might help us report ZOMBIE threads too.
2181 continue;
2182 }
2183 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
2184 thread_ids->push_back(gRegistry->Add(peer));
2185 }
2186 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002187}
Elliott Hughesa2155262011-11-16 16:26:58 -08002188
Ian Rogersc0542af2014-09-03 16:16:56 -07002189static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002190 struct CountStackDepthVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002191 explicit CountStackDepthVisitor(Thread* thread_in)
2192 : StackVisitor(thread_in, nullptr), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002193
Elliott Hughes64f574f2013-02-20 14:57:12 -08002194 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2195 // annotalysis.
2196 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002197 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002198 ++depth;
2199 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002200 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002201 }
2202 size_t depth;
2203 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002204
Ian Rogers7a22fa62013-01-23 12:16:16 -08002205 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002206 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002207 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002208}
2209
Ian Rogersc0542af2014-09-03 16:16:56 -07002210JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002211 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002212 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002213 JDWP::JdwpError error;
2214 *result = 0;
2215 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002216 if (error != JDWP::ERR_NONE) {
2217 return error;
2218 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002219 if (!IsSuspendedForDebugger(soa, thread)) {
2220 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2221 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002222 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002223 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002224}
2225
Ian Rogers306057f2012-11-26 12:45:53 -08002226JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2227 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002228 class GetFrameVisitor : public StackVisitor {
2229 public:
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002230 GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in,
2231 JDWP::ExpandBuf* buf_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002232 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07002233 : StackVisitor(thread, nullptr), depth_(0),
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002234 start_frame_(start_frame_in), frame_count_(frame_count_in), buf_(buf_in) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002235 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002236 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002237
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002238 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2239 // annotalysis.
2240 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002241 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002242 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002243 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002244 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002245 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002246 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002247 if (depth_ >= start_frame_) {
2248 JDWP::FrameId frame_id(GetFrameId());
2249 JDWP::JdwpLocation location;
Sebastien Hertz6995c602014-09-09 12:10:13 +02002250 SetJdwpLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002251 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002252 expandBufAdd8BE(buf_, frame_id);
2253 expandBufAddLocation(buf_, location);
2254 }
2255 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002256 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002257 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002258
2259 private:
2260 size_t depth_;
2261 const size_t start_frame_;
2262 const size_t frame_count_;
2263 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002264 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002265
2266 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002267 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
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());
2374 Thread* thread;
2375 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002376 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002377 JDWP::JdwpError error;
2378 thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002379 if (error != JDWP::ERR_NONE) {
2380 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002381 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002382 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002383 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2384 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002385 }
Ian Rogers700a4022014-05-19 16:49:03 -07002386 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002387 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002388 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002389 *result = gRegistry->Add(visitor.this_object);
2390 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002391}
2392
Sebastien Hertz8009f392014-09-01 17:07:11 +02002393// Walks the stack until we find the frame with the given FrameId.
2394class FindFrameVisitor FINAL : public StackVisitor {
2395 public:
2396 FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
2397 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2398 : StackVisitor(thread, context), frame_id_(frame_id), error_(JDWP::ERR_INVALID_FRAMEID) {}
Ian Rogersca190662012-06-26 15:45:57 -07002399
Sebastien Hertz8009f392014-09-01 17:07:11 +02002400 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2401 // annotalysis.
2402 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
2403 if (GetFrameId() != frame_id_) {
2404 return true; // Not our frame, carry on.
Ian Rogers0399dde2012-06-06 17:09:28 -07002405 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002406 mirror::ArtMethod* m = GetMethod();
2407 if (m->IsNative()) {
2408 // We can't read/write local value from/into native method.
2409 error_ = JDWP::ERR_OPAQUE_FRAME;
2410 } else {
2411 // We found our frame.
2412 error_ = JDWP::ERR_NONE;
2413 }
2414 return false;
2415 }
2416
2417 JDWP::JdwpError GetError() const {
2418 return error_;
2419 }
2420
2421 private:
2422 const JDWP::FrameId frame_id_;
2423 JDWP::JdwpError error_;
2424};
2425
2426JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2427 JDWP::ObjectId thread_id = request->ReadThreadId();
2428 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002429
2430 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002431 Thread* thread;
2432 {
2433 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2434 JDWP::JdwpError error;
2435 thread = DecodeThread(soa, thread_id, &error);
2436 if (error != JDWP::ERR_NONE) {
2437 return error;
2438 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002439 if (!IsSuspendedForDebugger(soa, thread)) {
2440 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2441 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002442 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002443 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002444 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002445 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002446 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002447 if (visitor.GetError() != JDWP::ERR_NONE) {
2448 return visitor.GetError();
2449 }
2450
2451 // Read the values from visitor's context.
2452 int32_t slot_count = request->ReadSigned32("slot count");
2453 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2454 for (int32_t i = 0; i < slot_count; ++i) {
2455 uint32_t slot = request->ReadUnsigned32("slot");
2456 JDWP::JdwpTag reqSigByte = request->ReadTag();
2457
2458 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
2459
2460 size_t width = Dbg::GetTagWidth(reqSigByte);
Sebastien Hertz7d955652014-10-22 10:57:10 +02002461 uint8_t* ptr = expandBufAddSpace(pReply, width + 1);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002462 JDWP::JdwpError error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width);
2463 if (error != JDWP::ERR_NONE) {
2464 return error;
2465 }
2466 }
2467 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002468}
2469
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002470constexpr JDWP::JdwpError kStackFrameLocalAccessError = JDWP::ERR_ABSENT_INFORMATION;
2471
2472static std::string GetStackContextAsString(const StackVisitor& visitor)
2473 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2474 return StringPrintf(" at DEX pc 0x%08x in method %s", visitor.GetDexPc(false),
2475 PrettyMethod(visitor.GetMethod()).c_str());
2476}
2477
2478static JDWP::JdwpError FailGetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2479 JDWP::JdwpTag tag)
2480 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2481 LOG(ERROR) << "Failed to read " << tag << " local from register v" << vreg
2482 << GetStackContextAsString(visitor);
2483 return kStackFrameLocalAccessError;
2484}
2485
Sebastien Hertz8009f392014-09-01 17:07:11 +02002486JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2487 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
2488 mirror::ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002489 JDWP::JdwpError error = JDWP::ERR_NONE;
2490 uint16_t vreg = DemangleSlot(slot, m, &error);
2491 if (error != JDWP::ERR_NONE) {
2492 return error;
2493 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002494 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002495 switch (tag) {
2496 case JDWP::JT_BOOLEAN: {
2497 CHECK_EQ(width, 1U);
2498 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002499 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2500 return FailGetLocalValue(visitor, vreg, tag);
Ian Rogers0399dde2012-06-06 17:09:28 -07002501 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002502 VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal;
2503 JDWP::Set1(buf + 1, intVal != 0);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002504 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002505 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002506 case JDWP::JT_BYTE: {
2507 CHECK_EQ(width, 1U);
2508 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002509 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2510 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002511 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002512 VLOG(jdwp) << "get byte local " << vreg << " = " << intVal;
2513 JDWP::Set1(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002514 break;
2515 }
2516 case JDWP::JT_SHORT:
2517 case JDWP::JT_CHAR: {
2518 CHECK_EQ(width, 2U);
2519 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002520 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2521 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002522 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002523 VLOG(jdwp) << "get short/char local " << vreg << " = " << intVal;
2524 JDWP::Set2BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002525 break;
2526 }
2527 case JDWP::JT_INT: {
2528 CHECK_EQ(width, 4U);
2529 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002530 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2531 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002532 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002533 VLOG(jdwp) << "get int local " << vreg << " = " << intVal;
2534 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002535 break;
2536 }
2537 case JDWP::JT_FLOAT: {
2538 CHECK_EQ(width, 4U);
2539 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002540 if (!visitor.GetVReg(m, vreg, kFloatVReg, &intVal)) {
2541 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002542 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002543 VLOG(jdwp) << "get float local " << vreg << " = " << intVal;
2544 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002545 break;
2546 }
2547 case JDWP::JT_ARRAY:
2548 case JDWP::JT_CLASS_LOADER:
2549 case JDWP::JT_CLASS_OBJECT:
2550 case JDWP::JT_OBJECT:
2551 case JDWP::JT_STRING:
2552 case JDWP::JT_THREAD:
2553 case JDWP::JT_THREAD_GROUP: {
2554 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2555 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002556 if (!visitor.GetVReg(m, vreg, kReferenceVReg, &intVal)) {
2557 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002558 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002559 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2560 VLOG(jdwp) << "get " << tag << " object local " << vreg << " = " << o;
2561 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2562 LOG(FATAL) << StringPrintf("Found invalid object %#" PRIxPTR " in register v%u",
2563 reinterpret_cast<uintptr_t>(o), vreg)
2564 << GetStackContextAsString(visitor);
2565 UNREACHABLE();
2566 }
2567 tag = TagFromObject(soa, o);
2568 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002569 break;
2570 }
2571 case JDWP::JT_DOUBLE: {
2572 CHECK_EQ(width, 8U);
2573 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002574 if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2575 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002576 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002577 VLOG(jdwp) << "get double local " << vreg << " = " << longVal;
2578 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002579 break;
2580 }
2581 case JDWP::JT_LONG: {
2582 CHECK_EQ(width, 8U);
2583 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002584 if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) {
2585 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002586 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002587 VLOG(jdwp) << "get long local " << vreg << " = " << longVal;
2588 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002589 break;
2590 }
2591 default:
2592 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002593 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002594 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002595
Sebastien Hertz8009f392014-09-01 17:07:11 +02002596 // Prepend tag, which may have been updated.
2597 JDWP::Set1(buf, tag);
2598 return JDWP::ERR_NONE;
2599}
2600
2601JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2602 JDWP::ObjectId thread_id = request->ReadThreadId();
2603 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002604
2605 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002606 Thread* thread;
2607 {
2608 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2609 JDWP::JdwpError error;
2610 thread = DecodeThread(soa, thread_id, &error);
2611 if (error != JDWP::ERR_NONE) {
2612 return error;
2613 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002614 if (!IsSuspendedForDebugger(soa, thread)) {
2615 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2616 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002617 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002618 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002619 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002620 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002621 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002622 if (visitor.GetError() != JDWP::ERR_NONE) {
2623 return visitor.GetError();
2624 }
2625
2626 // Writes the values into visitor's context.
2627 int32_t slot_count = request->ReadSigned32("slot count");
2628 for (int32_t i = 0; i < slot_count; ++i) {
2629 uint32_t slot = request->ReadUnsigned32("slot");
2630 JDWP::JdwpTag sigByte = request->ReadTag();
2631 size_t width = Dbg::GetTagWidth(sigByte);
2632 uint64_t value = request->ReadValue(width);
2633
2634 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
2635 JDWP::JdwpError error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width);
2636 if (error != JDWP::ERR_NONE) {
2637 return error;
2638 }
2639 }
2640 return JDWP::ERR_NONE;
2641}
2642
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002643template<typename T>
2644static JDWP::JdwpError FailSetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2645 JDWP::JdwpTag tag, T value)
2646 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2647 LOG(ERROR) << "Failed to write " << tag << " local " << value
2648 << " (0x" << std::hex << value << ") into register v" << vreg
2649 << GetStackContextAsString(visitor);
2650 return kStackFrameLocalAccessError;
2651}
2652
Sebastien Hertz8009f392014-09-01 17:07:11 +02002653JDWP::JdwpError Dbg::SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
2654 uint64_t value, size_t width) {
2655 mirror::ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002656 JDWP::JdwpError error = JDWP::ERR_NONE;
2657 uint16_t vreg = DemangleSlot(slot, m, &error);
2658 if (error != JDWP::ERR_NONE) {
2659 return error;
2660 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002661 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002662 switch (tag) {
2663 case JDWP::JT_BOOLEAN:
2664 case JDWP::JT_BYTE:
2665 CHECK_EQ(width, 1U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002666 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2667 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002668 }
2669 break;
2670 case JDWP::JT_SHORT:
2671 case JDWP::JT_CHAR:
2672 CHECK_EQ(width, 2U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002673 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
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_INT:
2678 CHECK_EQ(width, 4U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002679 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2680 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002681 }
2682 break;
2683 case JDWP::JT_FLOAT:
2684 CHECK_EQ(width, 4U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002685 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) {
2686 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002687 }
2688 break;
2689 case JDWP::JT_ARRAY:
2690 case JDWP::JT_CLASS_LOADER:
2691 case JDWP::JT_CLASS_OBJECT:
2692 case JDWP::JT_OBJECT:
2693 case JDWP::JT_STRING:
2694 case JDWP::JT_THREAD:
2695 case JDWP::JT_THREAD_GROUP: {
2696 CHECK_EQ(width, sizeof(JDWP::ObjectId));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002697 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value),
2698 &error);
2699 if (error != JDWP::ERR_NONE) {
2700 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2701 return JDWP::ERR_INVALID_OBJECT;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002702 }
2703 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2704 kReferenceVReg)) {
2705 return FailSetLocalValue(visitor, vreg, tag, reinterpret_cast<uintptr_t>(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002706 }
2707 break;
2708 }
2709 case JDWP::JT_DOUBLE: {
2710 CHECK_EQ(width, 8U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002711 if (!visitor.SetVRegPair(m, vreg, value, kDoubleLoVReg, kDoubleHiVReg)) {
2712 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002713 }
2714 break;
2715 }
2716 case JDWP::JT_LONG: {
2717 CHECK_EQ(width, 8U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002718 if (!visitor.SetVRegPair(m, vreg, value, kLongLoVReg, kLongHiVReg)) {
2719 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002720 }
2721 break;
2722 }
2723 default:
2724 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002725 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002726 }
2727 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002728}
2729
Sebastien Hertz6995c602014-09-09 12:10:13 +02002730static void SetEventLocation(JDWP::EventLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
2731 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2732 DCHECK(location != nullptr);
2733 if (m == nullptr) {
2734 memset(location, 0, sizeof(*location));
2735 } else {
2736 location->method = m;
2737 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002738 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002739}
2740
Ian Rogersef7d42f2014-01-06 12:55:46 -08002741void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002742 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002743 if (!IsDebuggerActive()) {
2744 return;
2745 }
2746 DCHECK(m != nullptr);
2747 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002748 JDWP::EventLocation location;
2749 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002750
Sebastien Hertz6995c602014-09-09 12:10:13 +02002751 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002752}
2753
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002754void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
2755 mirror::Object* this_object, mirror::ArtField* f) {
2756 if (!IsDebuggerActive()) {
2757 return;
2758 }
2759 DCHECK(m != nullptr);
2760 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002761 JDWP::EventLocation location;
2762 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002763
Sebastien Hertz6995c602014-09-09 12:10:13 +02002764 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002765}
2766
2767void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
2768 mirror::Object* this_object, mirror::ArtField* f,
2769 const JValue* field_value) {
2770 if (!IsDebuggerActive()) {
2771 return;
2772 }
2773 DCHECK(m != nullptr);
2774 DCHECK(f != nullptr);
2775 DCHECK(field_value != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002776 JDWP::EventLocation location;
2777 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002778
Sebastien Hertz6995c602014-09-09 12:10:13 +02002779 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002780}
2781
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002782/**
2783 * Finds the location where this exception will be caught. We search until we reach the top
2784 * frame, in which case this exception is considered uncaught.
2785 */
2786class CatchLocationFinder : public StackVisitor {
2787 public:
2788 CatchLocationFinder(Thread* self, const Handle<mirror::Throwable>& exception, Context* context)
2789 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2790 : StackVisitor(self, context),
2791 self_(self),
2792 exception_(exception),
2793 handle_scope_(self),
2794 this_at_throw_(handle_scope_.NewHandle<mirror::Object>(nullptr)),
2795 catch_method_(handle_scope_.NewHandle<mirror::ArtMethod>(nullptr)),
2796 throw_method_(handle_scope_.NewHandle<mirror::ArtMethod>(nullptr)),
2797 catch_dex_pc_(DexFile::kDexNoIndex),
2798 throw_dex_pc_(DexFile::kDexNoIndex) {
2799 }
2800
2801 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2802 mirror::ArtMethod* method = GetMethod();
2803 DCHECK(method != nullptr);
2804 if (method->IsRuntimeMethod()) {
2805 // Ignore callee save method.
2806 DCHECK(method->IsCalleeSaveMethod());
2807 return true;
2808 }
2809
2810 uint32_t dex_pc = GetDexPc();
2811 if (throw_method_.Get() == nullptr) {
2812 // First Java method found. It is either the method that threw the exception,
2813 // or the Java native method that is reporting an exception thrown by
2814 // native code.
2815 this_at_throw_.Assign(GetThisObject());
2816 throw_method_.Assign(method);
2817 throw_dex_pc_ = dex_pc;
2818 }
2819
2820 if (dex_pc != DexFile::kDexNoIndex) {
2821 StackHandleScope<2> hs(self_);
2822 uint32_t found_dex_pc;
2823 Handle<mirror::Class> exception_class(hs.NewHandle(exception_->GetClass()));
2824 Handle<mirror::ArtMethod> h_method(hs.NewHandle(method));
2825 bool unused_clear_exception;
2826 found_dex_pc = mirror::ArtMethod::FindCatchBlock(
2827 h_method, exception_class, dex_pc, &unused_clear_exception);
2828 if (found_dex_pc != DexFile::kDexNoIndex) {
2829 catch_method_.Assign(method);
2830 catch_dex_pc_ = found_dex_pc;
2831 return false; // End stack walk.
2832 }
2833 }
2834 return true; // Continue stack walk.
2835 }
2836
2837 mirror::ArtMethod* GetCatchMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2838 return catch_method_.Get();
2839 }
2840
2841 mirror::ArtMethod* GetThrowMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2842 return throw_method_.Get();
2843 }
2844
2845 mirror::Object* GetThisAtThrow() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2846 return this_at_throw_.Get();
2847 }
2848
2849 uint32_t GetCatchDexPc() const {
2850 return catch_dex_pc_;
2851 }
2852
2853 uint32_t GetThrowDexPc() const {
2854 return throw_dex_pc_;
2855 }
2856
2857 private:
2858 Thread* const self_;
2859 const Handle<mirror::Throwable>& exception_;
2860 StackHandleScope<3> handle_scope_;
2861 MutableHandle<mirror::Object> this_at_throw_;
2862 MutableHandle<mirror::ArtMethod> catch_method_;
2863 MutableHandle<mirror::ArtMethod> throw_method_;
2864 uint32_t catch_dex_pc_;
2865 uint32_t throw_dex_pc_;
2866
2867 DISALLOW_COPY_AND_ASSIGN(CatchLocationFinder);
2868};
2869
2870void Dbg::PostException(mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002871 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002872 return;
2873 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002874 StackHandleScope<1> handle_scope(Thread::Current());
2875 Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object));
2876 std::unique_ptr<Context> context(Context::Create());
2877 CatchLocationFinder clf(Thread::Current(), h_exception, context.get());
2878 clf.WalkStack(/* include_transitions */ false);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002879 JDWP::EventLocation exception_throw_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002880 SetEventLocation(&exception_throw_location, clf.GetThrowMethod(), clf.GetThrowDexPc());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002881 JDWP::EventLocation exception_catch_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002882 SetEventLocation(&exception_catch_location, clf.GetCatchMethod(), clf.GetCatchDexPc());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002883
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002884 gJdwpState->PostException(&exception_throw_location, h_exception.Get(), &exception_catch_location,
2885 clf.GetThisAtThrow());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002886}
2887
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002888void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002889 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002890 return;
2891 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002892 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002893}
2894
Ian Rogers62d6c772013-02-27 08:32:07 -08002895void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002896 mirror::ArtMethod* m, uint32_t dex_pc,
2897 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002898 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002899 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002900 }
2901
Elliott Hughes86964332012-02-15 19:37:42 -08002902 if (IsBreakpoint(m, dex_pc)) {
2903 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002904 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002905
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002906 // If the debugger is single-stepping one of our threads, check to
2907 // see if we're that thread and we've reached a step point.
2908 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002909 if (single_step_control != nullptr) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002910 CHECK(!m->IsNative());
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002911 if (single_step_control->GetStepDepth() == JDWP::SD_INTO) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002912 // Step into method calls. We break when the line number
2913 // or method pointer changes. If we're in SS_MIN mode, we
2914 // always stop.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002915 if (single_step_control->GetMethod() != m) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002916 event_flags |= kSingleStep;
2917 VLOG(jdwp) << "SS new method";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002918 } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002919 event_flags |= kSingleStep;
2920 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002921 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002922 event_flags |= kSingleStep;
2923 VLOG(jdwp) << "SS new line";
2924 }
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002925 } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002926 // Step over method calls. We break when the line number is
2927 // different and the frame depth is <= the original frame
2928 // depth. (We can't just compare on the method, because we
2929 // might get unrolled past it by an exception, and it's tricky
2930 // to identify recursion.)
2931
2932 int stack_depth = GetStackDepth(thread);
2933
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002934 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002935 // Popped up one or more frames, always trigger.
2936 event_flags |= kSingleStep;
2937 VLOG(jdwp) << "SS method pop";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002938 } else if (stack_depth == single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002939 // Same depth, see if we moved.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002940 if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002941 event_flags |= kSingleStep;
2942 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002943 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002944 event_flags |= kSingleStep;
2945 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002946 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002947 }
2948 } else {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002949 CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002950 // Return from the current method. We break when the frame
2951 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002952
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002953 // This differs from the "method exit" break in that it stops
2954 // with the PC at the next instruction in the returned-to
2955 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002956
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002957 int stack_depth = GetStackDepth(thread);
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002958 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002959 event_flags |= kSingleStep;
2960 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002961 }
2962 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002963 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002964
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002965 // If there's something interesting going on, see if it matches one
2966 // of the debugger filters.
2967 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002968 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002969 }
2970}
2971
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002972size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2973 switch (instrumentation_event) {
2974 case instrumentation::Instrumentation::kMethodEntered:
2975 return &method_enter_event_ref_count_;
2976 case instrumentation::Instrumentation::kMethodExited:
2977 return &method_exit_event_ref_count_;
2978 case instrumentation::Instrumentation::kDexPcMoved:
2979 return &dex_pc_change_event_ref_count_;
2980 case instrumentation::Instrumentation::kFieldRead:
2981 return &field_read_event_ref_count_;
2982 case instrumentation::Instrumentation::kFieldWritten:
2983 return &field_write_event_ref_count_;
2984 case instrumentation::Instrumentation::kExceptionCaught:
2985 return &exception_catch_event_ref_count_;
2986 default:
2987 return nullptr;
2988 }
2989}
2990
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002991// Process request while all mutator threads are suspended.
2992void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002993 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002994 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002995 case DeoptimizationRequest::kNothing:
2996 LOG(WARNING) << "Ignoring empty deoptimization request.";
2997 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002998 case DeoptimizationRequest::kRegisterForEvent:
2999 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003000 request.InstrumentationEvent());
3001 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
3002 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003003 break;
3004 case DeoptimizationRequest::kUnregisterForEvent:
3005 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003006 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003007 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003008 request.InstrumentationEvent());
3009 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003010 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003011 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003012 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003013 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003014 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003015 break;
3016 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003017 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003018 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003019 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003020 break;
3021 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003022 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
3023 instrumentation->Deoptimize(request.Method());
3024 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003025 break;
3026 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003027 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
3028 instrumentation->Undeoptimize(request.Method());
3029 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003030 break;
3031 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003032 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003033 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003034 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003035}
3036
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003037void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003038 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003039 // Nothing to do.
3040 return;
3041 }
Brian Carlstrom306db812014-09-05 13:01:41 -07003042 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003043 RequestDeoptimizationLocked(req);
3044}
3045
3046void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003047 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003048 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003049 DCHECK_NE(req.InstrumentationEvent(), 0u);
3050 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003051 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003052 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003053 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003054 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003055 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003056 deoptimization_requests_.push_back(req);
3057 }
3058 *counter = *counter + 1;
3059 break;
3060 }
3061 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003062 DCHECK_NE(req.InstrumentationEvent(), 0u);
3063 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003064 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003065 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003066 *counter = *counter - 1;
3067 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003068 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003069 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003070 deoptimization_requests_.push_back(req);
3071 }
3072 break;
3073 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003074 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003075 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003076 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003077 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3078 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003079 deoptimization_requests_.push_back(req);
3080 }
3081 ++full_deoptimization_event_count_;
3082 break;
3083 }
3084 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003085 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003086 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003087 --full_deoptimization_event_count_;
3088 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003089 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3090 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003091 deoptimization_requests_.push_back(req);
3092 }
3093 break;
3094 }
3095 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003096 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003097 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003098 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003099 deoptimization_requests_.push_back(req);
3100 break;
3101 }
3102 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003103 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003104 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003105 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003106 deoptimization_requests_.push_back(req);
3107 break;
3108 }
3109 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003110 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003111 break;
3112 }
3113 }
3114}
3115
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003116void Dbg::ManageDeoptimization() {
3117 Thread* const self = Thread::Current();
3118 {
3119 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003120 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003121 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003122 return;
3123 }
3124 }
3125 CHECK_EQ(self->GetState(), kRunnable);
3126 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3127 // We need to suspend mutator threads first.
3128 Runtime* const runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07003129 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003130 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003131 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003132 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003133 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003134 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003135 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003136 ProcessDeoptimizationRequest(request);
3137 }
3138 deoptimization_requests_.clear();
3139 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003140 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3141 runtime->GetThreadList()->ResumeAll();
3142 self->TransitionFromSuspendedToRunnable();
3143}
3144
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003145static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3146 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003147 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003148 if (code_item == nullptr) {
3149 // TODO We should not be asked to watch location in a native or abstract method so the code item
3150 // should never be null. We could just check we never encounter this case.
3151 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003152 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003153 // Note: method verifier may cause thread suspension.
3154 self->AssertThreadSuspensionIsAllowable();
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003155 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003156 mirror::Class* declaring_class = m->GetDeclaringClass();
3157 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3158 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003159 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Ian Rogers7b078e82014-09-10 14:44:24 -07003160 verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003161 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method,
Mathieu Chartier4306ef82014-12-19 18:41:47 -08003162 m->GetAccessFlags(), false, true, false, true);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003163 // Note: we don't need to verify the method.
3164 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3165}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003166
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003167static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003168 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003169 for (Breakpoint& breakpoint : gBreakpoints) {
3170 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003171 return &breakpoint;
3172 }
3173 }
3174 return nullptr;
3175}
3176
Mathieu Chartierd8565452015-03-26 09:41:50 -07003177bool Dbg::MethodHasAnyBreakpoints(mirror::ArtMethod* method) {
3178 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
3179 return FindFirstBreakpointForMethod(method) != nullptr;
3180}
3181
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003182// Sanity checks all existing breakpoints on the same method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003183static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m,
3184 DeoptimizationRequest::Kind deoptimization_kind)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003185 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003186 for (const Breakpoint& breakpoint : gBreakpoints) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003187 if (breakpoint.Method() == m) {
3188 CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind());
3189 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003190 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003191 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
3192 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003193 // We should have deoptimized everything but not "selectively" deoptimized this method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003194 CHECK(instrumentation->AreAllMethodsDeoptimized());
3195 CHECK(!instrumentation->IsDeoptimized(m));
3196 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003197 // We should have "selectively" deoptimized this method.
3198 // Note: while we have not deoptimized everything for this method, we may have done it for
3199 // another event.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003200 CHECK(instrumentation->IsDeoptimized(m));
3201 } else {
3202 // This method does not require deoptimization.
3203 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3204 CHECK(!instrumentation->IsDeoptimized(m));
3205 }
3206}
3207
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003208// Returns the deoptimization kind required to set a breakpoint in a method.
3209// If a breakpoint has already been set, we also return the first breakpoint
3210// through the given 'existing_brkpt' pointer.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003211static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self,
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003212 mirror::ArtMethod* m,
3213 const Breakpoint** existing_brkpt)
Sebastien Hertzf3928792014-11-17 19:00:37 +01003214 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
3215 if (!Dbg::RequiresDeoptimization()) {
3216 // We already run in interpreter-only mode so we don't need to deoptimize anything.
3217 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method "
3218 << PrettyMethod(m);
3219 return DeoptimizationRequest::kNothing;
3220 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003221 const Breakpoint* first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003222 {
3223 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003224 first_breakpoint = FindFirstBreakpointForMethod(m);
3225 *existing_brkpt = first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003226 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003227
3228 if (first_breakpoint == nullptr) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003229 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3230 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3231 // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension.
3232 // Therefore we must not hold any lock when we call it.
3233 bool need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3234 if (need_full_deoptimization) {
3235 VLOG(jdwp) << "Need full deoptimization because of possible inlining of method "
3236 << PrettyMethod(m);
3237 return DeoptimizationRequest::kFullDeoptimization;
3238 } else {
3239 // We don't need to deoptimize if the method has not been compiled.
3240 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
3241 const bool is_compiled = class_linker->GetOatMethodQuickCodeFor(m) != nullptr;
3242 if (is_compiled) {
Sebastien Hertz6963e442014-11-26 22:11:27 +01003243 // If the method may be called through its direct code pointer (without loading
3244 // its updated entrypoint), we need full deoptimization to not miss the breakpoint.
3245 if (class_linker->MayBeCalledWithDirectCodePointer(m)) {
3246 VLOG(jdwp) << "Need full deoptimization because of possible direct code call "
3247 << "into image for compiled method " << PrettyMethod(m);
3248 return DeoptimizationRequest::kFullDeoptimization;
3249 } else {
3250 VLOG(jdwp) << "Need selective deoptimization for compiled method " << PrettyMethod(m);
3251 return DeoptimizationRequest::kSelectiveDeoptimization;
3252 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003253 } else {
3254 // Method is not compiled: we don't need to deoptimize.
3255 VLOG(jdwp) << "No need for deoptimization for non-compiled method " << PrettyMethod(m);
3256 return DeoptimizationRequest::kNothing;
3257 }
3258 }
3259 } else {
3260 // There is at least one breakpoint for this method: we don't need to deoptimize.
3261 // Let's check that all breakpoints are configured the same way for deoptimization.
3262 VLOG(jdwp) << "Breakpoint already set: no deoptimization is required";
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003263 DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003264 if (kIsDebugBuild) {
3265 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3266 SanityCheckExistingBreakpoints(m, deoptimization_kind);
3267 }
3268 return DeoptimizationRequest::kNothing;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003269 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003270}
3271
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003272// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3273// request if we need to deoptimize.
3274void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3275 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003276 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003277 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003278
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003279 const Breakpoint* existing_breakpoint = nullptr;
3280 const DeoptimizationRequest::Kind deoptimization_kind =
3281 GetRequiredDeoptimizationKind(self, m, &existing_breakpoint);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003282 req->SetKind(deoptimization_kind);
3283 if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
3284 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003285 } else {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003286 CHECK(deoptimization_kind == DeoptimizationRequest::kNothing ||
3287 deoptimization_kind == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003288 req->SetMethod(nullptr);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003289 }
3290
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003291 {
3292 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003293 // If there is at least one existing breakpoint on the same method, the new breakpoint
3294 // must have the same deoptimization kind than the existing breakpoint(s).
3295 DeoptimizationRequest::Kind breakpoint_deoptimization_kind;
3296 if (existing_breakpoint != nullptr) {
3297 breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind();
3298 } else {
3299 breakpoint_deoptimization_kind = deoptimization_kind;
3300 }
3301 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind));
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003302 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3303 << gBreakpoints[gBreakpoints.size() - 1];
3304 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003305}
3306
3307// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3308// request if we need to undeoptimize.
3309void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003310 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003311 mirror::ArtMethod* m = FromMethodId(location->method_id);
3312 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003313 DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003314 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003315 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003316 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Sebastien Hertzf3928792014-11-17 19:00:37 +01003317 deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind();
3318 DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization,
3319 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003320 gBreakpoints.erase(gBreakpoints.begin() + i);
3321 break;
3322 }
3323 }
3324 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3325 if (existing_breakpoint == nullptr) {
3326 // There is no more breakpoint on this method: we need to undeoptimize.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003327 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003328 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003329 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3330 req->SetMethod(nullptr);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003331 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003332 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003333 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3334 req->SetMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003335 } else {
3336 // This method had no need for deoptimization: do nothing.
3337 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3338 req->SetKind(DeoptimizationRequest::kNothing);
3339 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003340 }
3341 } else {
3342 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003343 req->SetKind(DeoptimizationRequest::kNothing);
3344 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003345 if (kIsDebugBuild) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003346 SanityCheckExistingBreakpoints(m, deoptimization_kind);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003347 }
Elliott Hughes86964332012-02-15 19:37:42 -08003348 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003349}
3350
Daniel Mihalyieb076692014-08-22 17:33:31 +02003351bool Dbg::IsForcedInterpreterNeededForCallingImpl(Thread* thread, mirror::ArtMethod* m) {
3352 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3353 if (ssc == nullptr) {
3354 // If we are not single-stepping, then we don't have to force interpreter.
3355 return false;
3356 }
3357 if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) {
3358 // If we are in interpreter only mode, then we don't have to force interpreter.
3359 return false;
3360 }
3361
3362 if (!m->IsNative() && !m->IsProxyMethod()) {
3363 // If we want to step into a method, then we have to force interpreter on that call.
3364 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3365 return true;
3366 }
3367 }
3368 return false;
3369}
3370
3371bool Dbg::IsForcedInterpreterNeededForResolutionImpl(Thread* thread, mirror::ArtMethod* m) {
3372 instrumentation::Instrumentation* const instrumentation =
3373 Runtime::Current()->GetInstrumentation();
3374 // If we are in interpreter only mode, then we don't have to force interpreter.
3375 if (instrumentation->InterpretOnly()) {
3376 return false;
3377 }
3378 // We can only interpret pure Java method.
3379 if (m->IsNative() || m->IsProxyMethod()) {
3380 return false;
3381 }
3382 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3383 if (ssc != nullptr) {
3384 // If we want to step into a method, then we have to force interpreter on that call.
3385 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3386 return true;
3387 }
3388 // If we are stepping out from a static initializer, by issuing a step
3389 // in or step over, that was implicitly invoked by calling a static method,
3390 // then we need to step into that method. Having a lower stack depth than
3391 // the one the single step control has indicates that the step originates
3392 // from the static initializer.
3393 if (ssc->GetStepDepth() != JDWP::SD_OUT &&
3394 ssc->GetStackDepth() > GetStackDepth(thread)) {
3395 return true;
3396 }
3397 }
3398 // There are cases where we have to force interpreter on deoptimized methods,
3399 // because in some cases the call will not be performed by invoking an entry
3400 // point that has been replaced by the deoptimization, but instead by directly
3401 // invoking the compiled code of the method, for example.
3402 return instrumentation->IsDeoptimized(m);
3403}
3404
3405bool Dbg::IsForcedInstrumentationNeededForResolutionImpl(Thread* thread, mirror::ArtMethod* m) {
3406 // The upcall can be nullptr and in that case we don't need to do anything.
3407 if (m == nullptr) {
3408 return false;
3409 }
3410 instrumentation::Instrumentation* const instrumentation =
3411 Runtime::Current()->GetInstrumentation();
3412 // If we are in interpreter only mode, then we don't have to force interpreter.
3413 if (instrumentation->InterpretOnly()) {
3414 return false;
3415 }
3416 // We can only interpret pure Java method.
3417 if (m->IsNative() || m->IsProxyMethod()) {
3418 return false;
3419 }
3420 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3421 if (ssc != nullptr) {
3422 // If we are stepping out from a static initializer, by issuing a step
3423 // out, that was implicitly invoked by calling a static method, then we
3424 // need to step into the caller of that method. Having a lower stack
3425 // depth than the one the single step control has indicates that the
3426 // step originates from the static initializer.
3427 if (ssc->GetStepDepth() == JDWP::SD_OUT &&
3428 ssc->GetStackDepth() > GetStackDepth(thread)) {
3429 return true;
3430 }
3431 }
3432 // If we are returning from a static intializer, that was implicitly
3433 // invoked by calling a static method and the caller is deoptimized,
3434 // then we have to deoptimize the stack without forcing interpreter
3435 // on the static method that was called originally. This problem can
3436 // be solved easily by forcing instrumentation on the called method,
3437 // because the instrumentation exit hook will recognise the need of
3438 // stack deoptimization by calling IsForcedInterpreterNeededForUpcall.
3439 return instrumentation->IsDeoptimized(m);
3440}
3441
3442bool Dbg::IsForcedInterpreterNeededForUpcallImpl(Thread* thread, mirror::ArtMethod* m) {
3443 // The upcall can be nullptr and in that case we don't need to do anything.
3444 if (m == nullptr) {
3445 return false;
3446 }
3447 instrumentation::Instrumentation* const instrumentation =
3448 Runtime::Current()->GetInstrumentation();
3449 // If we are in interpreter only mode, then we don't have to force interpreter.
3450 if (instrumentation->InterpretOnly()) {
3451 return false;
3452 }
3453 // We can only interpret pure Java method.
3454 if (m->IsNative() || m->IsProxyMethod()) {
3455 return false;
3456 }
3457 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3458 if (ssc != nullptr) {
3459 // The debugger is not interested in what is happening under the level
3460 // of the step, thus we only force interpreter when we are not below of
3461 // the step.
3462 if (ssc->GetStackDepth() >= GetStackDepth(thread)) {
3463 return true;
3464 }
3465 }
3466 // We have to require stack deoptimization if the upcall is deoptimized.
3467 return instrumentation->IsDeoptimized(m);
3468}
3469
Jeff Hao449db332013-04-12 18:30:52 -07003470// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3471// cause suspension if the thread is the current thread.
3472class ScopedThreadSuspension {
3473 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003474 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003475 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003476 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003477 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003478 error_(JDWP::ERR_NONE),
3479 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003480 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003481 ScopedObjectAccessUnchecked soa(self);
3482 {
3483 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003484 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003485 }
3486 if (error_ == JDWP::ERR_NONE) {
3487 if (thread_ == soa.Self()) {
3488 self_suspend_ = true;
3489 } else {
3490 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Sebastien Hertz6995c602014-09-09 12:10:13 +02003491 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003492 bool timed_out;
Ian Rogers4ad5cd32014-11-11 23:08:07 -08003493 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3494 Thread* suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true,
3495 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07003496 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003497 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003498 // Thread terminated from under us while suspending.
3499 error_ = JDWP::ERR_INVALID_THREAD;
3500 } else {
3501 CHECK_EQ(suspended_thread, thread_);
3502 other_suspend_ = true;
3503 }
3504 }
3505 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003506 }
Elliott Hughes86964332012-02-15 19:37:42 -08003507
Jeff Hao449db332013-04-12 18:30:52 -07003508 Thread* GetThread() const {
3509 return thread_;
3510 }
3511
3512 JDWP::JdwpError GetError() const {
3513 return error_;
3514 }
3515
3516 ~ScopedThreadSuspension() {
3517 if (other_suspend_) {
3518 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3519 }
3520 }
3521
3522 private:
3523 Thread* thread_;
3524 JDWP::JdwpError error_;
3525 bool self_suspend_;
3526 bool other_suspend_;
3527};
3528
3529JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3530 JDWP::JdwpStepDepth step_depth) {
3531 Thread* self = Thread::Current();
3532 ScopedThreadSuspension sts(self, thread_id);
3533 if (sts.GetError() != JDWP::ERR_NONE) {
3534 return sts.GetError();
3535 }
3536
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003537 // Work out what ArtMethod* we're in, the current line number, and how deep the stack currently
Elliott Hughes2435a572012-02-17 16:07:41 -08003538 // is for step-out.
Ian Rogers0399dde2012-06-06 17:09:28 -07003539 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003540 explicit SingleStepStackVisitor(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
3541 : StackVisitor(thread, nullptr), stack_depth(0), method(nullptr), line_number(-1) {
Elliott Hughes86964332012-02-15 19:37:42 -08003542 }
Ian Rogersca190662012-06-26 15:45:57 -07003543
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003544 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3545 // annotalysis.
3546 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003547 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003548 if (!m->IsRuntimeMethod()) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003549 ++stack_depth;
3550 if (method == nullptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003551 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003552 method = m;
Ian Rogersc0542af2014-09-03 16:16:56 -07003553 if (dex_cache != nullptr) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003554 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003555 line_number = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003556 }
Elliott Hughes86964332012-02-15 19:37:42 -08003557 }
3558 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003559 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003560 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003561
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003562 int stack_depth;
3563 mirror::ArtMethod* method;
3564 int32_t line_number;
Elliott Hughes86964332012-02-15 19:37:42 -08003565 };
Jeff Hao449db332013-04-12 18:30:52 -07003566
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003567 Thread* const thread = sts.GetThread();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003568 SingleStepStackVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07003569 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003570
Elliott Hughes2435a572012-02-17 16:07:41 -08003571 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
Elliott Hughes2435a572012-02-17 16:07:41 -08003572 struct DebugCallbackContext {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003573 explicit DebugCallbackContext(SingleStepControl* single_step_control_cb,
3574 int32_t line_number_cb, const DexFile::CodeItem* code_item)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003575 : single_step_control_(single_step_control_cb), line_number_(line_number_cb),
3576 code_item_(code_item), last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003577 }
3578
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003579 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number_cb) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003580 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003581 if (static_cast<int32_t>(line_number_cb) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003582 if (!context->last_pc_valid) {
3583 // Everything from this address until the next line change is ours.
3584 context->last_pc = address;
3585 context->last_pc_valid = true;
3586 }
3587 // Otherwise, if we're already in a valid range for this line,
3588 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003589 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003590 // Add everything from the last entry up until here to the set
3591 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003592 context->single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003593 }
3594 context->last_pc_valid = false;
3595 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003596 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003597 }
3598
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003599 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003600 // If the line number was the last in the position table...
3601 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003602 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003603 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003604 single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003605 }
3606 }
3607 }
3608
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003609 SingleStepControl* const single_step_control_;
3610 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003611 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003612 bool last_pc_valid;
3613 uint32_t last_pc;
3614 };
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003615
3616 // Allocate single step.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003617 SingleStepControl* single_step_control =
3618 new (std::nothrow) SingleStepControl(step_size, step_depth,
3619 visitor.stack_depth, visitor.method);
3620 if (single_step_control == nullptr) {
3621 LOG(ERROR) << "Failed to allocate SingleStepControl";
3622 return JDWP::ERR_OUT_OF_MEMORY;
3623 }
3624
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003625 mirror::ArtMethod* m = single_step_control->GetMethod();
3626 const int32_t line_number = visitor.line_number;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003627 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003628 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003629 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003630 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07003631 DebugCallbackContext::Callback, nullptr, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003632 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003633
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003634 // Activate single-step in the thread.
3635 thread->ActivateSingleStepControl(single_step_control);
Elliott Hughes86964332012-02-15 19:37:42 -08003636
Elliott Hughes2435a572012-02-17 16:07:41 -08003637 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003638 VLOG(jdwp) << "Single-step thread: " << *thread;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003639 VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize();
3640 VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth();
3641 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->GetMethod());
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003642 VLOG(jdwp) << "Single-step current line: " << line_number;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003643 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth();
Elliott Hughes2435a572012-02-17 16:07:41 -08003644 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003645 for (uint32_t dex_pc : single_step_control->GetDexPcs()) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003646 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003647 }
3648 }
3649
3650 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003651}
3652
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003653void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3654 ScopedObjectAccessUnchecked soa(Thread::Current());
3655 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003656 JDWP::JdwpError error;
3657 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003658 if (error == JDWP::ERR_NONE) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003659 thread->DeactivateSingleStepControl();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003660 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003661}
3662
Elliott Hughes45651fd2012-02-21 15:48:20 -08003663static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3664 switch (tag) {
3665 default:
3666 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
Ian Rogersfc787ec2014-10-09 21:56:44 -07003667 UNREACHABLE();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003668
3669 // Primitives.
3670 case JDWP::JT_BYTE: return 'B';
3671 case JDWP::JT_CHAR: return 'C';
3672 case JDWP::JT_FLOAT: return 'F';
3673 case JDWP::JT_DOUBLE: return 'D';
3674 case JDWP::JT_INT: return 'I';
3675 case JDWP::JT_LONG: return 'J';
3676 case JDWP::JT_SHORT: return 'S';
3677 case JDWP::JT_VOID: return 'V';
3678 case JDWP::JT_BOOLEAN: return 'Z';
3679
3680 // Reference types.
3681 case JDWP::JT_ARRAY:
3682 case JDWP::JT_OBJECT:
3683 case JDWP::JT_STRING:
3684 case JDWP::JT_THREAD:
3685 case JDWP::JT_THREAD_GROUP:
3686 case JDWP::JT_CLASS_LOADER:
3687 case JDWP::JT_CLASS_OBJECT:
3688 return 'L';
3689 }
3690}
3691
Elliott Hughes88d63092013-01-09 09:55:54 -08003692JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3693 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003694 uint32_t arg_count, uint64_t* arg_values,
3695 JDWP::JdwpTag* arg_types, uint32_t options,
3696 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3697 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003698 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3699
Ian Rogersc0542af2014-09-03 16:16:56 -07003700 Thread* targetThread = nullptr;
Sebastien Hertz1558b572015-02-25 15:05:59 +01003701 std::unique_ptr<DebugInvokeReq> req;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003702 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003703 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003704 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003705 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003706 JDWP::JdwpError error;
3707 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003708 if (error != JDWP::ERR_NONE) {
3709 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3710 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003711 }
Sebastien Hertz1558b572015-02-25 15:05:59 +01003712 if (targetThread->GetInvokeReq() != nullptr) {
3713 // Thread is already invoking a method on behalf of the debugger.
3714 LOG(ERROR) << "InvokeMethod request for thread already invoking a method: " << *targetThread;
3715 return JDWP::ERR_ALREADY_INVOKING;
3716 }
3717 if (!targetThread->IsReadyForDebugInvoke()) {
3718 // Thread is not suspended by an event so it cannot invoke a method.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003719 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3720 return JDWP::ERR_INVALID_THREAD;
3721 }
3722
3723 /*
3724 * We currently have a bug where we don't successfully resume the
3725 * target thread if the suspend count is too deep. We're expected to
3726 * require one "resume" for each "suspend", but when asked to execute
3727 * a method we have to resume fully and then re-suspend it back to the
3728 * same level. (The easiest way to cause this is to type "suspend"
3729 * multiple times in jdb.)
3730 *
3731 * It's unclear what this means when the event specifies "resume all"
3732 * and some threads are suspended more deeply than others. This is
3733 * a rare problem, so for now we just prevent it from hanging forever
3734 * by rejecting the method invocation request. Without this, we will
3735 * be stuck waiting on a suspended thread.
3736 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003737 int suspend_count;
3738 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003739 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003740 suspend_count = targetThread->GetSuspendCount();
3741 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003742 if (suspend_count > 1) {
3743 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003744 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003745 }
3746
Ian Rogersc0542af2014-09-03 16:16:56 -07003747 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3748 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003749 return JDWP::ERR_INVALID_OBJECT;
3750 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003751
Sebastien Hertz1558b572015-02-25 15:05:59 +01003752 gRegistry->Get<mirror::Object*>(thread_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07003753 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003754 return JDWP::ERR_INVALID_OBJECT;
3755 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003756
Ian Rogersc0542af2014-09-03 16:16:56 -07003757 mirror::Class* c = DecodeClass(class_id, &error);
3758 if (c == nullptr) {
3759 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003760 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003761
Brian Carlstromea46f952013-07-30 01:26:50 -07003762 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003763 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003764 return JDWP::ERR_INVALID_METHODID;
3765 }
3766 if (m->IsStatic()) {
3767 if (m->GetDeclaringClass() != c) {
3768 return JDWP::ERR_INVALID_METHODID;
3769 }
3770 } else {
3771 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3772 return JDWP::ERR_INVALID_METHODID;
3773 }
3774 }
3775
3776 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003777 uint32_t shorty_len = 0;
3778 const char* shorty = m->GetShorty(&shorty_len);
3779 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003780 return JDWP::ERR_ILLEGAL_ARGUMENT;
3781 }
Elliott Hughes09201632013-04-15 15:50:07 -07003782
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003783 {
3784 StackHandleScope<3> hs(soa.Self());
Ian Rogersa0485602014-12-02 15:48:04 -08003785 HandleWrapper<mirror::ArtMethod> h_m(hs.NewHandleWrapper(&m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003786 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3787 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3788 const DexFile::TypeList* types = m->GetParameterTypeList();
3789 for (size_t i = 0; i < arg_count; ++i) {
3790 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003791 return JDWP::ERR_ILLEGAL_ARGUMENT;
3792 }
3793
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003794 if (shorty[i + 1] == 'L') {
3795 // Did we really get an argument of an appropriate reference type?
Ian Rogersa0485602014-12-02 15:48:04 -08003796 mirror::Class* parameter_type =
3797 h_m->GetClassFromTypeIndex(types->GetTypeItem(i).type_idx_, true);
Ian Rogersc0542af2014-09-03 16:16:56 -07003798 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
3799 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003800 return JDWP::ERR_INVALID_OBJECT;
3801 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003802 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003803 return JDWP::ERR_ILLEGAL_ARGUMENT;
3804 }
3805
3806 // Turn the on-the-wire ObjectId into a jobject.
3807 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3808 v.l = gRegistry->GetJObject(arg_values[i]);
3809 }
Elliott Hughes09201632013-04-15 15:50:07 -07003810 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003811 }
3812
Sebastien Hertz1558b572015-02-25 15:05:59 +01003813 // Allocates a DebugInvokeReq.
3814 req.reset(new (std::nothrow) DebugInvokeReq(receiver, c, m, options, arg_values, arg_count));
3815 if (req.get() == nullptr) {
3816 LOG(ERROR) << "Failed to allocate DebugInvokeReq";
3817 return JDWP::ERR_OUT_OF_MEMORY;
3818 }
3819
3820 // Attach the DebugInvokeReq to the target thread so it executes the method when
3821 // it is resumed. Once the invocation completes, it will detach it and signal us
3822 // before suspending itself.
3823 targetThread->SetDebugInvokeReq(req.get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003824 }
3825
3826 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3827 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3828 // call, and it's unwise to hold it during WaitForSuspend.
3829
3830 {
3831 /*
3832 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003833 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003834 * run out of memory. It's also a good idea to change it before locking
3835 * the invokeReq mutex, although that should never be held for long.
3836 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003837 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003838
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003839 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003840 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003841 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003842
3843 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003844 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003845 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003846 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003847 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003848 thread_list->Resume(targetThread, true);
3849 }
3850
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003851 // The target thread is resumed but needs the JDWP token we're holding.
3852 // We release it now and will acquire it again when the invocation is
3853 // complete and the target thread suspends itself.
3854 gJdwpState->ReleaseJdwpTokenForCommand();
3855
Elliott Hughesd07986f2011-12-06 18:27:45 -08003856 // Wait for the request to finish executing.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003857 while (targetThread->GetInvokeReq() != nullptr) {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003858 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003859 }
3860 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003861 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003862
3863 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003864 SuspendThread(thread_id, false /* request_suspension */);
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003865
3866 // Now the thread is suspended again, we can re-acquire the JDWP token.
3867 gJdwpState->AcquireJdwpTokenForCommand();
3868
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003869 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003870 }
3871
3872 /*
3873 * Suspend the threads. We waited for the target thread to suspend
3874 * itself, so all we need to do is suspend the others.
3875 *
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003876 * The SuspendAllForDebugger() call will double-suspend the event thread,
Elliott Hughesd07986f2011-12-06 18:27:45 -08003877 * so we want to resume the target thread once to keep the books straight.
3878 */
3879 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003880 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003881 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003882 thread_list->SuspendAllForDebugger();
3883 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003884 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003885 thread_list->Resume(targetThread, true);
3886 }
3887
3888 // Copy the result.
3889 *pResultTag = req->result_tag;
Sebastien Hertz1558b572015-02-25 15:05:59 +01003890 *pResultValue = req->result_value;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003891 *pExceptionId = req->exception;
3892 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003893}
3894
3895void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003896 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003897
Elliott Hughes81ff3182012-03-23 20:35:56 -07003898 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003899 // to preserve that across the method invocation.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003900 StackHandleScope<4> hs(soa.Self());
3901 auto old_exception = hs.NewHandle<mirror::Throwable>(soa.Self()->GetException());
3902 soa.Self()->ClearException();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003903
3904 // Translate the method through the vtable, unless the debugger wants to suppress it.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003905 MutableHandle<mirror::ArtMethod> m(hs.NewHandle(pReq->method.Read()));
3906 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) {
3907 mirror::ArtMethod* actual_method = pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m.Get());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003908 if (actual_method != m.Get()) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01003909 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get())
3910 << " to " << PrettyMethod(actual_method);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003911 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003912 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003913 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003914 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertz1558b572015-02-25 15:05:59 +01003915 << " receiver=" << pReq->receiver.Read()
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003916 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003917 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003918
3919 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3920
Sebastien Hertz1558b572015-02-25 15:05:59 +01003921 JValue result = InvokeWithJValues(soa, pReq->receiver.Read(), soa.EncodeMethod(m.Get()),
3922 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003923
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003924 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Sebastien Hertz1558b572015-02-25 15:05:59 +01003925 const bool is_object_result = (pReq->result_tag == JDWP::JT_OBJECT);
3926 Handle<mirror::Object> object_result = hs.NewHandle(is_object_result ? result.GetL() : nullptr);
3927 Handle<mirror::Throwable> exception = hs.NewHandle(soa.Self()->GetException());
3928 soa.Self()->ClearException();
3929 pReq->exception = gRegistry->Add(exception.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003930 if (pReq->exception != 0) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01003931 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get()
3932 << " " << exception->Dump();
3933 pReq->result_value = 0;
3934 } else if (is_object_result) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003935 /* if no exception thrown, examine object result more closely */
Sebastien Hertz1558b572015-02-25 15:05:59 +01003936 JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003937 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003938 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003939 pReq->result_tag = new_tag;
3940 }
3941
Sebastien Hertz1558b572015-02-25 15:05:59 +01003942 // Register the object in the registry and reference its ObjectId. This ensures
3943 // GC safety and prevents from accessing stale reference if the object is moved.
3944 pReq->result_value = gRegistry->Add(object_result.Get());
3945 } else {
3946 // Primitive result.
3947 DCHECK(IsPrimitiveTag(pReq->result_tag));
3948 pReq->result_value = result.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003949 }
3950
Ian Rogersc0542af2014-09-03 16:16:56 -07003951 if (old_exception.Get() != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003952 soa.Self()->SetException(old_exception.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003953 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003954}
3955
Elliott Hughesd07986f2011-12-06 18:27:45 -08003956/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003957 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003958 * need to process each, accumulate the replies, and ship the whole thing
3959 * back.
3960 *
3961 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3962 * and includes the chunk type/length, followed by the data.
3963 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003964 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003965 * chunk. If this becomes inconvenient we will need to adapt.
3966 */
Ian Rogersc0542af2014-09-03 16:16:56 -07003967bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003968 Thread* self = Thread::Current();
3969 JNIEnv* env = self->GetJniEnv();
3970
Ian Rogersc0542af2014-09-03 16:16:56 -07003971 uint32_t type = request->ReadUnsigned32("type");
3972 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003973
3974 // Create a byte[] corresponding to 'request'.
Ian Rogersc0542af2014-09-03 16:16:56 -07003975 size_t request_length = request->size();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003976 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Ian Rogersc0542af2014-09-03 16:16:56 -07003977 if (dataArray.get() == nullptr) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003978 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003979 env->ExceptionClear();
3980 return false;
3981 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003982 env->SetByteArrayRegion(dataArray.get(), 0, request_length,
3983 reinterpret_cast<const jbyte*>(request->data()));
3984 request->Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003985
3986 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003987 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003988 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003989 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003990 return false;
3991 }
3992
3993 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003994 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3995 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003996 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003997 if (env->ExceptionCheck()) {
3998 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3999 env->ExceptionDescribe();
4000 env->ExceptionClear();
4001 return false;
4002 }
4003
Ian Rogersc0542af2014-09-03 16:16:56 -07004004 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004005 return false;
4006 }
4007
4008 /*
4009 * Pull the pieces out of the chunk. We copy the results into a
4010 * newly-allocated buffer that the caller can free. We don't want to
4011 * continue using the Chunk object because nothing has a reference to it.
4012 *
4013 * We could avoid this by returning type/data/offset/length and having
4014 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07004015 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004016 * if we have responses for multiple chunks.
4017 *
4018 * So we're pretty much stuck with copying data around multiple times.
4019 */
Elliott Hugheseac76672012-05-24 21:56:51 -07004020 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 -08004021 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07004022 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07004023 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004024
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004025 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 -07004026 if (length == 0 || replyData.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004027 return false;
4028 }
4029
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004030 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004031 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
Ian Rogersc0542af2014-09-03 16:16:56 -07004032 if (reply == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004033 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
4034 return false;
4035 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07004036 JDWP::Set4BE(reply + 0, type);
4037 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004038 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004039
4040 *pReplyBuf = reply;
4041 *pReplyLen = length + kChunkHdrLen;
4042
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004043 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004044 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004045}
4046
Elliott Hughesa2155262011-11-16 16:26:58 -08004047void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004048 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07004049
4050 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07004051 if (self->GetState() != kRunnable) {
4052 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
4053 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07004054 }
4055
4056 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07004057 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07004058 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4059 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
4060 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07004061 if (env->ExceptionCheck()) {
4062 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
4063 env->ExceptionDescribe();
4064 env->ExceptionClear();
4065 }
4066}
4067
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004068void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004069 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004070}
4071
4072void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004073 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07004074 gDdmThreadNotification = false;
4075}
4076
4077/*
Elliott Hughes82188472011-11-07 18:11:48 -08004078 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07004079 *
4080 * Because we broadcast the full set of threads when the notifications are
4081 * first enabled, it's possible for "thread" to be actively executing.
4082 */
Elliott Hughes82188472011-11-07 18:11:48 -08004083void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004084 if (!gDdmThreadNotification) {
4085 return;
4086 }
4087
Elliott Hughes82188472011-11-07 18:11:48 -08004088 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004089 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004090 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07004091 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08004092 } else {
4093 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004094 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004095 StackHandleScope<1> hs(soa.Self());
4096 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
Ian Rogersc0542af2014-09-03 16:16:56 -07004097 size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0;
4098 const jchar* chars = (name.Get() != nullptr) ? name->GetCharArray()->GetData() : nullptr;
Elliott Hughes82188472011-11-07 18:11:48 -08004099
Elliott Hughes21f32d72011-11-09 17:44:13 -08004100 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004101 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004102 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08004103 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
4104 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07004105 }
4106}
4107
Elliott Hughes47fce012011-10-25 18:37:19 -07004108void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004109 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07004110 gDdmThreadNotification = enable;
4111 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004112 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
4113 // see a suspension in progress and block until that ends. They then post their own start
4114 // notification.
4115 SuspendVM();
4116 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07004117 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004118 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004119 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004120 threads = Runtime::Current()->GetThreadList()->GetList();
4121 }
4122 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004123 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07004124 for (Thread* thread : threads) {
4125 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004126 }
4127 }
4128 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07004129 }
4130}
4131
Elliott Hughesa2155262011-11-16 16:26:58 -08004132void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07004133 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02004134 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004135 }
Elliott Hughes82188472011-11-07 18:11:48 -08004136 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07004137}
4138
4139void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004140 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004141}
4142
4143void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004144 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004145}
4146
Elliott Hughes82188472011-11-07 18:11:48 -08004147void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004148 CHECK(buf != nullptr);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004149 iovec vec[1];
4150 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
4151 vec[0].iov_len = byte_count;
4152 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004153}
4154
Elliott Hughes21f32d72011-11-09 17:44:13 -08004155void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
4156 DdmSendChunk(type, bytes.size(), &bytes[0]);
4157}
4158
Brian Carlstromf5293522013-07-19 00:24:00 -07004159void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004160 if (gJdwpState == nullptr) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004161 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07004162 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08004163 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004164 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004165}
4166
Mathieu Chartierad466ad2015-01-08 16:28:08 -08004167JDWP::JdwpState* Dbg::GetJdwpState() {
4168 return gJdwpState;
4169}
4170
Elliott Hughes767a1472011-10-26 18:49:02 -07004171int Dbg::DdmHandleHpifChunk(HpifWhen when) {
4172 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07004173 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07004174 return true;
4175 }
4176
4177 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4178 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4179 return false;
4180 }
4181
4182 gDdmHpifWhen = when;
4183 return true;
4184}
4185
4186bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4187 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4188 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4189 return false;
4190 }
4191
4192 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4193 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4194 return false;
4195 }
4196
4197 if (native) {
4198 gDdmNhsgWhen = when;
4199 gDdmNhsgWhat = what;
4200 } else {
4201 gDdmHpsgWhen = when;
4202 gDdmHpsgWhat = what;
4203 }
4204 return true;
4205}
4206
Elliott Hughes7162ad92011-10-27 14:08:42 -07004207void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4208 // If there's a one-shot 'when', reset it.
4209 if (reason == gDdmHpifWhen) {
4210 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4211 gDdmHpifWhen = HPIF_WHEN_NEVER;
4212 }
4213 }
4214
4215 /*
4216 * Chunk HPIF (client --> server)
4217 *
4218 * Heap Info. General information about the heap,
4219 * suitable for a summary display.
4220 *
4221 * [u4]: number of heaps
4222 *
4223 * For each heap:
4224 * [u4]: heap ID
4225 * [u8]: timestamp in ms since Unix epoch
4226 * [u1]: capture reason (same as 'when' value from server)
4227 * [u4]: max heap size in bytes (-Xmx)
4228 * [u4]: current heap size in bytes
4229 * [u4]: current number of bytes allocated
4230 * [u4]: current number of objects allocated
4231 */
4232 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004233 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004234 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004235 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004236 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004237 JDWP::Append8BE(bytes, MilliTime());
4238 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004239 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4240 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004241 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4242 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004243 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
4244 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07004245}
4246
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004247enum HpsgSolidity {
4248 SOLIDITY_FREE = 0,
4249 SOLIDITY_HARD = 1,
4250 SOLIDITY_SOFT = 2,
4251 SOLIDITY_WEAK = 3,
4252 SOLIDITY_PHANTOM = 4,
4253 SOLIDITY_FINALIZABLE = 5,
4254 SOLIDITY_SWEEP = 6,
4255};
4256
4257enum HpsgKind {
4258 KIND_OBJECT = 0,
4259 KIND_CLASS_OBJECT = 1,
4260 KIND_ARRAY_1 = 2,
4261 KIND_ARRAY_2 = 3,
4262 KIND_ARRAY_4 = 4,
4263 KIND_ARRAY_8 = 5,
4264 KIND_UNKNOWN = 6,
4265 KIND_NATIVE = 7,
4266};
4267
4268#define HPSG_PARTIAL (1<<7)
4269#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4270
Ian Rogers30fab402012-01-23 15:43:46 -08004271class HeapChunkContext {
4272 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004273 // Maximum chunk size. Obtain this from the formula:
4274 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4275 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004276 : buf_(16384 - 16),
4277 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004278 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004279 Reset();
4280 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004281 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004282 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004283 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004284 }
4285 }
4286
4287 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004288 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004289 Flush();
4290 }
4291 }
4292
Mathieu Chartier36dab362014-07-30 14:59:56 -07004293 void SetChunkOverhead(size_t chunk_overhead) {
4294 chunk_overhead_ = chunk_overhead;
4295 }
4296
4297 void ResetStartOfNextChunk() {
4298 startOfNextMemoryChunk_ = nullptr;
4299 }
4300
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004301 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004302 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004303 return;
4304 }
4305
4306 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004307 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4308 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004309
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004310 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4311 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004312 // [u4]: length of piece, in allocation units
4313 // 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 -08004314 pieceLenField_ = p_;
4315 JDWP::Write4BE(&p_, 0x55555555);
4316 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004317 }
4318
Ian Rogersb726dcb2012-09-05 08:57:23 -07004319 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004320 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004321 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4322 CHECK(needHeader_);
4323 return;
4324 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004325 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004326 CHECK_LE(&buf_[0], pieceLenField_);
4327 CHECK_LE(pieceLenField_, p_);
4328 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004329
Ian Rogers30fab402012-01-23 15:43:46 -08004330 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004331 Reset();
4332 }
4333
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004334 static void HeapChunkJavaCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004335 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4336 Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004337 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes);
4338 }
4339
4340 static void HeapChunkNativeCallback(void* start, void* end, size_t used_bytes, void* arg)
4341 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4342 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004343 }
4344
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004345 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004346 enum { ALLOCATION_UNIT_SIZE = 8 };
4347
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004348 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004349 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004350 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004351 totalAllocationUnits_ = 0;
4352 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004353 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004354 }
4355
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004356 bool IsNative() const {
4357 return type_ == CHUNK_TYPE("NHSG");
4358 }
4359
4360 // Returns true if the object is not an empty chunk.
4361 bool ProcessRecord(void* start, size_t used_bytes) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004362 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4363 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004364 if (used_bytes == 0) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004365 if (start == nullptr) {
4366 // Reset for start of new heap.
4367 startOfNextMemoryChunk_ = nullptr;
4368 Flush();
4369 }
4370 // Only process in use memory so that free region information
4371 // also includes dlmalloc book keeping.
4372 return false;
Elliott Hughesa2155262011-11-16 16:26:58 -08004373 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004374 if (startOfNextMemoryChunk_ != nullptr) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004375 // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because
4376 // of the use of mmaps, so don't report. If not free memory then start a new segment.
4377 bool flush = true;
4378 if (start > startOfNextMemoryChunk_) {
4379 const size_t kMaxFreeLen = 2 * kPageSize;
4380 void* free_start = startOfNextMemoryChunk_;
4381 void* free_end = start;
4382 const size_t free_len =
4383 reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start);
4384 if (!IsNative() || free_len < kMaxFreeLen) {
4385 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative());
4386 flush = false;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004387 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004388 }
4389 if (flush) {
4390 startOfNextMemoryChunk_ = nullptr;
4391 Flush();
4392 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004393 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004394 return true;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004395 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004396
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004397 void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes)
4398 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4399 if (ProcessRecord(start, used_bytes)) {
4400 uint8_t state = ExamineNativeObject(start);
4401 AppendChunk(state, start, used_bytes + chunk_overhead_, true /*is_native*/);
4402 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4403 }
4404 }
4405
4406 void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes)
4407 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
4408 if (ProcessRecord(start, used_bytes)) {
4409 // Determine the type of this chunk.
4410 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4411 // If it's the same, we should combine them.
4412 uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start));
4413 AppendChunk(state, start, used_bytes + chunk_overhead_, false /*is_native*/);
4414 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4415 }
4416 }
4417
4418 void AppendChunk(uint8_t state, void* ptr, size_t length, bool is_native)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004419 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004420 // Make sure there's enough room left in the buffer.
4421 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4422 // 17 bytes for any header.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004423 const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17;
4424 size_t byte_left = &buf_.back() - p_;
4425 if (byte_left < needed) {
4426 if (is_native) {
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004427 // Cannot trigger memory allocation while walking native heap.
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004428 return;
4429 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004430 Flush();
4431 }
4432
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004433 byte_left = &buf_.back() - p_;
4434 if (byte_left < needed) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004435 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4436 << needed << " bytes)";
4437 return;
4438 }
4439 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004440 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004441 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4442 totalAllocationUnits_ += length;
4443 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004444 *p_++ = state | HPSG_PARTIAL;
4445 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004446 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004447 }
Ian Rogers30fab402012-01-23 15:43:46 -08004448 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004449 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004450 }
4451
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004452 uint8_t ExamineNativeObject(const void* p) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4453 return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4454 }
4455
4456 uint8_t ExamineJavaObject(mirror::Object* o)
Ian Rogersef7d42f2014-01-06 12:55:46 -08004457 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004458 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004459 return HPSG_STATE(SOLIDITY_FREE, 0);
4460 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004461 // It's an allocated chunk. Figure out what it is.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004462 gc::Heap* heap = Runtime::Current()->GetHeap();
4463 if (!heap->IsLiveObjectLocked(o)) {
4464 LOG(ERROR) << "Invalid object in managed heap: " << o;
Elliott Hughesa2155262011-11-16 16:26:58 -08004465 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4466 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004467 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004468 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004469 // The object was probably just created but hasn't been initialized yet.
4470 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4471 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004472 if (!heap->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004473 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004474 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4475 }
Mathieu Chartierf26e1b32015-01-29 10:47:10 -08004476 if (c->GetClass() == nullptr) {
4477 LOG(ERROR) << "Null class of class " << c << " for object " << o;
4478 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4479 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004480 if (c->IsClassClass()) {
4481 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4482 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004483 if (c->IsArrayClass()) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004484 switch (c->GetComponentSize()) {
4485 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4486 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4487 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4488 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4489 }
4490 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004491 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4492 }
4493
Ian Rogers30fab402012-01-23 15:43:46 -08004494 std::vector<uint8_t> buf_;
4495 uint8_t* p_;
4496 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004497 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004498 size_t totalAllocationUnits_;
4499 uint32_t type_;
Ian Rogers30fab402012-01-23 15:43:46 -08004500 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004501 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004502
Elliott Hughesa2155262011-11-16 16:26:58 -08004503 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4504};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004505
Mathieu Chartier36dab362014-07-30 14:59:56 -07004506static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
4507 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
4508 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004509 HeapChunkContext::HeapChunkJavaCallback(
Mathieu Chartier36dab362014-07-30 14:59:56 -07004510 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4511}
4512
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004513void Dbg::DdmSendHeapSegments(bool native) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004514 Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen;
4515 Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004516 if (when == HPSG_WHEN_NEVER) {
4517 return;
4518 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004519 // Figure out what kind of chunks we'll be sending.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004520 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS)
4521 << static_cast<int>(what);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004522
4523 // First, send a heap start chunk.
4524 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004525 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004526 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004527 Thread* self = Thread::Current();
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004528 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004529
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004530 // Send a series of heap segment chunks.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004531 HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native);
Elliott Hughesa2155262011-11-16 16:26:58 -08004532 if (native) {
Ian Rogers872dd822014-10-30 11:19:14 -07004533#if defined(HAVE_ANDROID_OS) && defined(USE_DLMALLOC)
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004534 dlmalloc_inspect_all(HeapChunkContext::HeapChunkNativeCallback, &context);
4535 HeapChunkContext::HeapChunkNativeCallback(nullptr, nullptr, 0, &context); // Indicate end of a space.
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004536#else
4537 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4538#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004539 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004540 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004541 for (const auto& space : heap->GetContinuousSpaces()) {
4542 if (space->IsDlMallocSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004543 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004544 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4545 // allocation then the first sizeof(size_t) may belong to it.
4546 context.SetChunkOverhead(sizeof(size_t));
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004547 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004548 } else if (space->IsRosAllocSpace()) {
4549 context.SetChunkOverhead(0);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004550 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4551 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
4552 self->TransitionFromRunnableToSuspended(kSuspended);
4553 ThreadList* tl = Runtime::Current()->GetThreadList();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07004554 tl->SuspendAll(__FUNCTION__);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004555 {
4556 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004557 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004558 }
4559 tl->ResumeAll();
4560 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004561 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004562 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004563 context.SetChunkOverhead(0);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004564 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004565 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004566 } else if (space->IsRegionSpace()) {
4567 heap->IncrementDisableMovingGC(self);
4568 self->TransitionFromRunnableToSuspended(kSuspended);
4569 ThreadList* tl = Runtime::Current()->GetThreadList();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07004570 tl->SuspendAll(__FUNCTION__);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004571 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4572 context.SetChunkOverhead(0);
4573 space->AsRegionSpace()->Walk(BumpPointerSpaceCallback, &context);
4574 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
4575 tl->ResumeAll();
4576 self->TransitionFromSuspendedToRunnable();
4577 heap->DecrementDisableMovingGC(self);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004578 } else {
4579 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004580 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004581 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004582 }
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004583 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004584 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004585 context.SetChunkOverhead(0);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004586 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004587 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004588
4589 // Finally, send a heap end chunk.
4590 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004591}
4592
Elliott Hughesb1a58792013-07-11 18:10:58 -07004593static size_t GetAllocTrackerMax() {
4594#ifdef HAVE_ANDROID_OS
4595 // Check whether there's a system property overriding the number of records.
4596 const char* propertyName = "dalvik.vm.allocTrackerMax";
4597 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4598 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4599 char* end;
4600 size_t value = strtoul(allocRecordMaxString, &end, 10);
4601 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004602 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4603 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004604 return kDefaultNumAllocRecords;
4605 }
4606 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004607 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4608 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004609 return kDefaultNumAllocRecords;
4610 }
4611 return value;
4612 }
4613#endif
4614 return kDefaultNumAllocRecords;
4615}
4616
Brian Carlstrom306db812014-09-05 13:01:41 -07004617void Dbg::SetAllocTrackingEnabled(bool enable) {
4618 Thread* self = Thread::Current();
4619 if (enable) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004620 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004621 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4622 if (recent_allocation_records_ != nullptr) {
4623 return; // Already enabled, bail.
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004624 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004625 alloc_record_max_ = GetAllocTrackerMax();
4626 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4627 << kMaxAllocRecordStackDepth << " frames, taking "
4628 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4629 DCHECK_EQ(alloc_record_head_, 0U);
4630 DCHECK_EQ(alloc_record_count_, 0U);
4631 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4632 CHECK(recent_allocation_records_ != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004633 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004634 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004635 } else {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004636 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004637 ScopedObjectAccess soa(self); // For type_cache_.Clear();
4638 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4639 if (recent_allocation_records_ == nullptr) {
4640 return; // Already disabled, bail.
4641 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07004642 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004643 delete[] recent_allocation_records_;
Ian Rogersc0542af2014-09-03 16:16:56 -07004644 recent_allocation_records_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -07004645 alloc_record_head_ = 0;
4646 alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004647 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004648 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004649 // If an allocation comes in before we uninstrument, we will safely drop it on the floor.
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004650 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004651 }
4652}
4653
Ian Rogers0399dde2012-06-06 17:09:28 -07004654struct AllocRecordStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004655 AllocRecordStackVisitor(Thread* thread, AllocRecord* record_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004656 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004657 : StackVisitor(thread, nullptr), record(record_in), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004658
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004659 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4660 // annotalysis.
4661 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004662 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004663 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004664 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004665 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004666 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004667 record->StackElement(depth)->SetMethod(m);
4668 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004669 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004670 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004671 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004672 }
4673
4674 ~AllocRecordStackVisitor() {
4675 // Clear out any unused stack trace elements.
4676 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004677 record->StackElement(depth)->SetMethod(nullptr);
4678 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004679 }
4680 }
4681
4682 AllocRecord* record;
4683 size_t depth;
4684};
4685
Ian Rogers844506b2014-09-12 19:59:33 -07004686void Dbg::RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004687 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004688 if (recent_allocation_records_ == nullptr) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004689 // In the process of shutting down recording, bail.
Elliott Hughes545a0642011-11-08 19:10:03 -08004690 return;
4691 }
4692
4693 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004694 if (++alloc_record_head_ == alloc_record_max_) {
4695 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004696 }
4697
4698 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004699 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004700 record->SetType(type);
4701 record->SetByteCount(byte_count);
4702 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004703
4704 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004705 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004706 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004707
Ian Rogers719d1a32014-03-06 12:13:39 -08004708 if (alloc_record_count_ < alloc_record_max_) {
4709 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004710 }
4711}
4712
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004713// Returns the index of the head element.
4714//
Brian Carlstrom306db812014-09-05 13:01:41 -07004715// We point at the most-recently-written record, so if alloc_record_count_ is 1
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004716// we want to use the current element. Take "head+1" and subtract count
4717// from it.
4718//
4719// We need to handle underflow in our circular buffer, so we add
Brian Carlstrom306db812014-09-05 13:01:41 -07004720// alloc_record_max_ and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004721size_t Dbg::HeadIndex() {
4722 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4723 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004724}
4725
4726void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004727 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004728 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004729 if (recent_allocation_records_ == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004730 LOG(INFO) << "Not recording tracked allocations";
4731 return;
4732 }
4733
4734 // "i" is the head of the list. We want to start at the end of the
4735 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004736 size_t i = HeadIndex();
Brian Carlstrom306db812014-09-05 13:01:41 -07004737 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4738 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004739
Ian Rogers719d1a32014-03-06 12:13:39 -08004740 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004741 while (count--) {
4742 AllocRecord* record = &recent_allocation_records_[i];
4743
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004744 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4745 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004746
4747 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004748 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4749 mirror::ArtMethod* m = stack_element->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004750 if (m == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004751 break;
4752 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004753 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004754 }
4755
4756 // pause periodically to help logcat catch up
4757 if ((count % 5) == 0) {
4758 usleep(40000);
4759 }
4760
Ian Rogers719d1a32014-03-06 12:13:39 -08004761 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004762 }
4763}
4764
4765class StringTable {
4766 public:
4767 StringTable() {
4768 }
4769
Mathieu Chartier4345c462014-06-27 10:20:14 -07004770 void Add(const std::string& str) {
4771 table_.insert(str);
4772 }
4773
4774 void Add(const char* str) {
4775 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004776 }
4777
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004778 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004779 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004780 if (it == table_.end()) {
4781 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4782 }
4783 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004784 }
4785
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004786 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004787 return table_.size();
4788 }
4789
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004790 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004791 for (const std::string& str : table_) {
4792 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004793 size_t s_len = CountModifiedUtf8Chars(s);
Ian Rogers700a4022014-05-19 16:49:03 -07004794 std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004795 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4796 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004797 }
4798 }
4799
4800 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004801 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004802 DISALLOW_COPY_AND_ASSIGN(StringTable);
4803};
4804
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004805static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004806 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004807 DCHECK(method != nullptr);
4808 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004809 return (source_file != nullptr) ? source_file : "";
4810}
4811
Elliott Hughes545a0642011-11-08 19:10:03 -08004812/*
4813 * The data we send to DDMS contains everything we have recorded.
4814 *
4815 * Message header (all values big-endian):
4816 * (1b) message header len (to allow future expansion); includes itself
4817 * (1b) entry header len
4818 * (1b) stack frame len
4819 * (2b) number of entries
4820 * (4b) offset to string table from start of message
4821 * (2b) number of class name strings
4822 * (2b) number of method name strings
4823 * (2b) number of source file name strings
4824 * For each entry:
4825 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004826 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004827 * (2b) allocated object's class name index
4828 * (1b) stack depth
4829 * For each stack frame:
4830 * (2b) method's class name
4831 * (2b) method name
4832 * (2b) method source file
4833 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4834 * (xb) class name strings
4835 * (xb) method name strings
4836 * (xb) source file strings
4837 *
4838 * As with other DDM traffic, strings are sent as a 4-byte length
4839 * followed by UTF-16 data.
4840 *
4841 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07004842 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004843 * each table, but in practice there should be far fewer.
4844 *
4845 * The chief reason for using a string table here is to keep the size of
4846 * the DDMS message to a minimum. This is partly to make the protocol
4847 * efficient, but also because we have to form the whole thing up all at
4848 * once in a memory buffer.
4849 *
4850 * We use separate string tables for class names, method names, and source
4851 * files to keep the indexes small. There will generally be no overlap
4852 * between the contents of these tables.
4853 */
4854jbyteArray Dbg::GetRecentAllocations() {
Ian Rogerscf7f1912014-10-22 22:06:39 -07004855 if ((false)) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004856 DumpRecentAllocations();
4857 }
4858
Ian Rogers50b35e22012-10-04 10:09:15 -07004859 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004860 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004861 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004862 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004863 //
4864 // Part 1: generate string tables.
4865 //
4866 StringTable class_names;
4867 StringTable method_names;
4868 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004869
Brian Carlstrom306db812014-09-05 13:01:41 -07004870 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4871 uint16_t count = capped_count;
4872 size_t idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004873 while (count--) {
4874 AllocRecord* record = &recent_allocation_records_[idx];
Ian Rogers1ff3c982014-08-12 02:30:58 -07004875 std::string temp;
4876 class_names.Add(record->Type()->GetDescriptor(&temp));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004877 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004878 mirror::ArtMethod* m = record->StackElement(i)->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004879 if (m != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004880 class_names.Add(m->GetDeclaringClassDescriptor());
4881 method_names.Add(m->GetName());
4882 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004883 }
4884 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004885
Ian Rogers719d1a32014-03-06 12:13:39 -08004886 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004887 }
4888
Brian Carlstrom306db812014-09-05 13:01:41 -07004889 LOG(INFO) << "allocation records: " << capped_count;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004890
4891 //
4892 // Part 2: Generate the output and store it in the buffer.
4893 //
4894
4895 // (1b) message header len (to allow future expansion); includes itself
4896 // (1b) entry header len
4897 // (1b) stack frame len
4898 const int kMessageHeaderLen = 15;
4899 const int kEntryHeaderLen = 9;
4900 const int kStackFrameLen = 8;
4901 JDWP::Append1BE(bytes, kMessageHeaderLen);
4902 JDWP::Append1BE(bytes, kEntryHeaderLen);
4903 JDWP::Append1BE(bytes, kStackFrameLen);
4904
4905 // (2b) number of entries
4906 // (4b) offset to string table from start of message
4907 // (2b) number of class name strings
4908 // (2b) number of method name strings
4909 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07004910 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004911 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004912 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004913 JDWP::Append2BE(bytes, class_names.Size());
4914 JDWP::Append2BE(bytes, method_names.Size());
4915 JDWP::Append2BE(bytes, filenames.Size());
4916
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004917 idx = HeadIndex();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004918 std::string temp;
Brian Carlstrom306db812014-09-05 13:01:41 -07004919 for (count = capped_count; count != 0; --count) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004920 // For each entry:
4921 // (4b) total allocation size
4922 // (2b) thread id
4923 // (2b) allocated object's class name index
4924 // (1b) stack depth
4925 AllocRecord* record = &recent_allocation_records_[idx];
4926 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004927 size_t allocated_object_class_name_index =
Ian Rogers1ff3c982014-08-12 02:30:58 -07004928 class_names.IndexOf(record->Type()->GetDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004929 JDWP::Append4BE(bytes, record->ByteCount());
4930 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004931 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4932 JDWP::Append1BE(bytes, stack_depth);
4933
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004934 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4935 // For each stack frame:
4936 // (2b) method's class name
4937 // (2b) method name
4938 // (2b) method source file
4939 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004940 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004941 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4942 size_t method_name_index = method_names.IndexOf(m->GetName());
4943 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004944 JDWP::Append2BE(bytes, class_name_index);
4945 JDWP::Append2BE(bytes, method_name_index);
4946 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004947 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004948 }
Ian Rogers719d1a32014-03-06 12:13:39 -08004949 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004950 }
4951
4952 // (xb) class name strings
4953 // (xb) method name strings
4954 // (xb) source file strings
4955 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4956 class_names.WriteTo(bytes);
4957 method_names.WriteTo(bytes);
4958 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004959 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004960 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004961 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07004962 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004963 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4964 }
4965 return result;
4966}
4967
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07004968mirror::ArtMethod* DeoptimizationRequest::Method() const {
4969 ScopedObjectAccessUnchecked soa(Thread::Current());
4970 return soa.DecodeMethod(method_);
4971}
4972
4973void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
4974 ScopedObjectAccessUnchecked soa(Thread::Current());
4975 method_ = soa.EncodeMethod(m);
4976}
4977
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004978} // namespace art