blob: 6296cf5c689e52122a74de4bbc741083593847c8 [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.
310static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800311static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700312
Elliott Hughes47fce012011-10-25 18:37:19 -0700313static bool gDdmThreadNotification = false;
314
Elliott Hughes767a1472011-10-26 18:49:02 -0700315// DDMS GC-related settings.
316static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
317static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
318static Dbg::HpsgWhat gDdmHpsgWhat;
319static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
320static Dbg::HpsgWhat gDdmNhsgWhat;
321
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 Hertz7ec2f1c2014-03-27 20:06:47 +0100334size_t Dbg::delayed_full_undeoptimization_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100335
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200336// Instrumentation event reference counters.
337size_t Dbg::dex_pc_change_event_ref_count_ = 0;
338size_t Dbg::method_enter_event_ref_count_ = 0;
339size_t Dbg::method_exit_event_ref_count_ = 0;
340size_t Dbg::field_read_event_ref_count_ = 0;
341size_t Dbg::field_write_event_ref_count_ = 0;
342size_t Dbg::exception_catch_event_ref_count_ = 0;
343uint32_t Dbg::instrumentation_events_ = 0;
344
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100345// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800346static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800347
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800348void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) {
Sebastien Hertz1558b572015-02-25 15:05:59 +0100349 receiver.VisitRootIfNonNull(callback, arg, root_info); // null for static method call.
350 klass.VisitRoot(callback, arg, root_info);
351 method.VisitRoot(callback, arg, root_info);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200352}
353
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800354void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100355 if (method_ != nullptr) {
356 callback(reinterpret_cast<mirror::Object**>(&method_), arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700357 }
358}
359
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100360void SingleStepControl::AddDexPc(uint32_t dex_pc) {
361 dex_pcs_.insert(dex_pc);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200362}
363
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100364bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
365 return dex_pcs_.find(dex_pc) == dex_pcs_.end();
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200366}
367
Brian Carlstromea46f952013-07-30 01:26:50 -0700368static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800369 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700370 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzed2be172014-08-19 15:33:43 +0200371 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100372 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700373 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
Elliott Hughes86964332012-02-15 19:37:42 -0800374 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
375 return true;
376 }
377 }
378 return false;
379}
380
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100381static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
382 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800383 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
384 // A thread may be suspended for GC; in this code, we really want to know whether
385 // there's a debugger suspension active.
386 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
387}
388
Ian Rogersc0542af2014-09-03 16:16:56 -0700389static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700390 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200391 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700392 if (o == nullptr) {
393 *error = JDWP::ERR_INVALID_OBJECT;
394 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800395 }
396 if (!o->IsArrayInstance()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700397 *error = JDWP::ERR_INVALID_ARRAY;
398 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800399 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700400 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800401 return o->AsArray();
402}
403
Ian Rogersc0542af2014-09-03 16:16:56 -0700404static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700405 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200406 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700407 if (o == nullptr) {
408 *error = JDWP::ERR_INVALID_OBJECT;
409 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800410 }
411 if (!o->IsClass()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700412 *error = JDWP::ERR_INVALID_CLASS;
413 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800414 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700415 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800416 return o->AsClass();
417}
418
Ian Rogersc0542af2014-09-03 16:16:56 -0700419static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
420 JDWP::JdwpError* error)
jeffhaoa77f0f62012-12-05 17:19:31 -0800421 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700422 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
423 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200424 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700425 if (thread_peer == nullptr) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800426 // This isn't even an object.
Ian Rogersc0542af2014-09-03 16:16:56 -0700427 *error = JDWP::ERR_INVALID_OBJECT;
428 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800429 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800430
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800431 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800432 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
433 // This isn't a thread.
Ian Rogersc0542af2014-09-03 16:16:56 -0700434 *error = JDWP::ERR_INVALID_THREAD;
435 return nullptr;
Elliott Hughes221229c2013-01-08 18:17:50 -0800436 }
437
Ian Rogersc0542af2014-09-03 16:16:56 -0700438 Thread* thread = Thread::FromManagedThread(soa, thread_peer);
439 // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a
440 // zombie.
441 *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE;
442 return thread;
Elliott Hughes436e3722012-02-17 20:01:47 -0800443}
444
Elliott Hughes24437992011-11-30 14:49:33 -0800445static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
446 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
447 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
448 return static_cast<JDWP::JdwpTag>(descriptor[0]);
449}
450
Ian Rogers1ff3c982014-08-12 02:30:58 -0700451static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
452 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
453 std::string temp;
454 const char* descriptor = klass->GetDescriptor(&temp);
455 return BasicTagFromDescriptor(descriptor);
456}
457
Ian Rogers98379392014-02-24 16:53:16 -0800458static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700459 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700460 CHECK(c != nullptr);
Elliott Hughes24437992011-11-30 14:49:33 -0800461 if (c->IsArrayClass()) {
462 return JDWP::JT_ARRAY;
463 }
Elliott Hughes24437992011-11-30 14:49:33 -0800464 if (c->IsStringClass()) {
465 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800466 }
Ian Rogers98379392014-02-24 16:53:16 -0800467 if (c->IsClassClass()) {
468 return JDWP::JT_CLASS_OBJECT;
469 }
470 {
471 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
472 if (thread_class->IsAssignableFrom(c)) {
473 return JDWP::JT_THREAD;
474 }
475 }
476 {
477 mirror::Class* thread_group_class =
478 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
479 if (thread_group_class->IsAssignableFrom(c)) {
480 return JDWP::JT_THREAD_GROUP;
481 }
482 }
483 {
484 mirror::Class* class_loader_class =
485 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
486 if (class_loader_class->IsAssignableFrom(c)) {
487 return JDWP::JT_CLASS_LOADER;
488 }
489 }
490 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800491}
492
493/*
494 * Objects declared to hold Object might actually hold a more specific
495 * type. The debugger may take a special interest in these (e.g. it
496 * wants to display the contents of Strings), so we want to return an
497 * appropriate tag.
498 *
499 * Null objects are tagged JT_OBJECT.
500 */
Sebastien Hertz6995c602014-09-09 12:10:13 +0200501JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700502 return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800503}
504
505static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
506 switch (tag) {
507 case JDWP::JT_BOOLEAN:
508 case JDWP::JT_BYTE:
509 case JDWP::JT_CHAR:
510 case JDWP::JT_FLOAT:
511 case JDWP::JT_DOUBLE:
512 case JDWP::JT_INT:
513 case JDWP::JT_LONG:
514 case JDWP::JT_SHORT:
515 case JDWP::JT_VOID:
516 return true;
517 default:
518 return false;
519 }
520}
521
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100522void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700523 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700524 // No JDWP for you!
525 return;
526 }
527
Ian Rogers719d1a32014-03-06 12:13:39 -0800528 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700529 gRegistry = new ObjectRegistry;
530
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700531 // Init JDWP if the debugger is enabled. This may connect out to a
532 // debugger, passively listen for a debugger, or block waiting for a
533 // debugger.
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100534 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
Ian Rogersc0542af2014-09-03 16:16:56 -0700535 if (gJdwpState == nullptr) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800536 // We probably failed because some other process has the port already, which means that
537 // if we don't abort the user is likely to think they're talking to us when they're actually
538 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800539 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700540 }
541
542 // If a debugger has already attached, send the "welcome" message.
543 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700544 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700545 ScopedObjectAccess soa(Thread::Current());
Sebastien Hertz7d955652014-10-22 10:57:10 +0200546 gJdwpState->PostVMStart();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700547 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700548}
549
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700550void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200551 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
552 // destruction of gJdwpState).
553 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
554 gJdwpState->PostVMDeath();
555 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100556 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
557 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700558 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800559 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700560 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800561 gRegistry = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700562}
563
Elliott Hughes767a1472011-10-26 18:49:02 -0700564void Dbg::GcDidFinish() {
565 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700566 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700567 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700568 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700569 }
570 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700571 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700572 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700573 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700574 }
575 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700576 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700577 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700578 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700579 }
580}
581
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700582void Dbg::SetJdwpAllowed(bool allowed) {
583 gJdwpAllowed = allowed;
584}
585
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700586DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700587 return Thread::Current()->GetInvokeReq();
588}
589
590Thread* Dbg::GetDebugThread() {
Ian Rogersc0542af2014-09-03 16:16:56 -0700591 return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700592}
593
594void Dbg::ClearWaitForEventThread() {
Sebastien Hertz2bf93f42015-01-09 18:44:05 +0100595 gJdwpState->ReleaseJdwpTokenForEvent();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700596}
597
598void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700599 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800600 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700601 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800602 gDisposed = false;
603}
604
605void Dbg::Disposed() {
606 gDisposed = true;
607}
608
609bool Dbg::IsDisposed() {
610 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700611}
612
Sebastien Hertzf3928792014-11-17 19:00:37 +0100613bool Dbg::RequiresDeoptimization() {
614 // We don't need deoptimization if everything runs with interpreter after
615 // enabling -Xint mode.
616 return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly();
617}
618
Elliott Hughesa2155262011-11-16 16:26:58 -0800619void Dbg::GoActive() {
620 // Enable all debugging features, including scans for breakpoints.
621 // This is a no-op if we're already active.
622 // Only called from the JDWP handler thread.
623 if (gDebuggerActive) {
624 return;
625 }
626
Elliott Hughesc0f09332012-03-26 13:27:06 -0700627 {
628 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Sebastien Hertzed2be172014-08-19 15:33:43 +0200629 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700630 CHECK_EQ(gBreakpoints.size(), 0U);
631 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800632
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100633 {
Brian Carlstrom306db812014-09-05 13:01:41 -0700634 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100635 CHECK_EQ(deoptimization_requests_.size(), 0U);
636 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100637 CHECK_EQ(delayed_full_undeoptimization_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200638 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
639 CHECK_EQ(method_enter_event_ref_count_, 0U);
640 CHECK_EQ(method_exit_event_ref_count_, 0U);
641 CHECK_EQ(field_read_event_ref_count_, 0U);
642 CHECK_EQ(field_write_event_ref_count_, 0U);
643 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100644 }
645
Ian Rogers62d6c772013-02-27 08:32:07 -0800646 Runtime* runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700647 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800648 Thread* self = Thread::Current();
649 ThreadState old_state = self->SetStateUnsafe(kRunnable);
650 CHECK_NE(old_state, kRunnable);
Sebastien Hertzf3928792014-11-17 19:00:37 +0100651 if (RequiresDeoptimization()) {
652 runtime->GetInstrumentation()->EnableDeoptimization();
653 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200654 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800655 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800656 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
657 runtime->GetThreadList()->ResumeAll();
658
659 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700660}
661
662void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700663 CHECK(gDebuggerConnected);
664
Elliott Hughesc0f09332012-03-26 13:27:06 -0700665 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700666
Ian Rogers62d6c772013-02-27 08:32:07 -0800667 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
668 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
669 // and clear the object registry.
670 Runtime* runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700671 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800672 Thread* self = Thread::Current();
673 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100674
675 // Debugger may not be active at this point.
676 if (gDebuggerActive) {
677 {
678 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
679 // This prevents us from having any pending deoptimization request when the debugger attaches
680 // to us again while no event has been requested yet.
Brian Carlstrom306db812014-09-05 13:01:41 -0700681 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100682 deoptimization_requests_.clear();
683 full_deoptimization_event_count_ = 0U;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100684 delayed_full_undeoptimization_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100685 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200686 if (instrumentation_events_ != 0) {
687 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
688 instrumentation_events_);
689 instrumentation_events_ = 0;
690 }
Sebastien Hertzf3928792014-11-17 19:00:37 +0100691 if (RequiresDeoptimization()) {
692 runtime->GetInstrumentation()->DisableDeoptimization();
693 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100694 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100695 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800696 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
697 runtime->GetThreadList()->ResumeAll();
Sebastien Hertz55f65342015-01-13 22:48:34 +0100698
699 {
700 ScopedObjectAccess soa(self);
701 gRegistry->Clear();
702 }
703
704 gDebuggerConnected = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700705}
706
Elliott Hughesc0f09332012-03-26 13:27:06 -0700707bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700708 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700709}
710
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100711void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) {
712 CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown);
713 gJdwpOptions = jdwp_options;
714 gJdwpConfigured = true;
715}
716
Elliott Hughesc0f09332012-03-26 13:27:06 -0700717bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700718 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700719}
720
721int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800722 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700723}
724
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700725void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700726 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700727}
728
Elliott Hughes88d63092013-01-09 09:55:54 -0800729std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700730 JDWP::JdwpError error;
731 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error);
732 if (o == nullptr) {
733 if (error == JDWP::ERR_NONE) {
734 return "NULL";
735 } else {
736 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
737 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800738 }
739 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700740 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800741 }
Sebastien Hertz6995c602014-09-09 12:10:13 +0200742 return GetClassName(o->AsClass());
743}
744
745std::string Dbg::GetClassName(mirror::Class* klass) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200746 if (klass == nullptr) {
747 return "NULL";
748 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700749 std::string temp;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200750 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700751}
752
Ian Rogersc0542af2014-09-03 16:16:56 -0700753JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800754 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700755 mirror::Class* c = DecodeClass(id, &status);
756 if (c == nullptr) {
757 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800758 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800759 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700760 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800761 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800762}
763
Ian Rogersc0542af2014-09-03 16:16:56 -0700764JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800765 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700766 mirror::Class* c = DecodeClass(id, &status);
767 if (c == nullptr) {
768 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800769 return status;
770 }
771 if (c->IsInterface()) {
772 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700773 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800774 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700775 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800776 }
777 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700778}
779
Elliott Hughes436e3722012-02-17 20:01:47 -0800780JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700781 JDWP::JdwpError error;
782 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
783 if (o == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800784 return JDWP::ERR_INVALID_OBJECT;
785 }
786 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
787 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700788}
789
Elliott Hughes436e3722012-02-17 20:01:47 -0800790JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700791 JDWP::JdwpError error;
792 mirror::Class* c = DecodeClass(id, &error);
793 if (c == nullptr) {
794 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800795 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800796
797 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
798
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700799 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
800 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800801 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700802 if ((access_flags & kAccInterface) == 0) {
803 access_flags |= kAccSuper;
804 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800805
806 expandBufAdd4BE(pReply, access_flags);
807
808 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700809}
810
Ian Rogersc0542af2014-09-03 16:16:56 -0700811JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
812 JDWP::JdwpError error;
813 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
814 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800815 return JDWP::ERR_INVALID_OBJECT;
816 }
817
818 // Ensure all threads are suspended while we read objects' lock words.
819 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100820 CHECK_EQ(self->GetState(), kRunnable);
821 self->TransitionFromRunnableToSuspended(kSuspended);
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700822 Runtime::Current()->GetThreadList()->SuspendAll(__FUNCTION__);
Elliott Hughesf327e072013-01-09 16:01:26 -0800823
824 MonitorInfo monitor_info(o);
825
Sebastien Hertz54263242014-03-19 18:16:50 +0100826 Runtime::Current()->GetThreadList()->ResumeAll();
827 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800828
Ian Rogersc0542af2014-09-03 16:16:56 -0700829 if (monitor_info.owner_ != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700830 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800831 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700832 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800833 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700834 expandBufAdd4BE(reply, monitor_info.entry_count_);
835 expandBufAdd4BE(reply, monitor_info.waiters_.size());
836 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
837 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800838 }
839 return JDWP::ERR_NONE;
840}
841
Elliott Hughes734b8c62013-01-11 15:32:45 -0800842JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700843 std::vector<JDWP::ObjectId>* monitors,
844 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800845 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700846 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700847 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700848 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800849 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700850 : StackVisitor(thread, context), current_stack_depth(0),
851 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800852
853 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
854 // annotalysis.
855 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
856 if (!GetMethod()->IsRuntimeMethod()) {
857 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800858 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800859 }
860 return true;
861 }
862
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700863 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
864 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800865 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700866 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700867 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800868 }
869
Elliott Hughes734b8c62013-01-11 15:32:45 -0800870 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700871 std::vector<JDWP::ObjectId>* const monitors;
872 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800873 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800874
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700875 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700876 Thread* thread;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700877 {
878 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700879 JDWP::JdwpError error;
880 thread = DecodeThread(soa, thread_id, &error);
881 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700882 return error;
883 }
884 if (!IsSuspendedForDebugger(soa, thread)) {
885 return JDWP::ERR_THREAD_NOT_SUSPENDED;
886 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700887 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700888 std::unique_ptr<Context> context(Context::Create());
Ian Rogersc0542af2014-09-03 16:16:56 -0700889 OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700890 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800891 return JDWP::ERR_NONE;
892}
893
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100894JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700895 JDWP::ObjectId* contended_monitor) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700896 mirror::Object* contended_monitor_obj;
Elliott Hughesf9501702013-01-11 11:22:27 -0800897 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -0700898 *contended_monitor = 0;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700899 {
900 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700901 JDWP::JdwpError error;
902 Thread* thread = DecodeThread(soa, thread_id, &error);
903 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700904 return error;
905 }
906 if (!IsSuspendedForDebugger(soa, thread)) {
907 return JDWP::ERR_THREAD_NOT_SUSPENDED;
908 }
909 contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Elliott Hughesf9501702013-01-11 11:22:27 -0800910 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700911 // Add() requires the thread_list_lock_ not held to avoid the lock
912 // level violation.
Ian Rogersc0542af2014-09-03 16:16:56 -0700913 *contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -0800914 return JDWP::ERR_NONE;
915}
916
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800917JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -0700918 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800919 gc::Heap* heap = Runtime::Current()->GetHeap();
920 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800921 std::vector<mirror::Class*> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700922 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800923 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700924 JDWP::JdwpError error;
925 mirror::Class* c = DecodeClass(class_ids[i], &error);
926 if (c == nullptr) {
927 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800928 }
929 classes.push_back(c);
Ian Rogersc0542af2014-09-03 16:16:56 -0700930 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800931 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700932 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800933 return JDWP::ERR_NONE;
934}
935
Ian Rogersc0542af2014-09-03 16:16:56 -0700936JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
937 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800938 gc::Heap* heap = Runtime::Current()->GetHeap();
939 // We only want reachable instances, so do a GC.
940 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700941 JDWP::JdwpError error;
942 mirror::Class* c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800943 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700944 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800945 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800946 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800947 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
948 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700949 instances->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes3b78c942013-01-15 17:35:41 -0800950 }
951 return JDWP::ERR_NONE;
952}
953
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800954JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700955 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800956 gc::Heap* heap = Runtime::Current()->GetHeap();
957 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700958 JDWP::JdwpError error;
959 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
960 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800961 return JDWP::ERR_INVALID_OBJECT;
962 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800963 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800964 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800965 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700966 referring_objects->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800967 }
968 return JDWP::ERR_NONE;
969}
970
Ian Rogersc0542af2014-09-03 16:16:56 -0700971JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
972 JDWP::JdwpError error;
973 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
974 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100975 return JDWP::ERR_INVALID_OBJECT;
976 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800977 gRegistry->DisableCollection(object_id);
978 return JDWP::ERR_NONE;
979}
980
Ian Rogersc0542af2014-09-03 16:16:56 -0700981JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
982 JDWP::JdwpError error;
983 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +0100984 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
985 // also ignores these cases and never return an error. However it's not obvious why this command
986 // should behave differently from DisableCollection and IsCollected commands. So let's be more
987 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -0700988 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100989 return JDWP::ERR_INVALID_OBJECT;
990 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800991 gRegistry->EnableCollection(object_id);
992 return JDWP::ERR_NONE;
993}
994
Ian Rogersc0542af2014-09-03 16:16:56 -0700995JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
996 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100997 if (object_id == 0) {
998 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +0100999 return JDWP::ERR_INVALID_OBJECT;
1000 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001001 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1002 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -07001003 JDWP::JdwpError error;
1004 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1005 if (o != nullptr) {
1006 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001007 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001008 return JDWP::ERR_NONE;
1009}
1010
Ian Rogersc0542af2014-09-03 16:16:56 -07001011void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001012 gRegistry->DisposeObject(object_id, reference_count);
1013}
1014
Sebastien Hertz6995c602014-09-09 12:10:13 +02001015JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001016 DCHECK(klass != nullptr);
1017 if (klass->IsArrayClass()) {
1018 return JDWP::TT_ARRAY;
1019 } else if (klass->IsInterface()) {
1020 return JDWP::TT_INTERFACE;
1021 } else {
1022 return JDWP::TT_CLASS;
1023 }
1024}
1025
Elliott Hughes88d63092013-01-09 09:55:54 -08001026JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001027 JDWP::JdwpError error;
1028 mirror::Class* c = DecodeClass(class_id, &error);
1029 if (c == nullptr) {
1030 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001031 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001032
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001033 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1034 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001035 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001036 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001037}
1038
Ian Rogersc0542af2014-09-03 16:16:56 -07001039void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001040 // Get the complete list of reference classes (i.e. all classes except
1041 // the primitive types).
1042 // Returns a newly-allocated buffer full of RefTypeId values.
1043 struct ClassListCreator {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001044 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes_in) : classes(classes_in) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001045 }
1046
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001047 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001048 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1049 }
1050
Elliott Hughes64f574f2013-02-20 14:57:12 -08001051 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1052 // annotalysis.
1053 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001054 if (!c->IsPrimitive()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001055 classes->push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001056 }
1057 return true;
1058 }
1059
Ian Rogersc0542af2014-09-03 16:16:56 -07001060 std::vector<JDWP::RefTypeId>* const classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001061 };
1062
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001063 ClassListCreator clc(classes);
Sebastien Hertz4537c412014-08-28 14:41:50 +02001064 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(ClassListCreator::Visit,
1065 &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001066}
1067
Ian Rogers1ff3c982014-08-12 02:30:58 -07001068JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1069 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001070 JDWP::JdwpError error;
1071 mirror::Class* c = DecodeClass(class_id, &error);
1072 if (c == nullptr) {
1073 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001074 }
1075
Elliott Hughesa2155262011-11-16 16:26:58 -08001076 if (c->IsArrayClass()) {
1077 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1078 *pTypeTag = JDWP::TT_ARRAY;
1079 } else {
1080 if (c->IsErroneous()) {
1081 *pStatus = JDWP::CS_ERROR;
1082 } else {
1083 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1084 }
1085 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1086 }
1087
Ian Rogersc0542af2014-09-03 16:16:56 -07001088 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001089 std::string temp;
1090 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001091 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001092 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001093}
1094
Ian Rogersc0542af2014-09-03 16:16:56 -07001095void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001096 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001097 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001098 ids->clear();
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001099 for (size_t i = 0; i < classes.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001100 ids->push_back(gRegistry->Add(classes[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001101 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001102}
1103
Ian Rogersc0542af2014-09-03 16:16:56 -07001104JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1105 JDWP::JdwpError error;
1106 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1107 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001108 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001109 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001110
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001111 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001112 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001113
1114 expandBufAdd1(pReply, type_tag);
1115 expandBufAddRefTypeId(pReply, type_id);
1116
1117 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001118}
1119
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001120JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001121 JDWP::JdwpError error;
1122 mirror::Class* c = DecodeClass(class_id, &error);
1123 if (c == nullptr) {
1124 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001125 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001126 std::string temp;
1127 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001128 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001129}
1130
Ian Rogersc0542af2014-09-03 16:16:56 -07001131JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1132 JDWP::JdwpError error;
1133 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001134 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001135 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001136 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001137 const char* source_file = c->GetSourceFile();
1138 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001139 return JDWP::ERR_ABSENT_INFORMATION;
1140 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001141 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001142 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001143}
1144
Ian Rogersc0542af2014-09-03 16:16:56 -07001145JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001146 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001147 JDWP::JdwpError error;
1148 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1149 if (error != JDWP::ERR_NONE) {
1150 *tag = JDWP::JT_VOID;
1151 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001152 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001153 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001154 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001155}
1156
Elliott Hughesaed4be92011-12-02 16:16:23 -08001157size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001158 switch (tag) {
1159 case JDWP::JT_VOID:
1160 return 0;
1161 case JDWP::JT_BYTE:
1162 case JDWP::JT_BOOLEAN:
1163 return 1;
1164 case JDWP::JT_CHAR:
1165 case JDWP::JT_SHORT:
1166 return 2;
1167 case JDWP::JT_FLOAT:
1168 case JDWP::JT_INT:
1169 return 4;
1170 case JDWP::JT_ARRAY:
1171 case JDWP::JT_OBJECT:
1172 case JDWP::JT_STRING:
1173 case JDWP::JT_THREAD:
1174 case JDWP::JT_THREAD_GROUP:
1175 case JDWP::JT_CLASS_LOADER:
1176 case JDWP::JT_CLASS_OBJECT:
1177 return sizeof(JDWP::ObjectId);
1178 case JDWP::JT_DOUBLE:
1179 case JDWP::JT_LONG:
1180 return 8;
1181 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001182 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001183 return -1;
1184 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001185}
1186
Ian Rogersc0542af2014-09-03 16:16:56 -07001187JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1188 JDWP::JdwpError error;
1189 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1190 if (a == nullptr) {
1191 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001192 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001193 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001194 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001195}
1196
Elliott Hughes88d63092013-01-09 09:55:54 -08001197JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001198 JDWP::JdwpError error;
1199 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001200 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001201 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001202 }
Elliott Hughes24437992011-11-30 14:49:33 -08001203
1204 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1205 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001206 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001207 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001208 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1209 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001210 expandBufAdd4BE(pReply, count);
1211
Ian Rogers1ff3c982014-08-12 02:30:58 -07001212 if (IsPrimitiveTag(element_tag)) {
1213 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001214 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1215 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001216 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001217 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1218 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001219 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001220 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1221 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001222 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001223 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1224 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001225 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001226 memcpy(dst, &src[offset * width], count * width);
1227 }
1228 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001229 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001230 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001231 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001232 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001233 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001234 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001235 expandBufAdd1(pReply, specific_tag);
1236 expandBufAddObjectId(pReply, gRegistry->Add(element));
1237 }
1238 }
1239
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001240 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001241}
1242
Ian Rogersef7d42f2014-01-06 12:55:46 -08001243template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001244static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001245 NO_THREAD_SAFETY_ANALYSIS {
1246 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001247 DCHECK(a->GetClass()->IsPrimitiveArray());
1248
Ian Rogersef7d42f2014-01-06 12:55:46 -08001249 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001250 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001251 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001252 }
1253}
1254
Elliott Hughes88d63092013-01-09 09:55:54 -08001255JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001256 JDWP::Request* request) {
1257 JDWP::JdwpError error;
1258 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1259 if (dst == nullptr) {
1260 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001261 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001262
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001263 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001264 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001265 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001266 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001267 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001268
Ian Rogers1ff3c982014-08-12 02:30:58 -07001269 if (IsPrimitiveTag(element_tag)) {
1270 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001271 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001272 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001273 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001274 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001275 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001276 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001277 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001278 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001279 }
1280 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001281 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001282 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001283 JDWP::ObjectId id = request->ReadObjectId();
Ian Rogersc0542af2014-09-03 16:16:56 -07001284 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1285 if (error != JDWP::ERR_NONE) {
1286 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001287 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001288 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001289 }
1290 }
1291
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001292 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001293}
1294
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001295JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001296 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001297}
1298
Ian Rogersc0542af2014-09-03 16:16:56 -07001299JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object) {
1300 JDWP::JdwpError error;
1301 mirror::Class* c = DecodeClass(class_id, &error);
1302 if (c == nullptr) {
1303 *new_object = 0;
1304 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001305 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001306 *new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001307 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001308}
1309
Elliott Hughesbf13d362011-12-08 15:51:37 -08001310/*
1311 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1312 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001313JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogersc0542af2014-09-03 16:16:56 -07001314 JDWP::ObjectId* new_array) {
1315 JDWP::JdwpError error;
1316 mirror::Class* c = DecodeClass(array_class_id, &error);
1317 if (c == nullptr) {
1318 *new_array = 0;
1319 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001320 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001321 *new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -07001322 c->GetComponentSizeShift(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001323 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001324 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001325}
1326
Sebastien Hertz6995c602014-09-09 12:10:13 +02001327JDWP::FieldId Dbg::ToFieldId(const mirror::ArtField* f) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001328 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001329 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001330}
1331
Brian Carlstromea46f952013-07-30 01:26:50 -07001332static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001333 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001334 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001335 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001336}
1337
Brian Carlstromea46f952013-07-30 01:26:50 -07001338static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001339 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001340 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001341 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001342}
1343
Brian Carlstromea46f952013-07-30 01:26:50 -07001344static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001345 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001346 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001347 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001348}
1349
Sebastien Hertz6995c602014-09-09 12:10:13 +02001350bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1351 CHECK(event_thread != nullptr);
1352 JDWP::JdwpError error;
1353 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(expected_thread_id,
1354 &error);
1355 return expected_thread_peer == event_thread->GetPeer();
1356}
1357
1358bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1359 const JDWP::EventLocation& event_location) {
1360 if (expected_location.dex_pc != event_location.dex_pc) {
1361 return false;
1362 }
1363 mirror::ArtMethod* m = FromMethodId(expected_location.method_id);
1364 return m == event_location.method;
1365}
1366
1367bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001368 if (event_class == nullptr) {
1369 return false;
1370 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02001371 JDWP::JdwpError error;
1372 mirror::Class* expected_class = DecodeClass(class_id, &error);
1373 CHECK(expected_class != nullptr);
1374 return expected_class->IsAssignableFrom(event_class);
1375}
1376
1377bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
1378 mirror::ArtField* event_field) {
1379 mirror::ArtField* expected_field = FromFieldId(expected_field_id);
1380 if (expected_field != event_field) {
1381 return false;
1382 }
1383 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1384}
1385
1386bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1387 JDWP::JdwpError error;
1388 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error);
1389 return modifier_instance == event_instance;
1390}
1391
1392void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001393 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001394 if (m == nullptr) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001395 memset(location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001396 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001397 mirror::Class* c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001398 location->type_tag = GetTypeTag(c);
1399 location->class_id = gRegistry->AddRefType(c);
1400 location->method_id = ToMethodId(m);
1401 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001402 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001403}
1404
Ian Rogersc0542af2014-09-03 16:16:56 -07001405std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001406 mirror::ArtMethod* m = FromMethodId(method_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001407 if (m == nullptr) {
1408 return "NULL";
1409 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001410 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001411}
1412
Ian Rogersc0542af2014-09-03 16:16:56 -07001413std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001414 mirror::ArtField* f = FromFieldId(field_id);
1415 if (f == nullptr) {
1416 return "NULL";
1417 }
1418 return f->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001419}
1420
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001421/*
1422 * Augment the access flags for synthetic methods and fields by setting
1423 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1424 * flags not specified by the Java programming language.
1425 */
1426static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1427 accessFlags &= kAccJavaFlagsMask;
1428 if ((accessFlags & kAccSynthetic) != 0) {
1429 accessFlags |= 0xf0000000;
1430 }
1431 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001432}
1433
Elliott Hughesdbb40792011-11-18 17:05:22 -08001434/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001435 * Circularly shifts registers so that arguments come first. Debuggers
1436 * expect slots to begin with arguments, but dex code places them at
1437 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001438 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001439static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1440 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001441 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001442 if (code_item == nullptr) {
1443 // We should not get here for a method without code (native, proxy or abstract). Log it and
1444 // return the slot as is since all registers are arguments.
1445 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1446 return slot;
1447 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001448 uint16_t ins_size = code_item->ins_size_;
1449 uint16_t locals_size = code_item->registers_size_ - ins_size;
1450 if (slot >= locals_size) {
1451 return slot - locals_size;
1452 } else {
1453 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001454 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001455}
1456
Jeff Haob7cefc72013-11-14 14:51:09 -08001457/*
1458 * Circularly shifts registers so that arguments come last. Reverts
1459 * slots to dex style argument placement.
1460 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001461static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001462 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001463 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001464 if (code_item == nullptr) {
1465 // We should not get here for a method without code (native, proxy or abstract). Log it and
1466 // return the slot as is since all registers are arguments.
1467 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1468 return slot;
1469 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001470 uint16_t ins_size = code_item->ins_size_;
1471 uint16_t locals_size = code_item->registers_size_ - ins_size;
1472 if (slot < ins_size) {
1473 return slot + locals_size;
1474 } else {
1475 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001476 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001477}
1478
Elliott Hughes88d63092013-01-09 09:55:54 -08001479JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001480 JDWP::JdwpError error;
1481 mirror::Class* c = DecodeClass(class_id, &error);
1482 if (c == nullptr) {
1483 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001484 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001485
1486 size_t instance_field_count = c->NumInstanceFields();
1487 size_t static_field_count = c->NumStaticFields();
1488
1489 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1490
1491 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001492 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001493 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001494 expandBufAddUtf8String(pReply, f->GetName());
1495 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001496 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001497 static const char genericSignature[1] = "";
1498 expandBufAddUtf8String(pReply, genericSignature);
1499 }
1500 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1501 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001502 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001503}
1504
Elliott Hughes88d63092013-01-09 09:55:54 -08001505JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001506 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001507 JDWP::JdwpError error;
1508 mirror::Class* c = DecodeClass(class_id, &error);
1509 if (c == nullptr) {
1510 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001511 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001512
1513 size_t direct_method_count = c->NumDirectMethods();
1514 size_t virtual_method_count = c->NumVirtualMethods();
1515
1516 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1517
1518 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001519 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001520 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001521 expandBufAddUtf8String(pReply, m->GetName());
1522 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001523 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001524 static const char genericSignature[1] = "";
1525 expandBufAddUtf8String(pReply, genericSignature);
1526 }
1527 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1528 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001529 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001530}
1531
Elliott Hughes88d63092013-01-09 09:55:54 -08001532JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001533 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001534 Thread* self = Thread::Current();
1535 StackHandleScope<1> hs(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07001536 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error)));
Mathieu Chartierf8322842014-05-16 10:59:25 -07001537 if (c.Get() == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001538 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001539 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001540 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001541 expandBufAdd4BE(pReply, interface_count);
1542 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001543 expandBufAddRefTypeId(pReply,
1544 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001545 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001546 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001547}
1548
Ian Rogersc0542af2014-09-03 16:16:56 -07001549void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001550 struct DebugCallbackContext {
1551 int numItems;
1552 JDWP::ExpandBuf* pReply;
1553
Elliott Hughes2435a572012-02-17 16:07:41 -08001554 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001555 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1556 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001557 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001558 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001559 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001560 }
1561 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001562 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001563 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001564 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001565 if (code_item == nullptr) {
1566 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001567 start = -1;
1568 end = -1;
1569 } else {
1570 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001571 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001572 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001573 }
1574
1575 expandBufAdd8BE(pReply, start);
1576 expandBufAdd8BE(pReply, end);
1577
1578 // Add numLines later
1579 size_t numLinesOffset = expandBufGetLength(pReply);
1580 expandBufAdd4BE(pReply, 0);
1581
1582 DebugCallbackContext context;
1583 context.numItems = 0;
1584 context.pReply = pReply;
1585
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001586 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001587 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001588 DebugCallbackContext::Callback, nullptr, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001589 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001590
1591 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001592}
1593
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001594void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1595 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001596 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001597 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001598 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001599 size_t variable_count;
1600 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001601
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001602 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1603 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001604 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001605 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1606
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001607 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1608 pContext->variable_count, startAddress, endAddress - startAddress,
1609 name, descriptor, signature, slot,
1610 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001611
Jeff Haob7cefc72013-11-14 14:51:09 -08001612 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001613
Elliott Hughesdbb40792011-11-18 17:05:22 -08001614 expandBufAdd8BE(pContext->pReply, startAddress);
1615 expandBufAddUtf8String(pContext->pReply, name);
1616 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001617 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001618 expandBufAddUtf8String(pContext->pReply, signature);
1619 }
1620 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1621 expandBufAdd4BE(pContext->pReply, slot);
1622
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001623 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001624 }
1625 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001626 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001627
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001628 // arg_count considers doubles and longs to take 2 units.
1629 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001630 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001631 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001632
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001633 // We don't know the total number of variables yet, so leave a blank and update it later.
1634 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001635 expandBufAdd4BE(pReply, 0);
1636
1637 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001638 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001639 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001640 context.variable_count = 0;
1641 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001642
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001643 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001644 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001645 m->GetDexFile()->DecodeDebugInfo(
Ian Rogersc0542af2014-09-03 16:16:56 -07001646 code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001647 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001648 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001649
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001650 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001651}
1652
Jeff Hao579b0242013-11-18 13:16:49 -08001653void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1654 JDWP::ExpandBuf* pReply) {
1655 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001656 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001657 OutputJValue(tag, return_value, pReply);
1658}
1659
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001660void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1661 JDWP::ExpandBuf* pReply) {
1662 mirror::ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001663 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001664 OutputJValue(tag, field_value, pReply);
1665}
1666
Elliott Hughes9777ba22013-01-17 09:04:19 -08001667JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001668 std::vector<uint8_t>* bytecodes) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001669 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001670 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001671 return JDWP::ERR_INVALID_METHODID;
1672 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001673 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001674 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1675 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1676 const uint8_t* end = begin + byte_count;
1677 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001678 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001679 }
1680 return JDWP::ERR_NONE;
1681}
1682
Elliott Hughes88d63092013-01-09 09:55:54 -08001683JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001684 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001685}
1686
Elliott Hughes88d63092013-01-09 09:55:54 -08001687JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001688 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001689}
1690
Elliott Hughes88d63092013-01-09 09:55:54 -08001691static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1692 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001693 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001694 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001695 JDWP::JdwpError error;
1696 mirror::Class* c = DecodeClass(ref_type_id, &error);
1697 if (ref_type_id != 0 && c == nullptr) {
1698 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001699 }
1700
Sebastien Hertz6995c602014-09-09 12:10:13 +02001701 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001702 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001703 return JDWP::ERR_INVALID_OBJECT;
1704 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001705 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001706
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001707 mirror::Class* receiver_class = c;
Ian Rogersc0542af2014-09-03 16:16:56 -07001708 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001709 receiver_class = o->GetClass();
1710 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001711 // TODO: should we give up now if receiver_class is nullptr?
1712 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001713 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001714 return JDWP::ERR_INVALID_FIELDID;
1715 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001716
Elliott Hughes0cf74332012-02-23 23:14:00 -08001717 // The RI only enforces the static/non-static mismatch in one direction.
1718 // TODO: should we change the tests and check both?
1719 if (is_static) {
1720 if (!f->IsStatic()) {
1721 return JDWP::ERR_INVALID_FIELDID;
1722 }
1723 } else {
1724 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001725 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field "
1726 << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001727 }
1728 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001729 if (f->IsStatic()) {
1730 o = f->GetDeclaringClass();
1731 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001732
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001733 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001734 JValue field_value;
1735 if (tag == JDWP::JT_VOID) {
1736 LOG(FATAL) << "Unknown tag: " << tag;
1737 } else if (!IsPrimitiveTag(tag)) {
1738 field_value.SetL(f->GetObject(o));
1739 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1740 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001741 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001742 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001743 }
Jeff Hao579b0242013-11-18 13:16:49 -08001744 Dbg::OutputJValue(tag, &field_value, pReply);
1745
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001746 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001747}
1748
Elliott Hughes88d63092013-01-09 09:55:54 -08001749JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001750 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001751 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001752}
1753
Ian Rogersc0542af2014-09-03 16:16:56 -07001754JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1755 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001756 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001757}
1758
Elliott Hughes88d63092013-01-09 09:55:54 -08001759static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001760 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001761 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001762 JDWP::JdwpError error;
Sebastien Hertz6995c602014-09-09 12:10:13 +02001763 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001764 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001765 return JDWP::ERR_INVALID_OBJECT;
1766 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001767 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001768
1769 // The RI only enforces the static/non-static mismatch in one direction.
1770 // TODO: should we change the tests and check both?
1771 if (is_static) {
1772 if (!f->IsStatic()) {
1773 return JDWP::ERR_INVALID_FIELDID;
1774 }
1775 } else {
1776 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001777 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001778 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001779 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001780 if (f->IsStatic()) {
1781 o = f->GetDeclaringClass();
1782 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001783
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001784 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001785
1786 if (IsPrimitiveTag(tag)) {
1787 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001788 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001789 // Debugging can't use transactional mode (runtime only).
1790 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001791 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001792 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001793 // Debugging can't use transactional mode (runtime only).
1794 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001795 }
1796 } else {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001797 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001798 if (error != JDWP::ERR_NONE) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001799 return JDWP::ERR_INVALID_OBJECT;
1800 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001801 if (v != nullptr) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001802 mirror::Class* field_type;
1803 {
1804 StackHandleScope<3> hs(Thread::Current());
1805 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1806 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
1807 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
Ian Rogers08f1f502014-12-02 15:04:37 -08001808 field_type = h_f->GetType(true);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001809 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001810 if (!field_type->IsAssignableFrom(v->GetClass())) {
1811 return JDWP::ERR_INVALID_OBJECT;
1812 }
1813 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001814 // Debugging can't use transactional mode (runtime only).
1815 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001816 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001817
1818 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001819}
1820
Elliott Hughes88d63092013-01-09 09:55:54 -08001821JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001822 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001823 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001824}
1825
Elliott Hughes88d63092013-01-09 09:55:54 -08001826JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1827 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001828}
1829
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001830JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001831 JDWP::JdwpError error;
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001832 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error);
1833 if (error != JDWP::ERR_NONE) {
1834 return error;
1835 }
1836 if (obj == nullptr) {
1837 return JDWP::ERR_INVALID_OBJECT;
1838 }
1839 {
1840 ScopedObjectAccessUnchecked soa(Thread::Current());
1841 mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String);
1842 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
1843 // This isn't a string.
1844 return JDWP::ERR_INVALID_STRING;
1845 }
1846 }
1847 *str = obj->AsString()->ToModifiedUtf8();
1848 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001849}
1850
Jeff Hao579b0242013-11-18 13:16:49 -08001851void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1852 if (IsPrimitiveTag(tag)) {
1853 expandBufAdd1(pReply, tag);
1854 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1855 expandBufAdd1(pReply, return_value->GetI());
1856 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1857 expandBufAdd2BE(pReply, return_value->GetI());
1858 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1859 expandBufAdd4BE(pReply, return_value->GetI());
1860 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1861 expandBufAdd8BE(pReply, return_value->GetJ());
1862 } else {
1863 CHECK_EQ(tag, JDWP::JT_VOID);
1864 }
1865 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001866 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001867 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001868 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001869 expandBufAddObjectId(pReply, gRegistry->Add(value));
1870 }
1871}
1872
Ian Rogersc0542af2014-09-03 16:16:56 -07001873JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001874 ScopedObjectAccessUnchecked soa(Thread::Current());
1875 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001876 JDWP::JdwpError error;
1877 Thread* thread = DecodeThread(soa, thread_id, &error);
1878 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001879 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1880 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001881 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001882
1883 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07001884 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1885 CHECK(thread_object != nullptr) << error;
Brian Carlstromea46f952013-07-30 01:26:50 -07001886 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001887 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1888 mirror::String* s =
1889 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Ian Rogersc0542af2014-09-03 16:16:56 -07001890 if (s != nullptr) {
1891 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08001892 }
1893 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001894}
1895
Elliott Hughes221229c2013-01-08 18:17:50 -08001896JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02001897 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001898 JDWP::JdwpError error;
1899 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1900 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001901 return JDWP::ERR_INVALID_OBJECT;
1902 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001903 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001904 // Okay, so it's an object, but is it actually a thread?
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001905 {
1906 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001907 Thread* thread = DecodeThread(soa, thread_id, &error);
1908 UNUSED(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001909 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001910 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1911 // Zombie threads are in the null group.
1912 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001913 error = JDWP::ERR_NONE;
1914 } else if (error == JDWP::ERR_NONE) {
1915 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1916 CHECK(c != nullptr);
Sebastien Hertze49e1952014-10-13 11:27:13 +02001917 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001918 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001919 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001920 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001921 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1922 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001923 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001924 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001925}
1926
Sebastien Hertza06430c2014-09-15 19:21:30 +02001927static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
1928 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
1929 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001930 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,
1931 error);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001932 if (*error != JDWP::ERR_NONE) {
1933 return nullptr;
1934 }
1935 if (thread_group == nullptr) {
1936 *error = JDWP::ERR_INVALID_OBJECT;
1937 return nullptr;
1938 }
Ian Rogers98379392014-02-24 16:53:16 -08001939 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1940 CHECK(c != nullptr);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001941 if (!c->IsAssignableFrom(thread_group->GetClass())) {
1942 // This is not a java.lang.ThreadGroup.
1943 *error = JDWP::ERR_INVALID_THREAD_GROUP;
1944 return nullptr;
1945 }
1946 *error = JDWP::ERR_NONE;
1947 return thread_group;
1948}
1949
1950JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
1951 ScopedObjectAccessUnchecked soa(Thread::Current());
1952 JDWP::JdwpError error;
1953 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
1954 if (error != JDWP::ERR_NONE) {
1955 return error;
1956 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001957 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupName");
Sebastien Hertze49e1952014-10-13 11:27:13 +02001958 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_name);
Ian Rogersc0542af2014-09-03 16:16:56 -07001959 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001960 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Sebastien Hertza06430c2014-09-15 19:21:30 +02001961
1962 std::string thread_group_name(s->ToModifiedUtf8());
1963 expandBufAddUtf8String(pReply, thread_group_name);
1964 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001965}
1966
Sebastien Hertza06430c2014-09-15 19:21:30 +02001967JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08001968 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001969 JDWP::JdwpError error;
Sebastien Hertza06430c2014-09-15 19:21:30 +02001970 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
1971 if (error != JDWP::ERR_NONE) {
1972 return error;
1973 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001974 mirror::Object* parent;
1975 {
1976 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupParent");
Sebastien Hertze49e1952014-10-13 11:27:13 +02001977 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_parent);
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001978 CHECK(f != nullptr);
1979 parent = f->GetObject(thread_group);
1980 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02001981 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
1982 expandBufAddObjectId(pReply, parent_group_id);
1983 return JDWP::ERR_NONE;
1984}
1985
1986static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
1987 std::vector<JDWP::ObjectId>* child_thread_group_ids)
1988 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1989 CHECK(thread_group != nullptr);
1990
1991 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Sebastien Hertze49e1952014-10-13 11:27:13 +02001992 mirror::ArtField* groups_field = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_groups);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001993 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Sebastien Hertze49e1952014-10-13 11:27:13 +02001994 {
1995 // The "groups" field is declared as a java.util.List: check it really is
1996 // an instance of java.util.ArrayList.
1997 CHECK(groups_array_list != nullptr);
1998 mirror::Class* java_util_ArrayList_class =
1999 soa.Decode<mirror::Class*>(WellKnownClasses::java_util_ArrayList);
2000 CHECK(groups_array_list->InstanceOf(java_util_ArrayList_class));
2001 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002002
2003 // Get the array and size out of the ArrayList<ThreadGroup>...
Sebastien Hertze49e1952014-10-13 11:27:13 +02002004 mirror::ArtField* array_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_array);
2005 mirror::ArtField* size_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_size);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002006 mirror::ObjectArray<mirror::Object>* groups_array =
2007 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
2008 const int32_t size = size_field->GetInt(groups_array_list);
2009
2010 // Copy the first 'size' elements out of the array into the result.
Sebastien Hertz6995c602014-09-09 12:10:13 +02002011 ObjectRegistry* registry = Dbg::GetObjectRegistry();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002012 for (int32_t i = 0; i < size; ++i) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002013 child_thread_group_ids->push_back(registry->Add(groups_array->Get(i)));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002014 }
2015}
2016
2017JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2018 JDWP::ExpandBuf* pReply) {
2019 ScopedObjectAccessUnchecked soa(Thread::Current());
2020 JDWP::JdwpError error;
2021 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2022 if (error != JDWP::ERR_NONE) {
2023 return error;
2024 }
2025
2026 // Add child threads.
2027 {
2028 std::vector<JDWP::ObjectId> child_thread_ids;
2029 GetThreads(thread_group, &child_thread_ids);
2030 expandBufAdd4BE(pReply, child_thread_ids.size());
2031 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2032 expandBufAddObjectId(pReply, child_thread_id);
2033 }
2034 }
2035
2036 // Add child thread groups.
2037 {
2038 std::vector<JDWP::ObjectId> child_thread_groups_ids;
2039 GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids);
2040 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2041 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2042 expandBufAddObjectId(pReply, child_thread_group_id);
2043 }
2044 }
2045
2046 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002047}
2048
2049JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002050 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07002051 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002052 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002053 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002054}
2055
Jeff Hao920af3e2013-08-28 15:46:38 -07002056JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2057 switch (state) {
2058 case kBlocked:
2059 return JDWP::TS_MONITOR;
2060 case kNative:
2061 case kRunnable:
2062 case kSuspended:
2063 return JDWP::TS_RUNNING;
2064 case kSleeping:
2065 return JDWP::TS_SLEEPING;
2066 case kStarting:
2067 case kTerminated:
2068 return JDWP::TS_ZOMBIE;
2069 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002070 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002071 case kWaitingForDebuggerSend:
2072 case kWaitingForDebuggerSuspension:
2073 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002074 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002075 case kWaitingForGcToComplete:
Jeff Hao920af3e2013-08-28 15:46:38 -07002076 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002077 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002078 case kWaitingForSignalCatcherOutput:
Hiroshi Yamauchi0c8c3032015-01-16 16:54:35 -08002079 case kWaitingForVisitObjects:
Jeff Hao920af3e2013-08-28 15:46:38 -07002080 case kWaitingInMainDebuggerLoop:
2081 case kWaitingInMainSignalCatcherLoop:
2082 case kWaitingPerformingGc:
2083 case kWaiting:
2084 return JDWP::TS_WAIT;
2085 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2086 }
2087 LOG(FATAL) << "Unknown thread state: " << state;
2088 return JDWP::TS_ZOMBIE;
2089}
2090
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002091JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2092 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002093 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002094
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002095 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2096
Ian Rogers50b35e22012-10-04 10:09:15 -07002097 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002098 JDWP::JdwpError error;
2099 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002100 if (error != JDWP::ERR_NONE) {
2101 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2102 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002103 return JDWP::ERR_NONE;
2104 }
2105 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002106 }
2107
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002108 if (IsSuspendedForDebugger(soa, thread)) {
2109 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002110 }
2111
Jeff Hao920af3e2013-08-28 15:46:38 -07002112 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002113 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002114}
2115
Elliott Hughes221229c2013-01-08 18:17:50 -08002116JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002117 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07002118 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002119 JDWP::JdwpError error;
2120 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002121 if (error != JDWP::ERR_NONE) {
2122 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002123 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002124 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002125 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002126 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002127}
2128
Elliott Hughesf9501702013-01-11 11:22:27 -08002129JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2130 ScopedObjectAccess soa(Thread::Current());
2131 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002132 JDWP::JdwpError error;
2133 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002134 if (error != JDWP::ERR_NONE) {
2135 return error;
2136 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002137 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002138 return JDWP::ERR_NONE;
2139}
2140
Sebastien Hertz070f7322014-09-09 12:08:49 +02002141static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa,
2142 mirror::Object* desired_thread_group, mirror::Object* peer)
2143 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2144 // Do we want threads from all thread groups?
2145 if (desired_thread_group == nullptr) {
2146 return true;
2147 }
2148 mirror::ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
2149 DCHECK(thread_group_field != nullptr);
2150 mirror::Object* group = thread_group_field->GetObject(peer);
2151 return (group == desired_thread_group);
2152}
2153
Sebastien Hertza06430c2014-09-15 19:21:30 +02002154void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002155 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz070f7322014-09-09 12:08:49 +02002156 std::list<Thread*> all_threads_list;
2157 {
2158 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2159 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2160 }
2161 for (Thread* t : all_threads_list) {
2162 if (t == Dbg::GetDebugThread()) {
2163 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2164 // query all threads, so it's easier if we just don't tell them about this thread.
2165 continue;
2166 }
2167 if (t->IsStillStarting()) {
2168 // This thread is being started (and has been registered in the thread list). However, it is
2169 // not completely started yet so we must ignore it.
2170 continue;
2171 }
2172 mirror::Object* peer = t->GetPeer();
2173 if (peer == nullptr) {
2174 // peer might be NULL if the thread is still starting up. We can't tell the debugger about
2175 // this thread yet.
2176 // TODO: if we identified threads to the debugger by their Thread*
2177 // rather than their peer's mirror::Object*, we could fix this.
2178 // Doing so might help us report ZOMBIE threads too.
2179 continue;
2180 }
2181 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
2182 thread_ids->push_back(gRegistry->Add(peer));
2183 }
2184 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002185}
Elliott Hughesa2155262011-11-16 16:26:58 -08002186
Ian Rogersc0542af2014-09-03 16:16:56 -07002187static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002188 struct CountStackDepthVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002189 explicit CountStackDepthVisitor(Thread* thread_in)
2190 : StackVisitor(thread_in, nullptr), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002191
Elliott Hughes64f574f2013-02-20 14:57:12 -08002192 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2193 // annotalysis.
2194 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002195 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002196 ++depth;
2197 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002198 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002199 }
2200 size_t depth;
2201 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002202
Ian Rogers7a22fa62013-01-23 12:16:16 -08002203 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002204 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002205 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002206}
2207
Ian Rogersc0542af2014-09-03 16:16:56 -07002208JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002209 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002210 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002211 JDWP::JdwpError error;
2212 *result = 0;
2213 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002214 if (error != JDWP::ERR_NONE) {
2215 return error;
2216 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002217 if (!IsSuspendedForDebugger(soa, thread)) {
2218 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2219 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002220 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002221 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002222}
2223
Ian Rogers306057f2012-11-26 12:45:53 -08002224JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2225 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002226 class GetFrameVisitor : public StackVisitor {
2227 public:
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002228 GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in,
2229 JDWP::ExpandBuf* buf_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002230 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07002231 : StackVisitor(thread, nullptr), depth_(0),
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002232 start_frame_(start_frame_in), frame_count_(frame_count_in), buf_(buf_in) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002233 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002234 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002235
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002236 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2237 // annotalysis.
2238 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002239 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002240 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002241 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002242 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002243 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002244 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002245 if (depth_ >= start_frame_) {
2246 JDWP::FrameId frame_id(GetFrameId());
2247 JDWP::JdwpLocation location;
Sebastien Hertz6995c602014-09-09 12:10:13 +02002248 SetJdwpLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002249 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002250 expandBufAdd8BE(buf_, frame_id);
2251 expandBufAddLocation(buf_, location);
2252 }
2253 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002254 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002255 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002256
2257 private:
2258 size_t depth_;
2259 const size_t start_frame_;
2260 const size_t frame_count_;
2261 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002262 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002263
2264 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002265 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002266 JDWP::JdwpError error;
2267 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002268 if (error != JDWP::ERR_NONE) {
2269 return error;
2270 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002271 if (!IsSuspendedForDebugger(soa, thread)) {
2272 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2273 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002274 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002275 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002276 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002277}
2278
2279JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002280 return GetThreadId(Thread::Current());
2281}
2282
2283JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002284 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002285 return gRegistry->Add(thread->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002286}
2287
Elliott Hughes475fc232011-10-25 15:00:35 -07002288void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002289 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002290}
2291
2292void Dbg::ResumeVM() {
Sebastien Hertz253fa552014-10-14 17:27:15 +02002293 Runtime::Current()->GetThreadList()->ResumeAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002294}
2295
Elliott Hughes221229c2013-01-08 18:17:50 -08002296JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002297 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002298 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002299 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002300 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002301 JDWP::JdwpError error;
2302 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002303 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002304 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002305 return JDWP::ERR_THREAD_NOT_ALIVE;
2306 }
Ian Rogers4ad5cd32014-11-11 23:08:07 -08002307 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002308 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002309 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2310 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2311 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002312 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002313 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002314 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002315 return JDWP::ERR_INTERNAL;
2316 } else {
2317 return JDWP::ERR_THREAD_NOT_ALIVE;
2318 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002319}
2320
Elliott Hughes221229c2013-01-08 18:17:50 -08002321void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002322 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002323 JDWP::JdwpError error;
2324 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2325 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002326 Thread* thread;
2327 {
2328 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2329 thread = Thread::FromManagedThread(soa, peer);
2330 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002331 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002332 LOG(WARNING) << "No such thread for resume: " << peer;
2333 return;
2334 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002335 bool needs_resume;
2336 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002337 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002338 needs_resume = thread->GetSuspendCount() > 0;
2339 }
2340 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002341 Runtime::Current()->GetThreadList()->Resume(thread, true);
2342 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002343}
2344
2345void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002346 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002347}
2348
Ian Rogers0399dde2012-06-06 17:09:28 -07002349struct GetThisVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002350 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002351 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002352 : StackVisitor(thread, context), this_object(nullptr), frame_id(frame_id_in) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002353
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002354 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2355 // annotalysis.
2356 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002357 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002358 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002359 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002360 this_object = GetThisObject();
2361 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002362 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002363 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002364
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002365 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002366 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002367};
2368
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002369JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2370 JDWP::ObjectId* result) {
2371 ScopedObjectAccessUnchecked soa(Thread::Current());
2372 Thread* thread;
2373 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002374 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002375 JDWP::JdwpError error;
2376 thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002377 if (error != JDWP::ERR_NONE) {
2378 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002379 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002380 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002381 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2382 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002383 }
Ian Rogers700a4022014-05-19 16:49:03 -07002384 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002385 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002386 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002387 *result = gRegistry->Add(visitor.this_object);
2388 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002389}
2390
Sebastien Hertz8009f392014-09-01 17:07:11 +02002391// Walks the stack until we find the frame with the given FrameId.
2392class FindFrameVisitor FINAL : public StackVisitor {
2393 public:
2394 FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
2395 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2396 : StackVisitor(thread, context), frame_id_(frame_id), error_(JDWP::ERR_INVALID_FRAMEID) {}
Ian Rogersca190662012-06-26 15:45:57 -07002397
Sebastien Hertz8009f392014-09-01 17:07:11 +02002398 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2399 // annotalysis.
2400 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
2401 if (GetFrameId() != frame_id_) {
2402 return true; // Not our frame, carry on.
Ian Rogers0399dde2012-06-06 17:09:28 -07002403 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002404 mirror::ArtMethod* m = GetMethod();
2405 if (m->IsNative()) {
2406 // We can't read/write local value from/into native method.
2407 error_ = JDWP::ERR_OPAQUE_FRAME;
2408 } else {
2409 // We found our frame.
2410 error_ = JDWP::ERR_NONE;
2411 }
2412 return false;
2413 }
2414
2415 JDWP::JdwpError GetError() const {
2416 return error_;
2417 }
2418
2419 private:
2420 const JDWP::FrameId frame_id_;
2421 JDWP::JdwpError error_;
2422};
2423
2424JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2425 JDWP::ObjectId thread_id = request->ReadThreadId();
2426 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002427
2428 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002429 Thread* thread;
2430 {
2431 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2432 JDWP::JdwpError error;
2433 thread = DecodeThread(soa, thread_id, &error);
2434 if (error != JDWP::ERR_NONE) {
2435 return error;
2436 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002437 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002438 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002439 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002440 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002441 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002442 if (visitor.GetError() != JDWP::ERR_NONE) {
2443 return visitor.GetError();
2444 }
2445
2446 // Read the values from visitor's context.
2447 int32_t slot_count = request->ReadSigned32("slot count");
2448 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2449 for (int32_t i = 0; i < slot_count; ++i) {
2450 uint32_t slot = request->ReadUnsigned32("slot");
2451 JDWP::JdwpTag reqSigByte = request->ReadTag();
2452
2453 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
2454
2455 size_t width = Dbg::GetTagWidth(reqSigByte);
Sebastien Hertz7d955652014-10-22 10:57:10 +02002456 uint8_t* ptr = expandBufAddSpace(pReply, width + 1);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002457 JDWP::JdwpError error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width);
2458 if (error != JDWP::ERR_NONE) {
2459 return error;
2460 }
2461 }
2462 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002463}
2464
Sebastien Hertz8009f392014-09-01 17:07:11 +02002465JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2466 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
2467 mirror::ArtMethod* m = visitor.GetMethod();
2468 uint16_t reg = DemangleSlot(slot, m);
2469 // TODO: check that the tag is compatible with the actual type of the slot!
2470 // TODO: check slot is valid for this method or return INVALID_SLOT error.
2471 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
2472 switch (tag) {
2473 case JDWP::JT_BOOLEAN: {
2474 CHECK_EQ(width, 1U);
2475 uint32_t intVal;
2476 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2477 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2478 JDWP::Set1(buf + 1, intVal != 0);
2479 } else {
2480 VLOG(jdwp) << "failed to get boolean local " << reg;
2481 return kFailureErrorCode;
Ian Rogers0399dde2012-06-06 17:09:28 -07002482 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002483 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002484 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002485 case JDWP::JT_BYTE: {
2486 CHECK_EQ(width, 1U);
2487 uint32_t intVal;
2488 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2489 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2490 JDWP::Set1(buf + 1, intVal);
2491 } else {
2492 VLOG(jdwp) << "failed to get byte local " << reg;
2493 return kFailureErrorCode;
2494 }
2495 break;
2496 }
2497 case JDWP::JT_SHORT:
2498 case JDWP::JT_CHAR: {
2499 CHECK_EQ(width, 2U);
2500 uint32_t intVal;
2501 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2502 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2503 JDWP::Set2BE(buf + 1, intVal);
2504 } else {
2505 VLOG(jdwp) << "failed to get short/char local " << reg;
2506 return kFailureErrorCode;
2507 }
2508 break;
2509 }
2510 case JDWP::JT_INT: {
2511 CHECK_EQ(width, 4U);
2512 uint32_t intVal;
2513 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2514 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2515 JDWP::Set4BE(buf + 1, intVal);
2516 } else {
2517 VLOG(jdwp) << "failed to get int local " << reg;
2518 return kFailureErrorCode;
2519 }
2520 break;
2521 }
2522 case JDWP::JT_FLOAT: {
2523 CHECK_EQ(width, 4U);
2524 uint32_t intVal;
2525 if (visitor.GetVReg(m, reg, kFloatVReg, &intVal)) {
2526 VLOG(jdwp) << "get float local " << reg << " = " << intVal;
2527 JDWP::Set4BE(buf + 1, intVal);
2528 } else {
2529 VLOG(jdwp) << "failed to get float local " << reg;
2530 return kFailureErrorCode;
2531 }
2532 break;
2533 }
2534 case JDWP::JT_ARRAY:
2535 case JDWP::JT_CLASS_LOADER:
2536 case JDWP::JT_CLASS_OBJECT:
2537 case JDWP::JT_OBJECT:
2538 case JDWP::JT_STRING:
2539 case JDWP::JT_THREAD:
2540 case JDWP::JT_THREAD_GROUP: {
2541 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2542 uint32_t intVal;
2543 if (visitor.GetVReg(m, reg, kReferenceVReg, &intVal)) {
2544 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2545 VLOG(jdwp) << "get " << tag << " object local " << reg << " = " << o;
2546 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2547 LOG(FATAL) << "Register " << reg << " expected to hold " << tag << " object: " << o;
2548 }
2549 tag = TagFromObject(soa, o);
2550 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
2551 } else {
2552 VLOG(jdwp) << "failed to get " << tag << " object local " << reg;
2553 return kFailureErrorCode;
2554 }
2555 break;
2556 }
2557 case JDWP::JT_DOUBLE: {
2558 CHECK_EQ(width, 8U);
2559 uint64_t longVal;
2560 if (visitor.GetVRegPair(m, reg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2561 VLOG(jdwp) << "get double local " << reg << " = " << longVal;
2562 JDWP::Set8BE(buf + 1, longVal);
2563 } else {
2564 VLOG(jdwp) << "failed to get double local " << reg;
2565 return kFailureErrorCode;
2566 }
2567 break;
2568 }
2569 case JDWP::JT_LONG: {
2570 CHECK_EQ(width, 8U);
2571 uint64_t longVal;
2572 if (visitor.GetVRegPair(m, reg, kLongLoVReg, kLongHiVReg, &longVal)) {
2573 VLOG(jdwp) << "get long local " << reg << " = " << longVal;
2574 JDWP::Set8BE(buf + 1, longVal);
2575 } else {
2576 VLOG(jdwp) << "failed to get long local " << reg;
2577 return kFailureErrorCode;
2578 }
2579 break;
2580 }
2581 default:
2582 LOG(FATAL) << "Unknown tag " << tag;
2583 break;
2584 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002585
Sebastien Hertz8009f392014-09-01 17:07:11 +02002586 // Prepend tag, which may have been updated.
2587 JDWP::Set1(buf, tag);
2588 return JDWP::ERR_NONE;
2589}
2590
2591JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2592 JDWP::ObjectId thread_id = request->ReadThreadId();
2593 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002594
2595 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002596 Thread* thread;
2597 {
2598 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2599 JDWP::JdwpError error;
2600 thread = DecodeThread(soa, thread_id, &error);
2601 if (error != JDWP::ERR_NONE) {
2602 return error;
2603 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002604 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002605 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002606 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002607 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002608 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002609 if (visitor.GetError() != JDWP::ERR_NONE) {
2610 return visitor.GetError();
2611 }
2612
2613 // Writes the values into visitor's context.
2614 int32_t slot_count = request->ReadSigned32("slot count");
2615 for (int32_t i = 0; i < slot_count; ++i) {
2616 uint32_t slot = request->ReadUnsigned32("slot");
2617 JDWP::JdwpTag sigByte = request->ReadTag();
2618 size_t width = Dbg::GetTagWidth(sigByte);
2619 uint64_t value = request->ReadValue(width);
2620
2621 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
2622 JDWP::JdwpError error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width);
2623 if (error != JDWP::ERR_NONE) {
2624 return error;
2625 }
2626 }
2627 return JDWP::ERR_NONE;
2628}
2629
2630JDWP::JdwpError Dbg::SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
2631 uint64_t value, size_t width) {
2632 mirror::ArtMethod* m = visitor.GetMethod();
2633 uint16_t reg = DemangleSlot(slot, m);
2634 // TODO: check that the tag is compatible with the actual type of the slot!
2635 // TODO: check slot is valid for this method or return INVALID_SLOT error.
2636 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
2637 switch (tag) {
2638 case JDWP::JT_BOOLEAN:
2639 case JDWP::JT_BYTE:
2640 CHECK_EQ(width, 1U);
2641 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2642 VLOG(jdwp) << "failed to set boolean/byte local " << reg << " = "
2643 << static_cast<uint32_t>(value);
2644 return kFailureErrorCode;
2645 }
2646 break;
2647 case JDWP::JT_SHORT:
2648 case JDWP::JT_CHAR:
2649 CHECK_EQ(width, 2U);
2650 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2651 VLOG(jdwp) << "failed to set short/char local " << reg << " = "
2652 << static_cast<uint32_t>(value);
2653 return kFailureErrorCode;
2654 }
2655 break;
2656 case JDWP::JT_INT:
2657 CHECK_EQ(width, 4U);
2658 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2659 VLOG(jdwp) << "failed to set int local " << reg << " = "
2660 << static_cast<uint32_t>(value);
2661 return kFailureErrorCode;
2662 }
2663 break;
2664 case JDWP::JT_FLOAT:
2665 CHECK_EQ(width, 4U);
2666 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kFloatVReg)) {
2667 VLOG(jdwp) << "failed to set float local " << reg << " = "
2668 << static_cast<uint32_t>(value);
2669 return kFailureErrorCode;
2670 }
2671 break;
2672 case JDWP::JT_ARRAY:
2673 case JDWP::JT_CLASS_LOADER:
2674 case JDWP::JT_CLASS_OBJECT:
2675 case JDWP::JT_OBJECT:
2676 case JDWP::JT_STRING:
2677 case JDWP::JT_THREAD:
2678 case JDWP::JT_THREAD_GROUP: {
2679 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2680 JDWP::JdwpError error;
2681 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value),
2682 &error);
2683 if (error != JDWP::ERR_NONE) {
2684 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2685 return JDWP::ERR_INVALID_OBJECT;
2686 } else if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2687 kReferenceVReg)) {
2688 VLOG(jdwp) << "failed to set " << tag << " object local " << reg << " = " << o;
2689 return kFailureErrorCode;
2690 }
2691 break;
2692 }
2693 case JDWP::JT_DOUBLE: {
2694 CHECK_EQ(width, 8U);
2695 if (!visitor.SetVRegPair(m, reg, value, kDoubleLoVReg, kDoubleHiVReg)) {
2696 VLOG(jdwp) << "failed to set double local " << reg << " = " << value;
2697 return kFailureErrorCode;
2698 }
2699 break;
2700 }
2701 case JDWP::JT_LONG: {
2702 CHECK_EQ(width, 8U);
2703 if (!visitor.SetVRegPair(m, reg, value, kLongLoVReg, kLongHiVReg)) {
2704 VLOG(jdwp) << "failed to set double local " << reg << " = " << value;
2705 return kFailureErrorCode;
2706 }
2707 break;
2708 }
2709 default:
2710 LOG(FATAL) << "Unknown tag " << tag;
2711 break;
2712 }
2713 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002714}
2715
Sebastien Hertz6995c602014-09-09 12:10:13 +02002716static void SetEventLocation(JDWP::EventLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
2717 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2718 DCHECK(location != nullptr);
2719 if (m == nullptr) {
2720 memset(location, 0, sizeof(*location));
2721 } else {
2722 location->method = m;
2723 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002724 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002725}
2726
Ian Rogersef7d42f2014-01-06 12:55:46 -08002727void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002728 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002729 if (!IsDebuggerActive()) {
2730 return;
2731 }
2732 DCHECK(m != nullptr);
2733 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002734 JDWP::EventLocation location;
2735 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002736
Sebastien Hertz6995c602014-09-09 12:10:13 +02002737 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002738}
2739
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002740void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
2741 mirror::Object* this_object, mirror::ArtField* f) {
2742 if (!IsDebuggerActive()) {
2743 return;
2744 }
2745 DCHECK(m != nullptr);
2746 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002747 JDWP::EventLocation location;
2748 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002749
Sebastien Hertz6995c602014-09-09 12:10:13 +02002750 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002751}
2752
2753void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
2754 mirror::Object* this_object, mirror::ArtField* f,
2755 const JValue* field_value) {
2756 if (!IsDebuggerActive()) {
2757 return;
2758 }
2759 DCHECK(m != nullptr);
2760 DCHECK(f != nullptr);
2761 DCHECK(field_value != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002762 JDWP::EventLocation location;
2763 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002764
Sebastien Hertz6995c602014-09-09 12:10:13 +02002765 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002766}
2767
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002768/**
2769 * Finds the location where this exception will be caught. We search until we reach the top
2770 * frame, in which case this exception is considered uncaught.
2771 */
2772class CatchLocationFinder : public StackVisitor {
2773 public:
2774 CatchLocationFinder(Thread* self, const Handle<mirror::Throwable>& exception, Context* context)
2775 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2776 : StackVisitor(self, context),
2777 self_(self),
2778 exception_(exception),
2779 handle_scope_(self),
2780 this_at_throw_(handle_scope_.NewHandle<mirror::Object>(nullptr)),
2781 catch_method_(handle_scope_.NewHandle<mirror::ArtMethod>(nullptr)),
2782 throw_method_(handle_scope_.NewHandle<mirror::ArtMethod>(nullptr)),
2783 catch_dex_pc_(DexFile::kDexNoIndex),
2784 throw_dex_pc_(DexFile::kDexNoIndex) {
2785 }
2786
2787 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2788 mirror::ArtMethod* method = GetMethod();
2789 DCHECK(method != nullptr);
2790 if (method->IsRuntimeMethod()) {
2791 // Ignore callee save method.
2792 DCHECK(method->IsCalleeSaveMethod());
2793 return true;
2794 }
2795
2796 uint32_t dex_pc = GetDexPc();
2797 if (throw_method_.Get() == nullptr) {
2798 // First Java method found. It is either the method that threw the exception,
2799 // or the Java native method that is reporting an exception thrown by
2800 // native code.
2801 this_at_throw_.Assign(GetThisObject());
2802 throw_method_.Assign(method);
2803 throw_dex_pc_ = dex_pc;
2804 }
2805
2806 if (dex_pc != DexFile::kDexNoIndex) {
2807 StackHandleScope<2> hs(self_);
2808 uint32_t found_dex_pc;
2809 Handle<mirror::Class> exception_class(hs.NewHandle(exception_->GetClass()));
2810 Handle<mirror::ArtMethod> h_method(hs.NewHandle(method));
2811 bool unused_clear_exception;
2812 found_dex_pc = mirror::ArtMethod::FindCatchBlock(
2813 h_method, exception_class, dex_pc, &unused_clear_exception);
2814 if (found_dex_pc != DexFile::kDexNoIndex) {
2815 catch_method_.Assign(method);
2816 catch_dex_pc_ = found_dex_pc;
2817 return false; // End stack walk.
2818 }
2819 }
2820 return true; // Continue stack walk.
2821 }
2822
2823 mirror::ArtMethod* GetCatchMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2824 return catch_method_.Get();
2825 }
2826
2827 mirror::ArtMethod* GetThrowMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2828 return throw_method_.Get();
2829 }
2830
2831 mirror::Object* GetThisAtThrow() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2832 return this_at_throw_.Get();
2833 }
2834
2835 uint32_t GetCatchDexPc() const {
2836 return catch_dex_pc_;
2837 }
2838
2839 uint32_t GetThrowDexPc() const {
2840 return throw_dex_pc_;
2841 }
2842
2843 private:
2844 Thread* const self_;
2845 const Handle<mirror::Throwable>& exception_;
2846 StackHandleScope<3> handle_scope_;
2847 MutableHandle<mirror::Object> this_at_throw_;
2848 MutableHandle<mirror::ArtMethod> catch_method_;
2849 MutableHandle<mirror::ArtMethod> throw_method_;
2850 uint32_t catch_dex_pc_;
2851 uint32_t throw_dex_pc_;
2852
2853 DISALLOW_COPY_AND_ASSIGN(CatchLocationFinder);
2854};
2855
2856void Dbg::PostException(mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002857 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002858 return;
2859 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002860 StackHandleScope<1> handle_scope(Thread::Current());
2861 Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object));
2862 std::unique_ptr<Context> context(Context::Create());
2863 CatchLocationFinder clf(Thread::Current(), h_exception, context.get());
2864 clf.WalkStack(/* include_transitions */ false);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002865 JDWP::EventLocation exception_throw_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002866 SetEventLocation(&exception_throw_location, clf.GetThrowMethod(), clf.GetThrowDexPc());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002867 JDWP::EventLocation exception_catch_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002868 SetEventLocation(&exception_catch_location, clf.GetCatchMethod(), clf.GetCatchDexPc());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002869
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002870 gJdwpState->PostException(&exception_throw_location, h_exception.Get(), &exception_catch_location,
2871 clf.GetThisAtThrow());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002872}
2873
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002874void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002875 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002876 return;
2877 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002878 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002879}
2880
Ian Rogers62d6c772013-02-27 08:32:07 -08002881void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002882 mirror::ArtMethod* m, uint32_t dex_pc,
2883 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002884 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002885 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002886 }
2887
Elliott Hughes86964332012-02-15 19:37:42 -08002888 if (IsBreakpoint(m, dex_pc)) {
2889 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002890 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002891
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002892 // If the debugger is single-stepping one of our threads, check to
2893 // see if we're that thread and we've reached a step point.
2894 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002895 if (single_step_control != nullptr) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002896 CHECK(!m->IsNative());
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002897 if (single_step_control->GetStepDepth() == JDWP::SD_INTO) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002898 // Step into method calls. We break when the line number
2899 // or method pointer changes. If we're in SS_MIN mode, we
2900 // always stop.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002901 if (single_step_control->GetMethod() != m) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002902 event_flags |= kSingleStep;
2903 VLOG(jdwp) << "SS new method";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002904 } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002905 event_flags |= kSingleStep;
2906 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002907 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002908 event_flags |= kSingleStep;
2909 VLOG(jdwp) << "SS new line";
2910 }
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002911 } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002912 // Step over method calls. We break when the line number is
2913 // different and the frame depth is <= the original frame
2914 // depth. (We can't just compare on the method, because we
2915 // might get unrolled past it by an exception, and it's tricky
2916 // to identify recursion.)
2917
2918 int stack_depth = GetStackDepth(thread);
2919
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002920 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002921 // Popped up one or more frames, always trigger.
2922 event_flags |= kSingleStep;
2923 VLOG(jdwp) << "SS method pop";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002924 } else if (stack_depth == single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002925 // Same depth, see if we moved.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002926 if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002927 event_flags |= kSingleStep;
2928 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002929 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002930 event_flags |= kSingleStep;
2931 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002932 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002933 }
2934 } else {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002935 CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002936 // Return from the current method. We break when the frame
2937 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002938
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002939 // This differs from the "method exit" break in that it stops
2940 // with the PC at the next instruction in the returned-to
2941 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002942
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002943 int stack_depth = GetStackDepth(thread);
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002944 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002945 event_flags |= kSingleStep;
2946 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002947 }
2948 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002949 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002950
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002951 // If there's something interesting going on, see if it matches one
2952 // of the debugger filters.
2953 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002954 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002955 }
2956}
2957
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002958size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2959 switch (instrumentation_event) {
2960 case instrumentation::Instrumentation::kMethodEntered:
2961 return &method_enter_event_ref_count_;
2962 case instrumentation::Instrumentation::kMethodExited:
2963 return &method_exit_event_ref_count_;
2964 case instrumentation::Instrumentation::kDexPcMoved:
2965 return &dex_pc_change_event_ref_count_;
2966 case instrumentation::Instrumentation::kFieldRead:
2967 return &field_read_event_ref_count_;
2968 case instrumentation::Instrumentation::kFieldWritten:
2969 return &field_write_event_ref_count_;
2970 case instrumentation::Instrumentation::kExceptionCaught:
2971 return &exception_catch_event_ref_count_;
2972 default:
2973 return nullptr;
2974 }
2975}
2976
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002977// Process request while all mutator threads are suspended.
2978void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002979 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002980 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002981 case DeoptimizationRequest::kNothing:
2982 LOG(WARNING) << "Ignoring empty deoptimization request.";
2983 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002984 case DeoptimizationRequest::kRegisterForEvent:
2985 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002986 request.InstrumentationEvent());
2987 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
2988 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002989 break;
2990 case DeoptimizationRequest::kUnregisterForEvent:
2991 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002992 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002993 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002994 request.InstrumentationEvent());
2995 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002996 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002997 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002998 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002999 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003000 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003001 break;
3002 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003003 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003004 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003005 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003006 break;
3007 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003008 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
3009 instrumentation->Deoptimize(request.Method());
3010 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003011 break;
3012 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003013 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
3014 instrumentation->Undeoptimize(request.Method());
3015 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003016 break;
3017 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003018 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003019 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003020 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003021}
3022
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003023void Dbg::DelayFullUndeoptimization() {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003024 if (RequiresDeoptimization()) {
3025 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
3026 ++delayed_full_undeoptimization_count_;
3027 DCHECK_LE(delayed_full_undeoptimization_count_, full_deoptimization_event_count_);
3028 }
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003029}
3030
3031void Dbg::ProcessDelayedFullUndeoptimizations() {
3032 // TODO: avoid taking the lock twice (once here and once in ManageDeoptimization).
3033 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003034 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003035 while (delayed_full_undeoptimization_count_ > 0) {
3036 DeoptimizationRequest req;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003037 req.SetKind(DeoptimizationRequest::kFullUndeoptimization);
3038 req.SetMethod(nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003039 RequestDeoptimizationLocked(req);
3040 --delayed_full_undeoptimization_count_;
3041 }
3042 }
3043 ManageDeoptimization();
3044}
3045
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003046void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003047 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003048 // Nothing to do.
3049 return;
3050 }
Brian Carlstrom306db812014-09-05 13:01:41 -07003051 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003052 RequestDeoptimizationLocked(req);
3053}
3054
3055void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003056 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003057 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003058 DCHECK_NE(req.InstrumentationEvent(), 0u);
3059 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003060 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003061 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003062 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003063 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003064 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003065 deoptimization_requests_.push_back(req);
3066 }
3067 *counter = *counter + 1;
3068 break;
3069 }
3070 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003071 DCHECK_NE(req.InstrumentationEvent(), 0u);
3072 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003073 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003074 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003075 *counter = *counter - 1;
3076 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003077 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003078 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003079 deoptimization_requests_.push_back(req);
3080 }
3081 break;
3082 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003083 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003084 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003085 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003086 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3087 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003088 deoptimization_requests_.push_back(req);
3089 }
3090 ++full_deoptimization_event_count_;
3091 break;
3092 }
3093 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003094 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003095 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003096 --full_deoptimization_event_count_;
3097 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003098 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3099 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003100 deoptimization_requests_.push_back(req);
3101 }
3102 break;
3103 }
3104 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003105 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003106 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003107 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003108 deoptimization_requests_.push_back(req);
3109 break;
3110 }
3111 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003112 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003113 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003114 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003115 deoptimization_requests_.push_back(req);
3116 break;
3117 }
3118 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003119 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003120 break;
3121 }
3122 }
3123}
3124
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003125void Dbg::ManageDeoptimization() {
3126 Thread* const self = Thread::Current();
3127 {
3128 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003129 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003130 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003131 return;
3132 }
3133 }
3134 CHECK_EQ(self->GetState(), kRunnable);
3135 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3136 // We need to suspend mutator threads first.
3137 Runtime* const runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07003138 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003139 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003140 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003141 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003142 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003143 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003144 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003145 ProcessDeoptimizationRequest(request);
3146 }
3147 deoptimization_requests_.clear();
3148 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003149 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3150 runtime->GetThreadList()->ResumeAll();
3151 self->TransitionFromSuspendedToRunnable();
3152}
3153
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003154static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3155 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003156 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003157 if (code_item == nullptr) {
3158 // TODO We should not be asked to watch location in a native or abstract method so the code item
3159 // should never be null. We could just check we never encounter this case.
3160 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003161 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003162 // Note: method verifier may cause thread suspension.
3163 self->AssertThreadSuspensionIsAllowable();
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003164 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003165 mirror::Class* declaring_class = m->GetDeclaringClass();
3166 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3167 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003168 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Ian Rogers7b078e82014-09-10 14:44:24 -07003169 verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003170 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method,
Mathieu Chartier4306ef82014-12-19 18:41:47 -08003171 m->GetAccessFlags(), false, true, false, true);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003172 // Note: we don't need to verify the method.
3173 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3174}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003175
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003176static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003177 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003178 for (Breakpoint& breakpoint : gBreakpoints) {
3179 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003180 return &breakpoint;
3181 }
3182 }
3183 return nullptr;
3184}
3185
3186// Sanity checks all existing breakpoints on the same method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003187static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m,
3188 DeoptimizationRequest::Kind deoptimization_kind)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003189 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003190 for (const Breakpoint& breakpoint : gBreakpoints) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003191 if (breakpoint.Method() == m) {
3192 CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind());
3193 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003194 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003195 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
3196 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003197 // We should have deoptimized everything but not "selectively" deoptimized this method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003198 CHECK(instrumentation->AreAllMethodsDeoptimized());
3199 CHECK(!instrumentation->IsDeoptimized(m));
3200 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003201 // We should have "selectively" deoptimized this method.
3202 // Note: while we have not deoptimized everything for this method, we may have done it for
3203 // another event.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003204 CHECK(instrumentation->IsDeoptimized(m));
3205 } else {
3206 // This method does not require deoptimization.
3207 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3208 CHECK(!instrumentation->IsDeoptimized(m));
3209 }
3210}
3211
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003212// Returns the deoptimization kind required to set a breakpoint in a method.
3213// If a breakpoint has already been set, we also return the first breakpoint
3214// through the given 'existing_brkpt' pointer.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003215static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self,
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003216 mirror::ArtMethod* m,
3217 const Breakpoint** existing_brkpt)
Sebastien Hertzf3928792014-11-17 19:00:37 +01003218 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
3219 if (!Dbg::RequiresDeoptimization()) {
3220 // We already run in interpreter-only mode so we don't need to deoptimize anything.
3221 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method "
3222 << PrettyMethod(m);
3223 return DeoptimizationRequest::kNothing;
3224 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003225 const Breakpoint* first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003226 {
3227 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003228 first_breakpoint = FindFirstBreakpointForMethod(m);
3229 *existing_brkpt = first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003230 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003231
3232 if (first_breakpoint == nullptr) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003233 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3234 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3235 // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension.
3236 // Therefore we must not hold any lock when we call it.
3237 bool need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3238 if (need_full_deoptimization) {
3239 VLOG(jdwp) << "Need full deoptimization because of possible inlining of method "
3240 << PrettyMethod(m);
3241 return DeoptimizationRequest::kFullDeoptimization;
3242 } else {
3243 // We don't need to deoptimize if the method has not been compiled.
3244 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
3245 const bool is_compiled = class_linker->GetOatMethodQuickCodeFor(m) != nullptr;
3246 if (is_compiled) {
Sebastien Hertz6963e442014-11-26 22:11:27 +01003247 // If the method may be called through its direct code pointer (without loading
3248 // its updated entrypoint), we need full deoptimization to not miss the breakpoint.
3249 if (class_linker->MayBeCalledWithDirectCodePointer(m)) {
3250 VLOG(jdwp) << "Need full deoptimization because of possible direct code call "
3251 << "into image for compiled method " << PrettyMethod(m);
3252 return DeoptimizationRequest::kFullDeoptimization;
3253 } else {
3254 VLOG(jdwp) << "Need selective deoptimization for compiled method " << PrettyMethod(m);
3255 return DeoptimizationRequest::kSelectiveDeoptimization;
3256 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003257 } else {
3258 // Method is not compiled: we don't need to deoptimize.
3259 VLOG(jdwp) << "No need for deoptimization for non-compiled method " << PrettyMethod(m);
3260 return DeoptimizationRequest::kNothing;
3261 }
3262 }
3263 } else {
3264 // There is at least one breakpoint for this method: we don't need to deoptimize.
3265 // Let's check that all breakpoints are configured the same way for deoptimization.
3266 VLOG(jdwp) << "Breakpoint already set: no deoptimization is required";
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003267 DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003268 if (kIsDebugBuild) {
3269 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3270 SanityCheckExistingBreakpoints(m, deoptimization_kind);
3271 }
3272 return DeoptimizationRequest::kNothing;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003273 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003274}
3275
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003276// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3277// request if we need to deoptimize.
3278void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3279 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003280 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003281 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003282
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003283 const Breakpoint* existing_breakpoint = nullptr;
3284 const DeoptimizationRequest::Kind deoptimization_kind =
3285 GetRequiredDeoptimizationKind(self, m, &existing_breakpoint);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003286 req->SetKind(deoptimization_kind);
3287 if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
3288 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003289 } else {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003290 CHECK(deoptimization_kind == DeoptimizationRequest::kNothing ||
3291 deoptimization_kind == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003292 req->SetMethod(nullptr);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003293 }
3294
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003295 {
3296 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003297 // If there is at least one existing breakpoint on the same method, the new breakpoint
3298 // must have the same deoptimization kind than the existing breakpoint(s).
3299 DeoptimizationRequest::Kind breakpoint_deoptimization_kind;
3300 if (existing_breakpoint != nullptr) {
3301 breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind();
3302 } else {
3303 breakpoint_deoptimization_kind = deoptimization_kind;
3304 }
3305 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind));
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003306 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3307 << gBreakpoints[gBreakpoints.size() - 1];
3308 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003309}
3310
3311// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3312// request if we need to undeoptimize.
3313void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003314 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003315 mirror::ArtMethod* m = FromMethodId(location->method_id);
3316 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003317 DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003318 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003319 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003320 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Sebastien Hertzf3928792014-11-17 19:00:37 +01003321 deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind();
3322 DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization,
3323 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003324 gBreakpoints.erase(gBreakpoints.begin() + i);
3325 break;
3326 }
3327 }
3328 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3329 if (existing_breakpoint == nullptr) {
3330 // There is no more breakpoint on this method: we need to undeoptimize.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003331 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003332 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003333 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3334 req->SetMethod(nullptr);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003335 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003336 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003337 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3338 req->SetMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003339 } else {
3340 // This method had no need for deoptimization: do nothing.
3341 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3342 req->SetKind(DeoptimizationRequest::kNothing);
3343 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003344 }
3345 } else {
3346 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003347 req->SetKind(DeoptimizationRequest::kNothing);
3348 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003349 if (kIsDebugBuild) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003350 SanityCheckExistingBreakpoints(m, deoptimization_kind);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003351 }
Elliott Hughes86964332012-02-15 19:37:42 -08003352 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003353}
3354
Jeff Hao449db332013-04-12 18:30:52 -07003355// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3356// cause suspension if the thread is the current thread.
3357class ScopedThreadSuspension {
3358 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003359 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003360 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003361 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003362 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003363 error_(JDWP::ERR_NONE),
3364 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003365 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003366 ScopedObjectAccessUnchecked soa(self);
3367 {
3368 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003369 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003370 }
3371 if (error_ == JDWP::ERR_NONE) {
3372 if (thread_ == soa.Self()) {
3373 self_suspend_ = true;
3374 } else {
3375 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Sebastien Hertz6995c602014-09-09 12:10:13 +02003376 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003377 bool timed_out;
Ian Rogers4ad5cd32014-11-11 23:08:07 -08003378 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3379 Thread* suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true,
3380 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07003381 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003382 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003383 // Thread terminated from under us while suspending.
3384 error_ = JDWP::ERR_INVALID_THREAD;
3385 } else {
3386 CHECK_EQ(suspended_thread, thread_);
3387 other_suspend_ = true;
3388 }
3389 }
3390 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003391 }
Elliott Hughes86964332012-02-15 19:37:42 -08003392
Jeff Hao449db332013-04-12 18:30:52 -07003393 Thread* GetThread() const {
3394 return thread_;
3395 }
3396
3397 JDWP::JdwpError GetError() const {
3398 return error_;
3399 }
3400
3401 ~ScopedThreadSuspension() {
3402 if (other_suspend_) {
3403 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3404 }
3405 }
3406
3407 private:
3408 Thread* thread_;
3409 JDWP::JdwpError error_;
3410 bool self_suspend_;
3411 bool other_suspend_;
3412};
3413
3414JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3415 JDWP::JdwpStepDepth step_depth) {
3416 Thread* self = Thread::Current();
3417 ScopedThreadSuspension sts(self, thread_id);
3418 if (sts.GetError() != JDWP::ERR_NONE) {
3419 return sts.GetError();
3420 }
3421
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003422 // Work out what ArtMethod* we're in, the current line number, and how deep the stack currently
Elliott Hughes2435a572012-02-17 16:07:41 -08003423 // is for step-out.
Ian Rogers0399dde2012-06-06 17:09:28 -07003424 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003425 explicit SingleStepStackVisitor(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
3426 : StackVisitor(thread, nullptr), stack_depth(0), method(nullptr), line_number(-1) {
Elliott Hughes86964332012-02-15 19:37:42 -08003427 }
Ian Rogersca190662012-06-26 15:45:57 -07003428
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003429 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3430 // annotalysis.
3431 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003432 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003433 if (!m->IsRuntimeMethod()) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003434 ++stack_depth;
3435 if (method == nullptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003436 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003437 method = m;
Ian Rogersc0542af2014-09-03 16:16:56 -07003438 if (dex_cache != nullptr) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003439 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003440 line_number = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003441 }
Elliott Hughes86964332012-02-15 19:37:42 -08003442 }
3443 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003444 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003445 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003446
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003447 int stack_depth;
3448 mirror::ArtMethod* method;
3449 int32_t line_number;
Elliott Hughes86964332012-02-15 19:37:42 -08003450 };
Jeff Hao449db332013-04-12 18:30:52 -07003451
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003452 Thread* const thread = sts.GetThread();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003453 SingleStepStackVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07003454 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003455
Elliott Hughes2435a572012-02-17 16:07:41 -08003456 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
Elliott Hughes2435a572012-02-17 16:07:41 -08003457 struct DebugCallbackContext {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003458 explicit DebugCallbackContext(SingleStepControl* single_step_control_cb,
3459 int32_t line_number_cb, const DexFile::CodeItem* code_item)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003460 : single_step_control_(single_step_control_cb), line_number_(line_number_cb),
3461 code_item_(code_item), last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003462 }
3463
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003464 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number_cb) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003465 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003466 if (static_cast<int32_t>(line_number_cb) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003467 if (!context->last_pc_valid) {
3468 // Everything from this address until the next line change is ours.
3469 context->last_pc = address;
3470 context->last_pc_valid = true;
3471 }
3472 // Otherwise, if we're already in a valid range for this line,
3473 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003474 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003475 // Add everything from the last entry up until here to the set
3476 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003477 context->single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003478 }
3479 context->last_pc_valid = false;
3480 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003481 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003482 }
3483
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003484 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003485 // If the line number was the last in the position table...
3486 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003487 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003488 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003489 single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003490 }
3491 }
3492 }
3493
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003494 SingleStepControl* const single_step_control_;
3495 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003496 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003497 bool last_pc_valid;
3498 uint32_t last_pc;
3499 };
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003500
3501 // Allocate single step.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003502 SingleStepControl* single_step_control =
3503 new (std::nothrow) SingleStepControl(step_size, step_depth,
3504 visitor.stack_depth, visitor.method);
3505 if (single_step_control == nullptr) {
3506 LOG(ERROR) << "Failed to allocate SingleStepControl";
3507 return JDWP::ERR_OUT_OF_MEMORY;
3508 }
3509
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003510 mirror::ArtMethod* m = single_step_control->GetMethod();
3511 const int32_t line_number = visitor.line_number;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003512 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003513 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003514 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003515 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07003516 DebugCallbackContext::Callback, nullptr, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003517 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003518
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003519 // Activate single-step in the thread.
3520 thread->ActivateSingleStepControl(single_step_control);
Elliott Hughes86964332012-02-15 19:37:42 -08003521
Elliott Hughes2435a572012-02-17 16:07:41 -08003522 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003523 VLOG(jdwp) << "Single-step thread: " << *thread;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003524 VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize();
3525 VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth();
3526 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->GetMethod());
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003527 VLOG(jdwp) << "Single-step current line: " << line_number;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003528 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth();
Elliott Hughes2435a572012-02-17 16:07:41 -08003529 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003530 for (uint32_t dex_pc : single_step_control->GetDexPcs()) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003531 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003532 }
3533 }
3534
3535 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003536}
3537
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003538void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3539 ScopedObjectAccessUnchecked soa(Thread::Current());
3540 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003541 JDWP::JdwpError error;
3542 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003543 if (error == JDWP::ERR_NONE) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003544 thread->DeactivateSingleStepControl();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003545 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003546}
3547
Elliott Hughes45651fd2012-02-21 15:48:20 -08003548static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3549 switch (tag) {
3550 default:
3551 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
Ian Rogersfc787ec2014-10-09 21:56:44 -07003552 UNREACHABLE();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003553
3554 // Primitives.
3555 case JDWP::JT_BYTE: return 'B';
3556 case JDWP::JT_CHAR: return 'C';
3557 case JDWP::JT_FLOAT: return 'F';
3558 case JDWP::JT_DOUBLE: return 'D';
3559 case JDWP::JT_INT: return 'I';
3560 case JDWP::JT_LONG: return 'J';
3561 case JDWP::JT_SHORT: return 'S';
3562 case JDWP::JT_VOID: return 'V';
3563 case JDWP::JT_BOOLEAN: return 'Z';
3564
3565 // Reference types.
3566 case JDWP::JT_ARRAY:
3567 case JDWP::JT_OBJECT:
3568 case JDWP::JT_STRING:
3569 case JDWP::JT_THREAD:
3570 case JDWP::JT_THREAD_GROUP:
3571 case JDWP::JT_CLASS_LOADER:
3572 case JDWP::JT_CLASS_OBJECT:
3573 return 'L';
3574 }
3575}
3576
Elliott Hughes88d63092013-01-09 09:55:54 -08003577JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3578 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003579 uint32_t arg_count, uint64_t* arg_values,
3580 JDWP::JdwpTag* arg_types, uint32_t options,
3581 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3582 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003583 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3584
Ian Rogersc0542af2014-09-03 16:16:56 -07003585 Thread* targetThread = nullptr;
Sebastien Hertz1558b572015-02-25 15:05:59 +01003586 std::unique_ptr<DebugInvokeReq> req;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003587 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003588 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003589 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003590 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003591 JDWP::JdwpError error;
3592 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003593 if (error != JDWP::ERR_NONE) {
3594 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3595 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003596 }
Sebastien Hertz1558b572015-02-25 15:05:59 +01003597 if (targetThread->GetInvokeReq() != nullptr) {
3598 // Thread is already invoking a method on behalf of the debugger.
3599 LOG(ERROR) << "InvokeMethod request for thread already invoking a method: " << *targetThread;
3600 return JDWP::ERR_ALREADY_INVOKING;
3601 }
3602 if (!targetThread->IsReadyForDebugInvoke()) {
3603 // Thread is not suspended by an event so it cannot invoke a method.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003604 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3605 return JDWP::ERR_INVALID_THREAD;
3606 }
3607
3608 /*
3609 * We currently have a bug where we don't successfully resume the
3610 * target thread if the suspend count is too deep. We're expected to
3611 * require one "resume" for each "suspend", but when asked to execute
3612 * a method we have to resume fully and then re-suspend it back to the
3613 * same level. (The easiest way to cause this is to type "suspend"
3614 * multiple times in jdb.)
3615 *
3616 * It's unclear what this means when the event specifies "resume all"
3617 * and some threads are suspended more deeply than others. This is
3618 * a rare problem, so for now we just prevent it from hanging forever
3619 * by rejecting the method invocation request. Without this, we will
3620 * be stuck waiting on a suspended thread.
3621 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003622 int suspend_count;
3623 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003624 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003625 suspend_count = targetThread->GetSuspendCount();
3626 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003627 if (suspend_count > 1) {
3628 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003629 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003630 }
3631
Ian Rogersc0542af2014-09-03 16:16:56 -07003632 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3633 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003634 return JDWP::ERR_INVALID_OBJECT;
3635 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003636
Sebastien Hertz1558b572015-02-25 15:05:59 +01003637 gRegistry->Get<mirror::Object*>(thread_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07003638 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003639 return JDWP::ERR_INVALID_OBJECT;
3640 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003641
Ian Rogersc0542af2014-09-03 16:16:56 -07003642 mirror::Class* c = DecodeClass(class_id, &error);
3643 if (c == nullptr) {
3644 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003645 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003646
Brian Carlstromea46f952013-07-30 01:26:50 -07003647 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003648 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003649 return JDWP::ERR_INVALID_METHODID;
3650 }
3651 if (m->IsStatic()) {
3652 if (m->GetDeclaringClass() != c) {
3653 return JDWP::ERR_INVALID_METHODID;
3654 }
3655 } else {
3656 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3657 return JDWP::ERR_INVALID_METHODID;
3658 }
3659 }
3660
3661 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003662 uint32_t shorty_len = 0;
3663 const char* shorty = m->GetShorty(&shorty_len);
3664 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003665 return JDWP::ERR_ILLEGAL_ARGUMENT;
3666 }
Elliott Hughes09201632013-04-15 15:50:07 -07003667
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003668 {
3669 StackHandleScope<3> hs(soa.Self());
Ian Rogersa0485602014-12-02 15:48:04 -08003670 HandleWrapper<mirror::ArtMethod> h_m(hs.NewHandleWrapper(&m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003671 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3672 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3673 const DexFile::TypeList* types = m->GetParameterTypeList();
3674 for (size_t i = 0; i < arg_count; ++i) {
3675 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003676 return JDWP::ERR_ILLEGAL_ARGUMENT;
3677 }
3678
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003679 if (shorty[i + 1] == 'L') {
3680 // Did we really get an argument of an appropriate reference type?
Ian Rogersa0485602014-12-02 15:48:04 -08003681 mirror::Class* parameter_type =
3682 h_m->GetClassFromTypeIndex(types->GetTypeItem(i).type_idx_, true);
Ian Rogersc0542af2014-09-03 16:16:56 -07003683 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
3684 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003685 return JDWP::ERR_INVALID_OBJECT;
3686 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003687 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003688 return JDWP::ERR_ILLEGAL_ARGUMENT;
3689 }
3690
3691 // Turn the on-the-wire ObjectId into a jobject.
3692 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3693 v.l = gRegistry->GetJObject(arg_values[i]);
3694 }
Elliott Hughes09201632013-04-15 15:50:07 -07003695 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003696 }
3697
Sebastien Hertz1558b572015-02-25 15:05:59 +01003698 // Allocates a DebugInvokeReq.
3699 req.reset(new (std::nothrow) DebugInvokeReq(receiver, c, m, options, arg_values, arg_count));
3700 if (req.get() == nullptr) {
3701 LOG(ERROR) << "Failed to allocate DebugInvokeReq";
3702 return JDWP::ERR_OUT_OF_MEMORY;
3703 }
3704
3705 // Attach the DebugInvokeReq to the target thread so it executes the method when
3706 // it is resumed. Once the invocation completes, it will detach it and signal us
3707 // before suspending itself.
3708 targetThread->SetDebugInvokeReq(req.get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003709 }
3710
3711 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3712 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3713 // call, and it's unwise to hold it during WaitForSuspend.
3714
3715 {
3716 /*
3717 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003718 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003719 * run out of memory. It's also a good idea to change it before locking
3720 * the invokeReq mutex, although that should never be held for long.
3721 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003722 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003723
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003724 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003725 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003726 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003727
3728 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003729 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003730 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003731 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003732 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003733 thread_list->Resume(targetThread, true);
3734 }
3735
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003736 // The target thread is resumed but needs the JDWP token we're holding.
3737 // We release it now and will acquire it again when the invocation is
3738 // complete and the target thread suspends itself.
3739 gJdwpState->ReleaseJdwpTokenForCommand();
3740
Elliott Hughesd07986f2011-12-06 18:27:45 -08003741 // Wait for the request to finish executing.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003742 while (targetThread->GetInvokeReq() != nullptr) {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003743 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003744 }
3745 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003746 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003747
3748 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003749 SuspendThread(thread_id, false /* request_suspension */);
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003750
3751 // Now the thread is suspended again, we can re-acquire the JDWP token.
3752 gJdwpState->AcquireJdwpTokenForCommand();
3753
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003754 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003755 }
3756
3757 /*
3758 * Suspend the threads. We waited for the target thread to suspend
3759 * itself, so all we need to do is suspend the others.
3760 *
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003761 * The SuspendAllForDebugger() call will double-suspend the event thread,
Elliott Hughesd07986f2011-12-06 18:27:45 -08003762 * so we want to resume the target thread once to keep the books straight.
3763 */
3764 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003765 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003766 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003767 thread_list->SuspendAllForDebugger();
3768 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003769 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003770 thread_list->Resume(targetThread, true);
3771 }
3772
3773 // Copy the result.
3774 *pResultTag = req->result_tag;
Sebastien Hertz1558b572015-02-25 15:05:59 +01003775 *pResultValue = req->result_value;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003776 *pExceptionId = req->exception;
3777 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003778}
3779
3780void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003781 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003782
Elliott Hughes81ff3182012-03-23 20:35:56 -07003783 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003784 // to preserve that across the method invocation.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003785 StackHandleScope<4> hs(soa.Self());
3786 auto old_exception = hs.NewHandle<mirror::Throwable>(soa.Self()->GetException());
3787 soa.Self()->ClearException();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003788
3789 // Translate the method through the vtable, unless the debugger wants to suppress it.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003790 MutableHandle<mirror::ArtMethod> m(hs.NewHandle(pReq->method.Read()));
3791 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) {
3792 mirror::ArtMethod* actual_method = pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m.Get());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003793 if (actual_method != m.Get()) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01003794 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get())
3795 << " to " << PrettyMethod(actual_method);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003796 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003797 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003798 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003799 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertz1558b572015-02-25 15:05:59 +01003800 << " receiver=" << pReq->receiver.Read()
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003801 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003802 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003803
3804 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3805
Sebastien Hertz1558b572015-02-25 15:05:59 +01003806 JValue result = InvokeWithJValues(soa, pReq->receiver.Read(), soa.EncodeMethod(m.Get()),
3807 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003808
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003809 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Sebastien Hertz1558b572015-02-25 15:05:59 +01003810 const bool is_object_result = (pReq->result_tag == JDWP::JT_OBJECT);
3811 Handle<mirror::Object> object_result = hs.NewHandle(is_object_result ? result.GetL() : nullptr);
3812 Handle<mirror::Throwable> exception = hs.NewHandle(soa.Self()->GetException());
3813 soa.Self()->ClearException();
3814 pReq->exception = gRegistry->Add(exception.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003815 if (pReq->exception != 0) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01003816 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get()
3817 << " " << exception->Dump();
3818 pReq->result_value = 0;
3819 } else if (is_object_result) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003820 /* if no exception thrown, examine object result more closely */
Sebastien Hertz1558b572015-02-25 15:05:59 +01003821 JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003822 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003823 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003824 pReq->result_tag = new_tag;
3825 }
3826
Sebastien Hertz1558b572015-02-25 15:05:59 +01003827 // Register the object in the registry and reference its ObjectId. This ensures
3828 // GC safety and prevents from accessing stale reference if the object is moved.
3829 pReq->result_value = gRegistry->Add(object_result.Get());
3830 } else {
3831 // Primitive result.
3832 DCHECK(IsPrimitiveTag(pReq->result_tag));
3833 pReq->result_value = result.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003834 }
3835
Ian Rogersc0542af2014-09-03 16:16:56 -07003836 if (old_exception.Get() != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003837 soa.Self()->SetException(old_exception.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003838 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003839}
3840
Elliott Hughesd07986f2011-12-06 18:27:45 -08003841/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003842 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003843 * need to process each, accumulate the replies, and ship the whole thing
3844 * back.
3845 *
3846 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3847 * and includes the chunk type/length, followed by the data.
3848 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003849 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003850 * chunk. If this becomes inconvenient we will need to adapt.
3851 */
Ian Rogersc0542af2014-09-03 16:16:56 -07003852bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003853 Thread* self = Thread::Current();
3854 JNIEnv* env = self->GetJniEnv();
3855
Ian Rogersc0542af2014-09-03 16:16:56 -07003856 uint32_t type = request->ReadUnsigned32("type");
3857 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003858
3859 // Create a byte[] corresponding to 'request'.
Ian Rogersc0542af2014-09-03 16:16:56 -07003860 size_t request_length = request->size();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003861 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Ian Rogersc0542af2014-09-03 16:16:56 -07003862 if (dataArray.get() == nullptr) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003863 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003864 env->ExceptionClear();
3865 return false;
3866 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003867 env->SetByteArrayRegion(dataArray.get(), 0, request_length,
3868 reinterpret_cast<const jbyte*>(request->data()));
3869 request->Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003870
3871 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003872 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003873 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003874 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003875 return false;
3876 }
3877
3878 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003879 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3880 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003881 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003882 if (env->ExceptionCheck()) {
3883 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3884 env->ExceptionDescribe();
3885 env->ExceptionClear();
3886 return false;
3887 }
3888
Ian Rogersc0542af2014-09-03 16:16:56 -07003889 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003890 return false;
3891 }
3892
3893 /*
3894 * Pull the pieces out of the chunk. We copy the results into a
3895 * newly-allocated buffer that the caller can free. We don't want to
3896 * continue using the Chunk object because nothing has a reference to it.
3897 *
3898 * We could avoid this by returning type/data/offset/length and having
3899 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003900 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003901 * if we have responses for multiple chunks.
3902 *
3903 * So we're pretty much stuck with copying data around multiple times.
3904 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003905 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 -08003906 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003907 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003908 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003909
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003910 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 -07003911 if (length == 0 || replyData.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003912 return false;
3913 }
3914
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003915 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003916 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
Ian Rogersc0542af2014-09-03 16:16:56 -07003917 if (reply == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003918 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3919 return false;
3920 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003921 JDWP::Set4BE(reply + 0, type);
3922 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003923 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003924
3925 *pReplyBuf = reply;
3926 *pReplyLen = length + kChunkHdrLen;
3927
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003928 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003929 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003930}
3931
Elliott Hughesa2155262011-11-16 16:26:58 -08003932void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003933 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003934
3935 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003936 if (self->GetState() != kRunnable) {
3937 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3938 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003939 }
3940
3941 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003942 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003943 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3944 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3945 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003946 if (env->ExceptionCheck()) {
3947 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3948 env->ExceptionDescribe();
3949 env->ExceptionClear();
3950 }
3951}
3952
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003953void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003954 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003955}
3956
3957void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003958 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003959 gDdmThreadNotification = false;
3960}
3961
3962/*
Elliott Hughes82188472011-11-07 18:11:48 -08003963 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003964 *
3965 * Because we broadcast the full set of threads when the notifications are
3966 * first enabled, it's possible for "thread" to be actively executing.
3967 */
Elliott Hughes82188472011-11-07 18:11:48 -08003968void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003969 if (!gDdmThreadNotification) {
3970 return;
3971 }
3972
Elliott Hughes82188472011-11-07 18:11:48 -08003973 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003974 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003975 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003976 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003977 } else {
3978 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003979 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003980 StackHandleScope<1> hs(soa.Self());
3981 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
Ian Rogersc0542af2014-09-03 16:16:56 -07003982 size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0;
3983 const jchar* chars = (name.Get() != nullptr) ? name->GetCharArray()->GetData() : nullptr;
Elliott Hughes82188472011-11-07 18:11:48 -08003984
Elliott Hughes21f32d72011-11-09 17:44:13 -08003985 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003986 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003987 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003988 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3989 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003990 }
3991}
3992
Elliott Hughes47fce012011-10-25 18:37:19 -07003993void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003994 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003995 gDdmThreadNotification = enable;
3996 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003997 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3998 // see a suspension in progress and block until that ends. They then post their own start
3999 // notification.
4000 SuspendVM();
4001 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07004002 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004003 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004004 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004005 threads = Runtime::Current()->GetThreadList()->GetList();
4006 }
4007 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004008 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07004009 for (Thread* thread : threads) {
4010 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004011 }
4012 }
4013 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07004014 }
4015}
4016
Elliott Hughesa2155262011-11-16 16:26:58 -08004017void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07004018 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02004019 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004020 }
Elliott Hughes82188472011-11-07 18:11:48 -08004021 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07004022}
4023
4024void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004025 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004026}
4027
4028void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004029 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004030}
4031
Elliott Hughes82188472011-11-07 18:11:48 -08004032void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004033 CHECK(buf != nullptr);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004034 iovec vec[1];
4035 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
4036 vec[0].iov_len = byte_count;
4037 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004038}
4039
Elliott Hughes21f32d72011-11-09 17:44:13 -08004040void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
4041 DdmSendChunk(type, bytes.size(), &bytes[0]);
4042}
4043
Brian Carlstromf5293522013-07-19 00:24:00 -07004044void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004045 if (gJdwpState == nullptr) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004046 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07004047 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08004048 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004049 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004050}
4051
Mathieu Chartierad466ad2015-01-08 16:28:08 -08004052JDWP::JdwpState* Dbg::GetJdwpState() {
4053 return gJdwpState;
4054}
4055
Elliott Hughes767a1472011-10-26 18:49:02 -07004056int Dbg::DdmHandleHpifChunk(HpifWhen when) {
4057 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07004058 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07004059 return true;
4060 }
4061
4062 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4063 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4064 return false;
4065 }
4066
4067 gDdmHpifWhen = when;
4068 return true;
4069}
4070
4071bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4072 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4073 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4074 return false;
4075 }
4076
4077 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4078 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4079 return false;
4080 }
4081
4082 if (native) {
4083 gDdmNhsgWhen = when;
4084 gDdmNhsgWhat = what;
4085 } else {
4086 gDdmHpsgWhen = when;
4087 gDdmHpsgWhat = what;
4088 }
4089 return true;
4090}
4091
Elliott Hughes7162ad92011-10-27 14:08:42 -07004092void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4093 // If there's a one-shot 'when', reset it.
4094 if (reason == gDdmHpifWhen) {
4095 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4096 gDdmHpifWhen = HPIF_WHEN_NEVER;
4097 }
4098 }
4099
4100 /*
4101 * Chunk HPIF (client --> server)
4102 *
4103 * Heap Info. General information about the heap,
4104 * suitable for a summary display.
4105 *
4106 * [u4]: number of heaps
4107 *
4108 * For each heap:
4109 * [u4]: heap ID
4110 * [u8]: timestamp in ms since Unix epoch
4111 * [u1]: capture reason (same as 'when' value from server)
4112 * [u4]: max heap size in bytes (-Xmx)
4113 * [u4]: current heap size in bytes
4114 * [u4]: current number of bytes allocated
4115 * [u4]: current number of objects allocated
4116 */
4117 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004118 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004119 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004120 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004121 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004122 JDWP::Append8BE(bytes, MilliTime());
4123 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004124 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4125 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004126 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4127 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004128 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
4129 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07004130}
4131
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004132enum HpsgSolidity {
4133 SOLIDITY_FREE = 0,
4134 SOLIDITY_HARD = 1,
4135 SOLIDITY_SOFT = 2,
4136 SOLIDITY_WEAK = 3,
4137 SOLIDITY_PHANTOM = 4,
4138 SOLIDITY_FINALIZABLE = 5,
4139 SOLIDITY_SWEEP = 6,
4140};
4141
4142enum HpsgKind {
4143 KIND_OBJECT = 0,
4144 KIND_CLASS_OBJECT = 1,
4145 KIND_ARRAY_1 = 2,
4146 KIND_ARRAY_2 = 3,
4147 KIND_ARRAY_4 = 4,
4148 KIND_ARRAY_8 = 5,
4149 KIND_UNKNOWN = 6,
4150 KIND_NATIVE = 7,
4151};
4152
4153#define HPSG_PARTIAL (1<<7)
4154#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4155
Ian Rogers30fab402012-01-23 15:43:46 -08004156class HeapChunkContext {
4157 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004158 // Maximum chunk size. Obtain this from the formula:
4159 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4160 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004161 : buf_(16384 - 16),
4162 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004163 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004164 Reset();
4165 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004166 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004167 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004168 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004169 }
4170 }
4171
4172 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004173 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004174 Flush();
4175 }
4176 }
4177
Mathieu Chartier36dab362014-07-30 14:59:56 -07004178 void SetChunkOverhead(size_t chunk_overhead) {
4179 chunk_overhead_ = chunk_overhead;
4180 }
4181
4182 void ResetStartOfNextChunk() {
4183 startOfNextMemoryChunk_ = nullptr;
4184 }
4185
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004186 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004187 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004188 return;
4189 }
4190
4191 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004192 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4193 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004194
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004195 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4196 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004197 // [u4]: length of piece, in allocation units
4198 // 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 -08004199 pieceLenField_ = p_;
4200 JDWP::Write4BE(&p_, 0x55555555);
4201 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004202 }
4203
Ian Rogersb726dcb2012-09-05 08:57:23 -07004204 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004205 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004206 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4207 CHECK(needHeader_);
4208 return;
4209 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004210 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004211 CHECK_LE(&buf_[0], pieceLenField_);
4212 CHECK_LE(pieceLenField_, p_);
4213 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004214
Ian Rogers30fab402012-01-23 15:43:46 -08004215 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004216 Reset();
4217 }
4218
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004219 static void HeapChunkJavaCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004220 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4221 Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004222 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes);
4223 }
4224
4225 static void HeapChunkNativeCallback(void* start, void* end, size_t used_bytes, void* arg)
4226 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4227 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004228 }
4229
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004230 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004231 enum { ALLOCATION_UNIT_SIZE = 8 };
4232
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004233 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004234 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004235 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004236 totalAllocationUnits_ = 0;
4237 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004238 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004239 }
4240
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004241 bool IsNative() const {
4242 return type_ == CHUNK_TYPE("NHSG");
4243 }
4244
4245 // Returns true if the object is not an empty chunk.
4246 bool ProcessRecord(void* start, size_t used_bytes) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004247 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4248 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004249 if (used_bytes == 0) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004250 if (start == nullptr) {
4251 // Reset for start of new heap.
4252 startOfNextMemoryChunk_ = nullptr;
4253 Flush();
4254 }
4255 // Only process in use memory so that free region information
4256 // also includes dlmalloc book keeping.
4257 return false;
Elliott Hughesa2155262011-11-16 16:26:58 -08004258 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004259 if (startOfNextMemoryChunk_ != nullptr) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004260 // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because
4261 // of the use of mmaps, so don't report. If not free memory then start a new segment.
4262 bool flush = true;
4263 if (start > startOfNextMemoryChunk_) {
4264 const size_t kMaxFreeLen = 2 * kPageSize;
4265 void* free_start = startOfNextMemoryChunk_;
4266 void* free_end = start;
4267 const size_t free_len =
4268 reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start);
4269 if (!IsNative() || free_len < kMaxFreeLen) {
4270 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative());
4271 flush = false;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004272 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004273 }
4274 if (flush) {
4275 startOfNextMemoryChunk_ = nullptr;
4276 Flush();
4277 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004278 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004279 return true;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004280 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004281
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004282 void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes)
4283 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4284 if (ProcessRecord(start, used_bytes)) {
4285 uint8_t state = ExamineNativeObject(start);
4286 AppendChunk(state, start, used_bytes + chunk_overhead_, true /*is_native*/);
4287 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4288 }
4289 }
4290
4291 void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes)
4292 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
4293 if (ProcessRecord(start, used_bytes)) {
4294 // Determine the type of this chunk.
4295 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4296 // If it's the same, we should combine them.
4297 uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start));
4298 AppendChunk(state, start, used_bytes + chunk_overhead_, false /*is_native*/);
4299 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4300 }
4301 }
4302
4303 void AppendChunk(uint8_t state, void* ptr, size_t length, bool is_native)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004304 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004305 // Make sure there's enough room left in the buffer.
4306 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4307 // 17 bytes for any header.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004308 const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17;
4309 size_t byte_left = &buf_.back() - p_;
4310 if (byte_left < needed) {
4311 if (is_native) {
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004312 // Cannot trigger memory allocation while walking native heap.
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004313 return;
4314 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004315 Flush();
4316 }
4317
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004318 byte_left = &buf_.back() - p_;
4319 if (byte_left < needed) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004320 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4321 << needed << " bytes)";
4322 return;
4323 }
4324 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004325 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004326 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4327 totalAllocationUnits_ += length;
4328 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004329 *p_++ = state | HPSG_PARTIAL;
4330 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004331 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004332 }
Ian Rogers30fab402012-01-23 15:43:46 -08004333 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004334 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004335 }
4336
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004337 uint8_t ExamineNativeObject(const void* p) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4338 return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4339 }
4340
4341 uint8_t ExamineJavaObject(mirror::Object* o)
Ian Rogersef7d42f2014-01-06 12:55:46 -08004342 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004343 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004344 return HPSG_STATE(SOLIDITY_FREE, 0);
4345 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004346 // It's an allocated chunk. Figure out what it is.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004347 gc::Heap* heap = Runtime::Current()->GetHeap();
4348 if (!heap->IsLiveObjectLocked(o)) {
4349 LOG(ERROR) << "Invalid object in managed heap: " << o;
Elliott Hughesa2155262011-11-16 16:26:58 -08004350 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4351 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004352 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004353 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004354 // The object was probably just created but hasn't been initialized yet.
4355 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4356 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004357 if (!heap->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004358 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004359 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4360 }
Mathieu Chartierf26e1b32015-01-29 10:47:10 -08004361 if (c->GetClass() == nullptr) {
4362 LOG(ERROR) << "Null class of class " << c << " for object " << o;
4363 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4364 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004365 if (c->IsClassClass()) {
4366 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4367 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004368 if (c->IsArrayClass()) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004369 switch (c->GetComponentSize()) {
4370 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4371 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4372 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4373 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4374 }
4375 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004376 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4377 }
4378
Ian Rogers30fab402012-01-23 15:43:46 -08004379 std::vector<uint8_t> buf_;
4380 uint8_t* p_;
4381 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004382 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004383 size_t totalAllocationUnits_;
4384 uint32_t type_;
Ian Rogers30fab402012-01-23 15:43:46 -08004385 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004386 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004387
Elliott Hughesa2155262011-11-16 16:26:58 -08004388 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4389};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004390
Mathieu Chartier36dab362014-07-30 14:59:56 -07004391static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
4392 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
4393 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004394 HeapChunkContext::HeapChunkJavaCallback(
Mathieu Chartier36dab362014-07-30 14:59:56 -07004395 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4396}
4397
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004398void Dbg::DdmSendHeapSegments(bool native) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004399 Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen;
4400 Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004401 if (when == HPSG_WHEN_NEVER) {
4402 return;
4403 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004404 // Figure out what kind of chunks we'll be sending.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004405 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS)
4406 << static_cast<int>(what);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004407
4408 // First, send a heap start chunk.
4409 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004410 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004411 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004412 Thread* self = Thread::Current();
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004413 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004414
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004415 // Send a series of heap segment chunks.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004416 HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native);
Elliott Hughesa2155262011-11-16 16:26:58 -08004417 if (native) {
Ian Rogers872dd822014-10-30 11:19:14 -07004418#if defined(HAVE_ANDROID_OS) && defined(USE_DLMALLOC)
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004419 dlmalloc_inspect_all(HeapChunkContext::HeapChunkNativeCallback, &context);
4420 HeapChunkContext::HeapChunkNativeCallback(nullptr, nullptr, 0, &context); // Indicate end of a space.
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004421#else
4422 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4423#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004424 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004425 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004426 for (const auto& space : heap->GetContinuousSpaces()) {
4427 if (space->IsDlMallocSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004428 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004429 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4430 // allocation then the first sizeof(size_t) may belong to it.
4431 context.SetChunkOverhead(sizeof(size_t));
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004432 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004433 } else if (space->IsRosAllocSpace()) {
4434 context.SetChunkOverhead(0);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004435 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4436 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
4437 self->TransitionFromRunnableToSuspended(kSuspended);
4438 ThreadList* tl = Runtime::Current()->GetThreadList();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07004439 tl->SuspendAll(__FUNCTION__);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004440 {
4441 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004442 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004443 }
4444 tl->ResumeAll();
4445 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004446 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004447 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004448 context.SetChunkOverhead(0);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004449 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004450 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004451 } else if (space->IsRegionSpace()) {
4452 heap->IncrementDisableMovingGC(self);
4453 self->TransitionFromRunnableToSuspended(kSuspended);
4454 ThreadList* tl = Runtime::Current()->GetThreadList();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07004455 tl->SuspendAll(__FUNCTION__);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004456 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4457 context.SetChunkOverhead(0);
4458 space->AsRegionSpace()->Walk(BumpPointerSpaceCallback, &context);
4459 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
4460 tl->ResumeAll();
4461 self->TransitionFromSuspendedToRunnable();
4462 heap->DecrementDisableMovingGC(self);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004463 } else {
4464 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004465 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004466 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004467 }
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004468 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004469 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004470 context.SetChunkOverhead(0);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004471 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004472 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004473
4474 // Finally, send a heap end chunk.
4475 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004476}
4477
Elliott Hughesb1a58792013-07-11 18:10:58 -07004478static size_t GetAllocTrackerMax() {
4479#ifdef HAVE_ANDROID_OS
4480 // Check whether there's a system property overriding the number of records.
4481 const char* propertyName = "dalvik.vm.allocTrackerMax";
4482 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4483 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4484 char* end;
4485 size_t value = strtoul(allocRecordMaxString, &end, 10);
4486 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004487 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4488 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004489 return kDefaultNumAllocRecords;
4490 }
4491 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004492 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4493 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004494 return kDefaultNumAllocRecords;
4495 }
4496 return value;
4497 }
4498#endif
4499 return kDefaultNumAllocRecords;
4500}
4501
Brian Carlstrom306db812014-09-05 13:01:41 -07004502void Dbg::SetAllocTrackingEnabled(bool enable) {
4503 Thread* self = Thread::Current();
4504 if (enable) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004505 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004506 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4507 if (recent_allocation_records_ != nullptr) {
4508 return; // Already enabled, bail.
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004509 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004510 alloc_record_max_ = GetAllocTrackerMax();
4511 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4512 << kMaxAllocRecordStackDepth << " frames, taking "
4513 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4514 DCHECK_EQ(alloc_record_head_, 0U);
4515 DCHECK_EQ(alloc_record_count_, 0U);
4516 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4517 CHECK(recent_allocation_records_ != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004518 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004519 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004520 } else {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004521 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004522 ScopedObjectAccess soa(self); // For type_cache_.Clear();
4523 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4524 if (recent_allocation_records_ == nullptr) {
4525 return; // Already disabled, bail.
4526 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07004527 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004528 delete[] recent_allocation_records_;
Ian Rogersc0542af2014-09-03 16:16:56 -07004529 recent_allocation_records_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -07004530 alloc_record_head_ = 0;
4531 alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004532 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004533 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004534 // If an allocation comes in before we uninstrument, we will safely drop it on the floor.
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004535 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004536 }
4537}
4538
Ian Rogers0399dde2012-06-06 17:09:28 -07004539struct AllocRecordStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004540 AllocRecordStackVisitor(Thread* thread, AllocRecord* record_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004541 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004542 : StackVisitor(thread, nullptr), record(record_in), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004543
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004544 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4545 // annotalysis.
4546 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004547 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004548 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004549 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004550 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004551 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004552 record->StackElement(depth)->SetMethod(m);
4553 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004554 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004555 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004556 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004557 }
4558
4559 ~AllocRecordStackVisitor() {
4560 // Clear out any unused stack trace elements.
4561 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004562 record->StackElement(depth)->SetMethod(nullptr);
4563 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004564 }
4565 }
4566
4567 AllocRecord* record;
4568 size_t depth;
4569};
4570
Ian Rogers844506b2014-09-12 19:59:33 -07004571void Dbg::RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004572 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004573 if (recent_allocation_records_ == nullptr) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004574 // In the process of shutting down recording, bail.
Elliott Hughes545a0642011-11-08 19:10:03 -08004575 return;
4576 }
4577
4578 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004579 if (++alloc_record_head_ == alloc_record_max_) {
4580 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004581 }
4582
4583 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004584 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004585 record->SetType(type);
4586 record->SetByteCount(byte_count);
4587 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004588
4589 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004590 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004591 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004592
Ian Rogers719d1a32014-03-06 12:13:39 -08004593 if (alloc_record_count_ < alloc_record_max_) {
4594 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004595 }
4596}
4597
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004598// Returns the index of the head element.
4599//
Brian Carlstrom306db812014-09-05 13:01:41 -07004600// We point at the most-recently-written record, so if alloc_record_count_ is 1
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004601// we want to use the current element. Take "head+1" and subtract count
4602// from it.
4603//
4604// We need to handle underflow in our circular buffer, so we add
Brian Carlstrom306db812014-09-05 13:01:41 -07004605// alloc_record_max_ and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004606size_t Dbg::HeadIndex() {
4607 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4608 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004609}
4610
4611void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004612 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004613 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004614 if (recent_allocation_records_ == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004615 LOG(INFO) << "Not recording tracked allocations";
4616 return;
4617 }
4618
4619 // "i" is the head of the list. We want to start at the end of the
4620 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004621 size_t i = HeadIndex();
Brian Carlstrom306db812014-09-05 13:01:41 -07004622 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4623 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004624
Ian Rogers719d1a32014-03-06 12:13:39 -08004625 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004626 while (count--) {
4627 AllocRecord* record = &recent_allocation_records_[i];
4628
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004629 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4630 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004631
4632 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004633 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4634 mirror::ArtMethod* m = stack_element->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004635 if (m == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004636 break;
4637 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004638 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004639 }
4640
4641 // pause periodically to help logcat catch up
4642 if ((count % 5) == 0) {
4643 usleep(40000);
4644 }
4645
Ian Rogers719d1a32014-03-06 12:13:39 -08004646 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004647 }
4648}
4649
4650class StringTable {
4651 public:
4652 StringTable() {
4653 }
4654
Mathieu Chartier4345c462014-06-27 10:20:14 -07004655 void Add(const std::string& str) {
4656 table_.insert(str);
4657 }
4658
4659 void Add(const char* str) {
4660 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004661 }
4662
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004663 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004664 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004665 if (it == table_.end()) {
4666 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4667 }
4668 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004669 }
4670
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004671 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004672 return table_.size();
4673 }
4674
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004675 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004676 for (const std::string& str : table_) {
4677 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004678 size_t s_len = CountModifiedUtf8Chars(s);
Ian Rogers700a4022014-05-19 16:49:03 -07004679 std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004680 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4681 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004682 }
4683 }
4684
4685 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004686 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004687 DISALLOW_COPY_AND_ASSIGN(StringTable);
4688};
4689
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004690static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004691 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004692 DCHECK(method != nullptr);
4693 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004694 return (source_file != nullptr) ? source_file : "";
4695}
4696
Elliott Hughes545a0642011-11-08 19:10:03 -08004697/*
4698 * The data we send to DDMS contains everything we have recorded.
4699 *
4700 * Message header (all values big-endian):
4701 * (1b) message header len (to allow future expansion); includes itself
4702 * (1b) entry header len
4703 * (1b) stack frame len
4704 * (2b) number of entries
4705 * (4b) offset to string table from start of message
4706 * (2b) number of class name strings
4707 * (2b) number of method name strings
4708 * (2b) number of source file name strings
4709 * For each entry:
4710 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004711 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004712 * (2b) allocated object's class name index
4713 * (1b) stack depth
4714 * For each stack frame:
4715 * (2b) method's class name
4716 * (2b) method name
4717 * (2b) method source file
4718 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4719 * (xb) class name strings
4720 * (xb) method name strings
4721 * (xb) source file strings
4722 *
4723 * As with other DDM traffic, strings are sent as a 4-byte length
4724 * followed by UTF-16 data.
4725 *
4726 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07004727 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004728 * each table, but in practice there should be far fewer.
4729 *
4730 * The chief reason for using a string table here is to keep the size of
4731 * the DDMS message to a minimum. This is partly to make the protocol
4732 * efficient, but also because we have to form the whole thing up all at
4733 * once in a memory buffer.
4734 *
4735 * We use separate string tables for class names, method names, and source
4736 * files to keep the indexes small. There will generally be no overlap
4737 * between the contents of these tables.
4738 */
4739jbyteArray Dbg::GetRecentAllocations() {
Ian Rogerscf7f1912014-10-22 22:06:39 -07004740 if ((false)) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004741 DumpRecentAllocations();
4742 }
4743
Ian Rogers50b35e22012-10-04 10:09:15 -07004744 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004745 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004746 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004747 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004748 //
4749 // Part 1: generate string tables.
4750 //
4751 StringTable class_names;
4752 StringTable method_names;
4753 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004754
Brian Carlstrom306db812014-09-05 13:01:41 -07004755 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4756 uint16_t count = capped_count;
4757 size_t idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004758 while (count--) {
4759 AllocRecord* record = &recent_allocation_records_[idx];
Ian Rogers1ff3c982014-08-12 02:30:58 -07004760 std::string temp;
4761 class_names.Add(record->Type()->GetDescriptor(&temp));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004762 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004763 mirror::ArtMethod* m = record->StackElement(i)->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004764 if (m != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004765 class_names.Add(m->GetDeclaringClassDescriptor());
4766 method_names.Add(m->GetName());
4767 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004768 }
4769 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004770
Ian Rogers719d1a32014-03-06 12:13:39 -08004771 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004772 }
4773
Brian Carlstrom306db812014-09-05 13:01:41 -07004774 LOG(INFO) << "allocation records: " << capped_count;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004775
4776 //
4777 // Part 2: Generate the output and store it in the buffer.
4778 //
4779
4780 // (1b) message header len (to allow future expansion); includes itself
4781 // (1b) entry header len
4782 // (1b) stack frame len
4783 const int kMessageHeaderLen = 15;
4784 const int kEntryHeaderLen = 9;
4785 const int kStackFrameLen = 8;
4786 JDWP::Append1BE(bytes, kMessageHeaderLen);
4787 JDWP::Append1BE(bytes, kEntryHeaderLen);
4788 JDWP::Append1BE(bytes, kStackFrameLen);
4789
4790 // (2b) number of entries
4791 // (4b) offset to string table from start of message
4792 // (2b) number of class name strings
4793 // (2b) number of method name strings
4794 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07004795 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004796 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004797 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004798 JDWP::Append2BE(bytes, class_names.Size());
4799 JDWP::Append2BE(bytes, method_names.Size());
4800 JDWP::Append2BE(bytes, filenames.Size());
4801
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004802 idx = HeadIndex();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004803 std::string temp;
Brian Carlstrom306db812014-09-05 13:01:41 -07004804 for (count = capped_count; count != 0; --count) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004805 // For each entry:
4806 // (4b) total allocation size
4807 // (2b) thread id
4808 // (2b) allocated object's class name index
4809 // (1b) stack depth
4810 AllocRecord* record = &recent_allocation_records_[idx];
4811 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004812 size_t allocated_object_class_name_index =
Ian Rogers1ff3c982014-08-12 02:30:58 -07004813 class_names.IndexOf(record->Type()->GetDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004814 JDWP::Append4BE(bytes, record->ByteCount());
4815 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004816 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4817 JDWP::Append1BE(bytes, stack_depth);
4818
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004819 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4820 // For each stack frame:
4821 // (2b) method's class name
4822 // (2b) method name
4823 // (2b) method source file
4824 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004825 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004826 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4827 size_t method_name_index = method_names.IndexOf(m->GetName());
4828 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004829 JDWP::Append2BE(bytes, class_name_index);
4830 JDWP::Append2BE(bytes, method_name_index);
4831 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004832 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004833 }
Ian Rogers719d1a32014-03-06 12:13:39 -08004834 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004835 }
4836
4837 // (xb) class name strings
4838 // (xb) method name strings
4839 // (xb) source file strings
4840 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4841 class_names.WriteTo(bytes);
4842 method_names.WriteTo(bytes);
4843 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004844 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004845 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004846 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07004847 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004848 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4849 }
4850 return result;
4851}
4852
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07004853mirror::ArtMethod* DeoptimizationRequest::Method() const {
4854 ScopedObjectAccessUnchecked soa(Thread::Current());
4855 return soa.DecodeMethod(method_);
4856}
4857
4858void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
4859 ScopedObjectAccessUnchecked soa(Thread::Current());
4860 method_ = soa.EncodeMethod(m);
4861}
4862
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004863} // namespace art