blob: 2e23eb8bdad8ea97d60ea3b33f2956fa8875d49a [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 Rogers22d5e732014-07-15 22:23:51 -070028#include "field_helper.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070029#include "gc/accounting/card_table-inl.h"
30#include "gc/space/large_object_space.h"
31#include "gc/space/space-inl.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070032#include "handle_scope.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080033#include "jdwp/object_registry.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070034#include "method_helper.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070035#include "mirror/art_field-inl.h"
36#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037#include "mirror/class.h"
38#include "mirror/class-inl.h"
39#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080040#include "mirror/object-inl.h"
41#include "mirror/object_array-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070042#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080043#include "mirror/throwable.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010044#include "quick/inline_method_analyser.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070045#include "reflection.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070046#include "safe_map.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080047#include "scoped_thread_state_change.h"
Elliott Hughes6a5bd492011-10-28 14:33:57 -070048#include "ScopedLocalRef.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070049#include "ScopedPrimitiveArray.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070050#include "handle_scope-inl.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070051#include "thread_list.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080052#include "throw_location.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080053#include "utf.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010054#include "verifier/method_verifier-inl.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070055#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070056
Brian Carlstrom3d92d522013-07-12 09:03:08 -070057#ifdef HAVE_ANDROID_OS
58#include "cutils/properties.h"
59#endif
60
Elliott Hughes872d4ec2011-10-21 17:07:15 -070061namespace art {
62
Brian Carlstrom7934ac22013-07-26 10:54:15 -070063static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
Brian Carlstromf4cb0362014-09-04 22:15:18 -070064static const size_t kDefaultNumAllocRecords = 64*1024; // Must be a power of 2. 2BE can hold 64k-1.
65
66// Limit alloc_record_count to the 2BE value that is the limit of the current protocol.
67static uint16_t CappedAllocRecordCount(size_t alloc_record_count) {
68 if (alloc_record_count > 0xffff) {
69 return 0xffff;
70 }
71 return alloc_record_count;
72}
Elliott Hughes475fc232011-10-25 15:00:35 -070073
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070074class AllocRecordStackTraceElement {
75 public:
76 AllocRecordStackTraceElement() : method_(nullptr), dex_pc_(0) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080077 }
78
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070079 int32_t LineNumber() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
80 mirror::ArtMethod* method = Method();
81 DCHECK(method != nullptr);
82 return method->GetLineNumFromDexPC(DexPc());
Elliott Hughes545a0642011-11-08 19:10:03 -080083 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070084
85 mirror::ArtMethod* Method() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -070086 ScopedObjectAccessUnchecked soa(Thread::Current());
87 return soa.DecodeMethod(method_);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070088 }
89
90 void SetMethod(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
91 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4345c462014-06-27 10:20:14 -070092 method_ = soa.EncodeMethod(m);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070093 }
94
95 uint32_t DexPc() const {
96 return dex_pc_;
97 }
98
99 void SetDexPc(uint32_t pc) {
100 dex_pc_ = pc;
101 }
102
103 private:
Mathieu Chartier4345c462014-06-27 10:20:14 -0700104 jmethodID method_;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700105 uint32_t dex_pc_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800106};
107
Mathieu Chartier4345c462014-06-27 10:20:14 -0700108jobject Dbg::TypeCache::Add(mirror::Class* t) {
109 ScopedObjectAccessUnchecked soa(Thread::Current());
110 int32_t hash_code = t->IdentityHashCode();
111 auto range = objects_.equal_range(hash_code);
112 for (auto it = range.first; it != range.second; ++it) {
113 if (soa.Decode<mirror::Class*>(it->second) == t) {
114 // Found a matching weak global, return it.
115 return it->second;
116 }
117 }
118 JNIEnv* env = soa.Env();
119 const jobject local_ref = soa.AddLocalReference<jobject>(t);
120 const jobject weak_global = env->NewWeakGlobalRef(local_ref);
121 env->DeleteLocalRef(local_ref);
122 objects_.insert(std::make_pair(hash_code, weak_global));
123 return weak_global;
124}
125
126void Dbg::TypeCache::Clear() {
Brian Carlstromf4cb0362014-09-04 22:15:18 -0700127 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
128 Thread* self = Thread::Current();
Mathieu Chartier4345c462014-06-27 10:20:14 -0700129 for (const auto& p : objects_) {
Brian Carlstromf4cb0362014-09-04 22:15:18 -0700130 vm->DeleteWeakGlobalRef(self, p.second);
Mathieu Chartier4345c462014-06-27 10:20:14 -0700131 }
132 objects_.clear();
133}
134
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700135class AllocRecord {
136 public:
137 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -0800138
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700139 mirror::Class* Type() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700140 return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700141 }
142
Brian Carlstromf4cb0362014-09-04 22:15:18 -0700143 void SetType(mirror::Class* t) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
144 Locks::alloc_tracker_lock_) {
145 type_ = Dbg::type_cache_.Add(t);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700146 }
147
148 size_t GetDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800149 size_t depth = 0;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700150 while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != NULL) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800151 ++depth;
152 }
153 return depth;
154 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800155
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700156 size_t ByteCount() const {
157 return byte_count_;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800158 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700159
160 void SetByteCount(size_t count) {
161 byte_count_ = count;
162 }
163
164 uint16_t ThinLockId() const {
165 return thin_lock_id_;
166 }
167
168 void SetThinLockId(uint16_t id) {
169 thin_lock_id_ = id;
170 }
171
172 AllocRecordStackTraceElement* StackElement(size_t index) {
173 DCHECK_LT(index, kMaxAllocRecordStackDepth);
174 return &stack_[index];
175 }
176
177 private:
178 jobject type_; // This is a weak global.
179 size_t byte_count_;
180 uint16_t thin_lock_id_;
181 AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth]; // Unused entries have NULL method.
Elliott Hughes545a0642011-11-08 19:10:03 -0800182};
183
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700184class Breakpoint {
185 public:
Sebastien Hertzf2134f62014-11-17 19:00:37 +0100186 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc,
187 DeoptimizationRequest::Kind deoptimization_kind)
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700188 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertzf2134f62014-11-17 19:00:37 +0100189 : method_(nullptr), dex_pc_(dex_pc), deoptimization_kind_(deoptimization_kind) {
190 CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing ||
191 deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization ||
192 deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700193 ScopedObjectAccessUnchecked soa(Thread::Current());
194 method_ = soa.EncodeMethod(method);
195 }
196
197 Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
198 : method_(nullptr), dex_pc_(other.dex_pc_),
Sebastien Hertzf2134f62014-11-17 19:00:37 +0100199 deoptimization_kind_(other.deoptimization_kind_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700200 ScopedObjectAccessUnchecked soa(Thread::Current());
201 method_ = soa.EncodeMethod(other.Method());
202 }
203
204 mirror::ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
205 ScopedObjectAccessUnchecked soa(Thread::Current());
206 return soa.DecodeMethod(method_);
207 }
208
209 uint32_t DexPc() const {
210 return dex_pc_;
211 }
212
Sebastien Hertzf2134f62014-11-17 19:00:37 +0100213 DeoptimizationRequest::Kind GetDeoptimizationKind() const {
214 return deoptimization_kind_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700215 }
216
217 private:
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100218 // The location of this breakpoint.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700219 jmethodID method_;
220 uint32_t dex_pc_;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100221
222 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
Sebastien Hertzf2134f62014-11-17 19:00:37 +0100223 DeoptimizationRequest::Kind deoptimization_kind_;
Elliott Hughes86964332012-02-15 19:37:42 -0800224};
225
Sebastien Hertz59d9d662014-08-19 15:33:43 +0200226static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700227 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700228 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
Elliott Hughes86964332012-02-15 19:37:42 -0800229 return os;
230}
231
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200232class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800233 public:
234 DebugInstrumentationListener() {}
235 virtual ~DebugInstrumentationListener() {}
236
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200237 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
238 uint32_t dex_pc)
239 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800240 if (method->IsNative()) {
241 // TODO: post location events is a suspension point and native method entry stubs aren't.
242 return;
243 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100244 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800245 }
246
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200247 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
248 uint32_t dex_pc, const JValue& return_value)
249 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800250 if (method->IsNative()) {
251 // TODO: post location events is a suspension point and native method entry stubs aren't.
252 return;
253 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100254 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800255 }
256
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200257 void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
258 uint32_t dex_pc)
259 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800260 // We're not recorded to listen to this kind of event, so complain.
261 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100262 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800263 }
264
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200265 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
266 uint32_t new_dex_pc)
267 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz8379b222014-02-24 17:38:15 +0100268 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800269 }
270
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200271 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
272 uint32_t dex_pc, mirror::ArtField* field)
273 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
274 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800275 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200276
277 void FieldWritten(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
278 uint32_t dex_pc, mirror::ArtField* field, const JValue& field_value)
279 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
280 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
281 }
282
283 void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
284 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
285 mirror::Throwable* exception_object)
286 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
287 Dbg::PostException(throw_location, catch_method, catch_dex_pc, exception_object);
288 }
289
290 private:
291 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800292} gDebugInstrumentationListener;
293
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700294// JDWP is allowed unless the Zygote forbids it.
295static bool gJdwpAllowed = true;
296
Elliott Hughesc0f09332012-03-26 13:27:06 -0700297// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700298static bool gJdwpConfigured = false;
299
Elliott Hughesc0f09332012-03-26 13:27:06 -0700300// Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.)
Elliott Hughes376a7a02011-10-24 18:35:55 -0700301static JDWP::JdwpOptions gJdwpOptions;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700302
303// Runtime JDWP state.
304static JDWP::JdwpState* gJdwpState = NULL;
305static bool gDebuggerConnected; // debugger or DDMS is connected.
306static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800307static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700308
Elliott Hughes47fce012011-10-25 18:37:19 -0700309static bool gDdmThreadNotification = false;
310
Elliott Hughes767a1472011-10-26 18:49:02 -0700311// DDMS GC-related settings.
312static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
313static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
314static Dbg::HpsgWhat gDdmHpsgWhat;
315static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
316static Dbg::HpsgWhat gDdmNhsgWhat;
317
Sebastien Hertzd5391672014-09-09 12:10:13 +0200318ObjectRegistry* Dbg::gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700319
Elliott Hughes545a0642011-11-08 19:10:03 -0800320// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800321AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
322size_t Dbg::alloc_record_max_ = 0;
323size_t Dbg::alloc_record_head_ = 0;
324size_t Dbg::alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -0700325Dbg::TypeCache Dbg::type_cache_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800326
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100327// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100328std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
329size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100330size_t Dbg::delayed_full_undeoptimization_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100331
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200332// Instrumentation event reference counters.
333size_t Dbg::dex_pc_change_event_ref_count_ = 0;
334size_t Dbg::method_enter_event_ref_count_ = 0;
335size_t Dbg::method_exit_event_ref_count_ = 0;
336size_t Dbg::field_read_event_ref_count_ = 0;
337size_t Dbg::field_write_event_ref_count_ = 0;
338size_t Dbg::exception_catch_event_ref_count_ = 0;
339uint32_t Dbg::instrumentation_events_ = 0;
340
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100341// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800342static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800343
Mathieu Chartier12f74232015-01-14 14:55:47 -0800344void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700345 if (receiver != nullptr) {
Mathieu Chartier12f74232015-01-14 14:55:47 -0800346 callback(&receiver, arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700347 }
348 if (thread != nullptr) {
Mathieu Chartier12f74232015-01-14 14:55:47 -0800349 callback(&thread, arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700350 }
351 if (klass != nullptr) {
Mathieu Chartier12f74232015-01-14 14:55:47 -0800352 callback(reinterpret_cast<mirror::Object**>(&klass), arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700353 }
354 if (method != nullptr) {
Mathieu Chartier12f74232015-01-14 14:55:47 -0800355 callback(reinterpret_cast<mirror::Object**>(&method), arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700356 }
357}
358
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200359void DebugInvokeReq::Clear() {
360 invoke_needed = false;
361 receiver = nullptr;
362 thread = nullptr;
363 klass = nullptr;
364 method = nullptr;
365}
366
Mathieu Chartier12f74232015-01-14 14:55:47 -0800367void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700368 if (method != nullptr) {
Mathieu Chartier12f74232015-01-14 14:55:47 -0800369 callback(reinterpret_cast<mirror::Object**>(&method), arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700370 }
371}
372
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200373bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
374 return dex_pcs.find(dex_pc) == dex_pcs.end();
375}
376
377void SingleStepControl::Clear() {
378 is_active = false;
379 method = nullptr;
380 dex_pcs.clear();
381}
382
Brian Carlstromea46f952013-07-30 01:26:50 -0700383static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800384 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700385 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz59d9d662014-08-19 15:33:43 +0200386 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100387 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700388 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
Elliott Hughes86964332012-02-15 19:37:42 -0800389 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
390 return true;
391 }
392 }
393 return false;
394}
395
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100396static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
397 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800398 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
399 // A thread may be suspended for GC; in this code, we really want to know whether
400 // there's a debugger suspension active.
401 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
402}
403
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800404static mirror::Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700405 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzd5391672014-09-09 12:10:13 +0200406 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800407 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800408 status = JDWP::ERR_INVALID_OBJECT;
409 return NULL;
410 }
411 if (!o->IsArrayInstance()) {
412 status = JDWP::ERR_INVALID_ARRAY;
413 return NULL;
414 }
415 status = JDWP::ERR_NONE;
416 return o->AsArray();
417}
418
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800419static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700420 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzd5391672014-09-09 12:10:13 +0200421 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800422 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800423 status = JDWP::ERR_INVALID_OBJECT;
424 return NULL;
425 }
426 if (!o->IsClass()) {
427 status = JDWP::ERR_INVALID_CLASS;
428 return NULL;
429 }
430 status = JDWP::ERR_NONE;
431 return o->AsClass();
432}
433
Elliott Hughes221229c2013-01-08 18:17:50 -0800434static JDWP::JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thread*& thread)
jeffhaoa77f0f62012-12-05 17:19:31 -0800435 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700436 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
437 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzd5391672014-09-09 12:10:13 +0200438 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800439 if (thread_peer == NULL || thread_peer == ObjectRegistry::kInvalidObject) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800440 // This isn't even an object.
441 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes436e3722012-02-17 20:01:47 -0800442 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800443
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800444 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800445 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
446 // This isn't a thread.
447 return JDWP::ERR_INVALID_THREAD;
448 }
449
450 thread = Thread::FromManagedThread(soa, thread_peer);
451 if (thread == NULL) {
452 // This is a java.lang.Thread without a Thread*. Must be a zombie.
453 return JDWP::ERR_THREAD_NOT_ALIVE;
454 }
455 return JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800456}
457
Elliott Hughes24437992011-11-30 14:49:33 -0800458static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
459 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
460 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
461 return static_cast<JDWP::JdwpTag>(descriptor[0]);
462}
463
Ian Rogerscb6b0f32014-08-12 02:30:58 -0700464static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
465 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
466 std::string temp;
467 const char* descriptor = klass->GetDescriptor(&temp);
468 return BasicTagFromDescriptor(descriptor);
469}
470
Ian Rogers98379392014-02-24 16:53:16 -0800471static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700472 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes86b00102011-12-05 17:54:26 -0800473 CHECK(c != NULL);
Elliott Hughes24437992011-11-30 14:49:33 -0800474 if (c->IsArrayClass()) {
475 return JDWP::JT_ARRAY;
476 }
Elliott Hughes24437992011-11-30 14:49:33 -0800477 if (c->IsStringClass()) {
478 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800479 }
Ian Rogers98379392014-02-24 16:53:16 -0800480 if (c->IsClassClass()) {
481 return JDWP::JT_CLASS_OBJECT;
482 }
483 {
484 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
485 if (thread_class->IsAssignableFrom(c)) {
486 return JDWP::JT_THREAD;
487 }
488 }
489 {
490 mirror::Class* thread_group_class =
491 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
492 if (thread_group_class->IsAssignableFrom(c)) {
493 return JDWP::JT_THREAD_GROUP;
494 }
495 }
496 {
497 mirror::Class* class_loader_class =
498 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
499 if (class_loader_class->IsAssignableFrom(c)) {
500 return JDWP::JT_CLASS_LOADER;
501 }
502 }
503 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800504}
505
506/*
507 * Objects declared to hold Object might actually hold a more specific
508 * type. The debugger may take a special interest in these (e.g. it
509 * wants to display the contents of Strings), so we want to return an
510 * appropriate tag.
511 *
512 * Null objects are tagged JT_OBJECT.
513 */
Sebastien Hertzd5391672014-09-09 12:10:13 +0200514JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) {
Ian Rogers98379392014-02-24 16:53:16 -0800515 return (o == NULL) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800516}
517
518static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
519 switch (tag) {
520 case JDWP::JT_BOOLEAN:
521 case JDWP::JT_BYTE:
522 case JDWP::JT_CHAR:
523 case JDWP::JT_FLOAT:
524 case JDWP::JT_DOUBLE:
525 case JDWP::JT_INT:
526 case JDWP::JT_LONG:
527 case JDWP::JT_SHORT:
528 case JDWP::JT_VOID:
529 return true;
530 default:
531 return false;
532 }
533}
534
Elliott Hughes3bb81562011-10-21 18:52:59 -0700535/*
536 * Handle one of the JDWP name/value pairs.
537 *
538 * JDWP options are:
539 * help: if specified, show help message and bail
540 * transport: may be dt_socket or dt_shmem
541 * address: for dt_socket, "host:port", or just "port" when listening
542 * server: if "y", wait for debugger to attach; if "n", attach to debugger
543 * timeout: how long to wait for debugger to connect / listen
544 *
545 * Useful with server=n (these aren't supported yet):
546 * onthrow=<exception-name>: connect to debugger when exception thrown
547 * onuncaught=y|n: connect to debugger when uncaught exception thrown
548 * launch=<command-line>: launch the debugger itself
549 *
550 * The "transport" option is required, as is "address" if server=n.
551 */
552static bool ParseJdwpOption(const std::string& name, const std::string& value) {
553 if (name == "transport") {
554 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700555 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700556 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700557 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700558 } else {
559 LOG(ERROR) << "JDWP transport not supported: " << value;
560 return false;
561 }
562 } else if (name == "server") {
563 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700564 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700565 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700566 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700567 } else {
568 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
569 return false;
570 }
571 } else if (name == "suspend") {
572 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700573 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700574 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700575 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700576 } else {
577 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
578 return false;
579 }
580 } else if (name == "address") {
581 /* this is either <port> or <host>:<port> */
582 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700583 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700584 std::string::size_type colon = value.find(':');
585 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700586 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700587 port_string = value.substr(colon + 1);
588 } else {
589 port_string = value;
590 }
591 if (port_string.empty()) {
592 LOG(ERROR) << "JDWP address missing port: " << value;
593 return false;
594 }
595 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800596 uint64_t port = strtoul(port_string.c_str(), &end, 10);
597 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700598 LOG(ERROR) << "JDWP address has junk in port field: " << value;
599 return false;
600 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700601 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700602 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
603 /* valid but unsupported */
604 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
605 } else {
606 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
607 }
608
609 return true;
610}
611
612/*
613 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
614 * "transport=dt_socket,address=8000,server=y,suspend=n"
615 */
616bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800617 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700618
Elliott Hughes3bb81562011-10-21 18:52:59 -0700619 std::vector<std::string> pairs;
620 Split(options, ',', pairs);
621
622 for (size_t i = 0; i < pairs.size(); ++i) {
623 std::string::size_type equals = pairs[i].find('=');
624 if (equals == std::string::npos) {
625 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
626 return false;
627 }
628 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
629 }
630
Elliott Hughes376a7a02011-10-24 18:35:55 -0700631 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700632 LOG(ERROR) << "Must specify JDWP transport: " << options;
633 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700634 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700635 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
636 return false;
637 }
638
639 gJdwpConfigured = true;
640 return true;
641}
642
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700643void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700644 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700645 // No JDWP for you!
646 return;
647 }
648
Ian Rogers719d1a32014-03-06 12:13:39 -0800649 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700650 gRegistry = new ObjectRegistry;
651
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700652 // Init JDWP if the debugger is enabled. This may connect out to a
653 // debugger, passively listen for a debugger, or block waiting for a
654 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700655 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
656 if (gJdwpState == NULL) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800657 // We probably failed because some other process has the port already, which means that
658 // if we don't abort the user is likely to think they're talking to us when they're actually
659 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800660 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700661 }
662
663 // If a debugger has already attached, send the "welcome" message.
664 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700665 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700666 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes376a7a02011-10-24 18:35:55 -0700667 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800668 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700669 }
670 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700671}
672
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700673void Dbg::StopJdwp() {
Sebastien Hertzd8b35372014-08-18 19:26:39 +0200674 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
675 // destruction of gJdwpState).
676 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
677 gJdwpState->PostVMDeath();
678 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100679 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
680 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700681 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800682 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700683 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800684 gRegistry = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700685}
686
Elliott Hughes767a1472011-10-26 18:49:02 -0700687void Dbg::GcDidFinish() {
688 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700689 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700690 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700691 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700692 }
693 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700694 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700695 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700696 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700697 }
698 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700699 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700700 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700701 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700702 }
703}
704
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700705void Dbg::SetJdwpAllowed(bool allowed) {
706 gJdwpAllowed = allowed;
707}
708
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700709DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700710 return Thread::Current()->GetInvokeReq();
711}
712
713Thread* Dbg::GetDebugThread() {
714 return (gJdwpState != NULL) ? gJdwpState->GetDebugThread() : NULL;
715}
716
717void Dbg::ClearWaitForEventThread() {
718 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700719}
720
721void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700722 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800723 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700724 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800725 gDisposed = false;
726}
727
728void Dbg::Disposed() {
729 gDisposed = true;
730}
731
732bool Dbg::IsDisposed() {
733 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700734}
735
Sebastien Hertzf2134f62014-11-17 19:00:37 +0100736bool Dbg::RequiresDeoptimization() {
737 // We don't need deoptimization if everything runs with interpreter after
738 // enabling -Xint mode.
739 return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly();
740}
741
Elliott Hughesa2155262011-11-16 16:26:58 -0800742void Dbg::GoActive() {
743 // Enable all debugging features, including scans for breakpoints.
744 // This is a no-op if we're already active.
745 // Only called from the JDWP handler thread.
746 if (gDebuggerActive) {
747 return;
748 }
749
Elliott Hughesc0f09332012-03-26 13:27:06 -0700750 {
751 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Sebastien Hertz59d9d662014-08-19 15:33:43 +0200752 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700753 CHECK_EQ(gBreakpoints.size(), 0U);
754 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800755
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100756 {
Brian Carlstromf4cb0362014-09-04 22:15:18 -0700757 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100758 CHECK_EQ(deoptimization_requests_.size(), 0U);
759 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100760 CHECK_EQ(delayed_full_undeoptimization_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200761 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
762 CHECK_EQ(method_enter_event_ref_count_, 0U);
763 CHECK_EQ(method_exit_event_ref_count_, 0U);
764 CHECK_EQ(field_read_event_ref_count_, 0U);
765 CHECK_EQ(field_write_event_ref_count_, 0U);
766 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100767 }
768
Ian Rogers62d6c772013-02-27 08:32:07 -0800769 Runtime* runtime = Runtime::Current();
770 runtime->GetThreadList()->SuspendAll();
771 Thread* self = Thread::Current();
772 ThreadState old_state = self->SetStateUnsafe(kRunnable);
773 CHECK_NE(old_state, kRunnable);
Sebastien Hertzf2134f62014-11-17 19:00:37 +0100774 if (RequiresDeoptimization()) {
775 runtime->GetInstrumentation()->EnableDeoptimization();
776 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200777 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800778 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800779 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
780 runtime->GetThreadList()->ResumeAll();
781
782 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700783}
784
785void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700786 CHECK(gDebuggerConnected);
787
Elliott Hughesc0f09332012-03-26 13:27:06 -0700788 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700789
Ian Rogers62d6c772013-02-27 08:32:07 -0800790 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
791 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
792 // and clear the object registry.
793 Runtime* runtime = Runtime::Current();
794 runtime->GetThreadList()->SuspendAll();
795 Thread* self = Thread::Current();
796 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100797
798 // Debugger may not be active at this point.
799 if (gDebuggerActive) {
800 {
801 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
802 // This prevents us from having any pending deoptimization request when the debugger attaches
803 // to us again while no event has been requested yet.
Brian Carlstromf4cb0362014-09-04 22:15:18 -0700804 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100805 deoptimization_requests_.clear();
806 full_deoptimization_event_count_ = 0U;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100807 delayed_full_undeoptimization_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100808 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200809 if (instrumentation_events_ != 0) {
810 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
811 instrumentation_events_);
812 instrumentation_events_ = 0;
813 }
Sebastien Hertzf2134f62014-11-17 19:00:37 +0100814 if (RequiresDeoptimization()) {
815 runtime->GetInstrumentation()->DisableDeoptimization();
816 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100817 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100818 }
Elliott Hughes234ab152011-10-26 14:02:26 -0700819 gRegistry->Clear();
820 gDebuggerConnected = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800821 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
822 runtime->GetThreadList()->ResumeAll();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700823}
824
Elliott Hughesc0f09332012-03-26 13:27:06 -0700825bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700826 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700827}
828
Elliott Hughesc0f09332012-03-26 13:27:06 -0700829bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700830 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700831}
832
833int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800834 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700835}
836
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700837void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700838 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700839}
840
Elliott Hughes88d63092013-01-09 09:55:54 -0800841std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800842 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800843 if (o == NULL) {
844 return "NULL";
845 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800846 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes88d63092013-01-09 09:55:54 -0800847 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
Elliott Hughes436e3722012-02-17 20:01:47 -0800848 }
849 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700850 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800851 }
Sebastien Hertzd5391672014-09-09 12:10:13 +0200852 return GetClassName(o->AsClass());
853}
854
855std::string Dbg::GetClassName(mirror::Class* klass) {
Sebastien Hertzbbb63892014-09-19 12:07:51 +0200856 if (klass == nullptr) {
857 return "NULL";
858 }
Ian Rogerscb6b0f32014-08-12 02:30:58 -0700859 std::string temp;
Sebastien Hertzd5391672014-09-09 12:10:13 +0200860 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700861}
862
Elliott Hughes88d63092013-01-09 09:55:54 -0800863JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800864 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800865 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800866 if (c == NULL) {
867 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800868 }
Elliott Hughes88d63092013-01-09 09:55:54 -0800869 class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800870 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800871}
872
Elliott Hughes88d63092013-01-09 09:55:54 -0800873JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800874 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800875 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800876 if (c == NULL) {
877 return status;
878 }
879 if (c->IsInterface()) {
880 // http://code.google.com/p/android/issues/detail?id=20856
Elliott Hughes88d63092013-01-09 09:55:54 -0800881 superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800882 } else {
Elliott Hughes88d63092013-01-09 09:55:54 -0800883 superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800884 }
885 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700886}
887
Elliott Hughes436e3722012-02-17 20:01:47 -0800888JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800889 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800890 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800891 return JDWP::ERR_INVALID_OBJECT;
892 }
893 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
894 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700895}
896
Elliott Hughes436e3722012-02-17 20:01:47 -0800897JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
898 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800899 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800900 if (c == NULL) {
901 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800902 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800903
904 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
905
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700906 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
907 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800908 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700909 if ((access_flags & kAccInterface) == 0) {
910 access_flags |= kAccSuper;
911 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800912
913 expandBufAdd4BE(pReply, access_flags);
914
915 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700916}
917
Elliott Hughesf327e072013-01-09 16:01:26 -0800918JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
919 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800920 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800921 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800922 return JDWP::ERR_INVALID_OBJECT;
923 }
924
925 // Ensure all threads are suspended while we read objects' lock words.
926 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100927 CHECK_EQ(self->GetState(), kRunnable);
928 self->TransitionFromRunnableToSuspended(kSuspended);
929 Runtime::Current()->GetThreadList()->SuspendAll();
Elliott Hughesf327e072013-01-09 16:01:26 -0800930
931 MonitorInfo monitor_info(o);
932
Sebastien Hertz54263242014-03-19 18:16:50 +0100933 Runtime::Current()->GetThreadList()->ResumeAll();
934 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800935
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700936 if (monitor_info.owner_ != NULL) {
937 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800938 } else {
939 expandBufAddObjectId(reply, gRegistry->Add(NULL));
940 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700941 expandBufAdd4BE(reply, monitor_info.entry_count_);
942 expandBufAdd4BE(reply, monitor_info.waiters_.size());
943 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
944 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800945 }
946 return JDWP::ERR_NONE;
947}
948
Elliott Hughes734b8c62013-01-11 15:32:45 -0800949JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
950 std::vector<JDWP::ObjectId>& monitors,
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100951 std::vector<uint32_t>& stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800952 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700953 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700954 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700955 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800956 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700957 : StackVisitor(thread, context), current_stack_depth(0),
958 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800959
960 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
961 // annotalysis.
962 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
963 if (!GetMethod()->IsRuntimeMethod()) {
964 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800965 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800966 }
967 return true;
968 }
969
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700970 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
971 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800972 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700973 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700974 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800975 }
976
Elliott Hughes734b8c62013-01-11 15:32:45 -0800977 size_t current_stack_depth;
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700978 std::vector<JDWP::ObjectId>* monitors;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700979 std::vector<uint32_t>* stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800980 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800981
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700982 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700983 Thread* thread;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700984 {
985 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700986 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
987 if (error != JDWP::ERR_NONE) {
988 return error;
989 }
990 if (!IsSuspendedForDebugger(soa, thread)) {
991 return JDWP::ERR_THREAD_NOT_SUSPENDED;
992 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700993 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700994 std::unique_ptr<Context> context(Context::Create());
995 OwnedMonitorVisitor visitor(thread, context.get(), &monitors, &stack_depths);
996 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800997 return JDWP::ERR_NONE;
998}
999
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001000JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
1001 JDWP::ObjectId& contended_monitor) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001002 mirror::Object* contended_monitor_obj;
Elliott Hughesf9501702013-01-11 11:22:27 -08001003 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001004 {
1005 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
1006 Thread* thread;
1007 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1008 if (error != JDWP::ERR_NONE) {
1009 return error;
1010 }
1011 if (!IsSuspendedForDebugger(soa, thread)) {
1012 return JDWP::ERR_THREAD_NOT_SUSPENDED;
1013 }
1014 contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Elliott Hughesf9501702013-01-11 11:22:27 -08001015 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001016 // Add() requires the thread_list_lock_ not held to avoid the lock
1017 // level violation.
1018 contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -08001019 return JDWP::ERR_NONE;
1020}
1021
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001022JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
1023 std::vector<uint64_t>& counts)
1024 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001025 gc::Heap* heap = Runtime::Current()->GetHeap();
1026 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001027 std::vector<mirror::Class*> classes;
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001028 counts.clear();
1029 for (size_t i = 0; i < class_ids.size(); ++i) {
1030 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001031 mirror::Class* c = DecodeClass(class_ids[i], status);
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001032 if (c == NULL) {
1033 return status;
1034 }
1035 classes.push_back(c);
1036 counts.push_back(0);
1037 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001038 heap->CountInstances(classes, false, &counts[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001039 return JDWP::ERR_NONE;
1040}
1041
Elliott Hughes3b78c942013-01-15 17:35:41 -08001042JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::ObjectId>& instances)
1043 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001044 gc::Heap* heap = Runtime::Current()->GetHeap();
1045 // We only want reachable instances, so do a GC.
1046 heap->CollectGarbage(false);
Elliott Hughes3b78c942013-01-15 17:35:41 -08001047 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001048 mirror::Class* c = DecodeClass(class_id, status);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001049 if (c == nullptr) {
Elliott Hughes3b78c942013-01-15 17:35:41 -08001050 return status;
1051 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001052 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001053 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
1054 for (size_t i = 0; i < raw_instances.size(); ++i) {
1055 instances.push_back(gRegistry->Add(raw_instances[i]));
1056 }
1057 return JDWP::ERR_NONE;
1058}
1059
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001060JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
1061 std::vector<JDWP::ObjectId>& referring_objects)
1062 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001063 gc::Heap* heap = Runtime::Current()->GetHeap();
1064 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001065 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001066 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001067 return JDWP::ERR_INVALID_OBJECT;
1068 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001069 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001070 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001071 for (size_t i = 0; i < raw_instances.size(); ++i) {
1072 referring_objects.push_back(gRegistry->Add(raw_instances[i]));
1073 }
1074 return JDWP::ERR_NONE;
1075}
1076
Elliott Hughes64f574f2013-02-20 14:57:12 -08001077JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id)
1078 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001079 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
1080 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
1081 return JDWP::ERR_INVALID_OBJECT;
1082 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001083 gRegistry->DisableCollection(object_id);
1084 return JDWP::ERR_NONE;
1085}
1086
1087JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id)
1088 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001089 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
1090 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
1091 // also ignores these cases and never return an error. However it's not obvious why this command
1092 // should behave differently from DisableCollection and IsCollected commands. So let's be more
1093 // strict and return an error if this happens.
1094 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
1095 return JDWP::ERR_INVALID_OBJECT;
1096 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001097 gRegistry->EnableCollection(object_id);
1098 return JDWP::ERR_NONE;
1099}
1100
1101JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool& is_collected)
1102 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001103 if (object_id == 0) {
1104 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +01001105 return JDWP::ERR_INVALID_OBJECT;
1106 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001107 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1108 // the RI seems to ignore this and assume object has been collected.
1109 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
1110 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
1111 is_collected = true;
1112 } else {
1113 is_collected = gRegistry->IsCollected(object_id);
1114 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001115 return JDWP::ERR_NONE;
1116}
1117
1118void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
1119 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1120 gRegistry->DisposeObject(object_id, reference_count);
1121}
1122
Sebastien Hertzd5391672014-09-09 12:10:13 +02001123JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001124 DCHECK(klass != nullptr);
1125 if (klass->IsArrayClass()) {
1126 return JDWP::TT_ARRAY;
1127 } else if (klass->IsInterface()) {
1128 return JDWP::TT_INTERFACE;
1129 } else {
1130 return JDWP::TT_CLASS;
1131 }
1132}
1133
Elliott Hughes88d63092013-01-09 09:55:54 -08001134JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001135 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001136 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001137 if (c == NULL) {
1138 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001139 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001140
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001141 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1142 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001143 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001144 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001145}
1146
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001147void Dbg::GetClassList(std::vector<JDWP::RefTypeId>& classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001148 // Get the complete list of reference classes (i.e. all classes except
1149 // the primitive types).
1150 // Returns a newly-allocated buffer full of RefTypeId values.
1151 struct ClassListCreator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001152 explicit ClassListCreator(std::vector<JDWP::RefTypeId>& classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001153 }
1154
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001155 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001156 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1157 }
1158
Elliott Hughes64f574f2013-02-20 14:57:12 -08001159 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1160 // annotalysis.
1161 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001162 if (!c->IsPrimitive()) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001163 classes.push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001164 }
1165 return true;
1166 }
1167
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001168 std::vector<JDWP::RefTypeId>& classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001169 };
1170
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001171 ClassListCreator clc(classes);
Sebastien Hertz95795e22014-08-28 14:41:50 +02001172 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(ClassListCreator::Visit,
1173 &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001174}
1175
Ian Rogerscb6b0f32014-08-12 02:30:58 -07001176JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1177 uint32_t* pStatus, std::string* pDescriptor) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001178 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001179 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001180 if (c == NULL) {
1181 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001182 }
1183
Elliott Hughesa2155262011-11-16 16:26:58 -08001184 if (c->IsArrayClass()) {
1185 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1186 *pTypeTag = JDWP::TT_ARRAY;
1187 } else {
1188 if (c->IsErroneous()) {
1189 *pStatus = JDWP::CS_ERROR;
1190 } else {
1191 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1192 }
1193 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1194 }
1195
1196 if (pDescriptor != NULL) {
Ian Rogerscb6b0f32014-08-12 02:30:58 -07001197 std::string temp;
1198 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001199 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001200 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001201}
1202
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001203void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001204 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001205 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
1206 ids.clear();
1207 for (size_t i = 0; i < classes.size(); ++i) {
1208 ids.push_back(gRegistry->Add(classes[i]));
1209 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001210}
1211
Elliott Hughes64f574f2013-02-20 14:57:12 -08001212JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
1213 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001214 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001215 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001216 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001217 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001218
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001219 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001220 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001221
1222 expandBufAdd1(pReply, type_tag);
1223 expandBufAddRefTypeId(pReply, type_id);
1224
1225 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001226}
1227
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001228JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001229 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001230 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001231 if (c == NULL) {
1232 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001233 }
Ian Rogerscb6b0f32014-08-12 02:30:58 -07001234 std::string temp;
1235 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001236 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001237}
1238
Elliott Hughes88d63092013-01-09 09:55:54 -08001239JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string& result) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001240 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001241 mirror::Class* c = DecodeClass(class_id, status);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001242 if (c == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001243 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001244 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001245 const char* source_file = c->GetSourceFile();
1246 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001247 return JDWP::ERR_ABSENT_INFORMATION;
1248 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001249 result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001250 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001251}
1252
Elliott Hughes88d63092013-01-09 09:55:54 -08001253JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t& tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001254 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001255 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001256 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes546b9862012-06-20 16:06:13 -07001257 return JDWP::ERR_INVALID_OBJECT;
1258 }
Ian Rogers98379392014-02-24 16:53:16 -08001259 tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001260 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001261}
1262
Elliott Hughesaed4be92011-12-02 16:16:23 -08001263size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001264 switch (tag) {
1265 case JDWP::JT_VOID:
1266 return 0;
1267 case JDWP::JT_BYTE:
1268 case JDWP::JT_BOOLEAN:
1269 return 1;
1270 case JDWP::JT_CHAR:
1271 case JDWP::JT_SHORT:
1272 return 2;
1273 case JDWP::JT_FLOAT:
1274 case JDWP::JT_INT:
1275 return 4;
1276 case JDWP::JT_ARRAY:
1277 case JDWP::JT_OBJECT:
1278 case JDWP::JT_STRING:
1279 case JDWP::JT_THREAD:
1280 case JDWP::JT_THREAD_GROUP:
1281 case JDWP::JT_CLASS_LOADER:
1282 case JDWP::JT_CLASS_OBJECT:
1283 return sizeof(JDWP::ObjectId);
1284 case JDWP::JT_DOUBLE:
1285 case JDWP::JT_LONG:
1286 return 8;
1287 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001288 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001289 return -1;
1290 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001291}
1292
Elliott Hughes88d63092013-01-09 09:55:54 -08001293JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int& length) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001294 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001295 mirror::Array* a = DecodeArray(array_id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001296 if (a == NULL) {
1297 return status;
Elliott Hughes24437992011-11-30 14:49:33 -08001298 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001299 length = a->GetLength();
1300 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001301}
1302
Elliott Hughes88d63092013-01-09 09:55:54 -08001303JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001304 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001305 mirror::Array* a = DecodeArray(array_id, status);
Ian Rogers98379392014-02-24 16:53:16 -08001306 if (a == nullptr) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001307 return status;
1308 }
Elliott Hughes24437992011-11-30 14:49:33 -08001309
1310 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1311 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001312 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001313 }
Ian Rogerscb6b0f32014-08-12 02:30:58 -07001314 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1315 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001316 expandBufAdd4BE(pReply, count);
1317
Ian Rogerscb6b0f32014-08-12 02:30:58 -07001318 if (IsPrimitiveTag(element_tag)) {
1319 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001320 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1321 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001322 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001323 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1324 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001325 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001326 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1327 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001328 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001329 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1330 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001331 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001332 memcpy(dst, &src[offset * width], count * width);
1333 }
1334 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001335 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001336 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001337 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001338 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001339 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogerscb6b0f32014-08-12 02:30:58 -07001340 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001341 expandBufAdd1(pReply, specific_tag);
1342 expandBufAddObjectId(pReply, gRegistry->Add(element));
1343 }
1344 }
1345
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001346 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001347}
1348
Ian Rogersef7d42f2014-01-06 12:55:46 -08001349template <typename T>
1350static void CopyArrayData(mirror::Array* a, JDWP::Request& src, int offset, int count)
1351 NO_THREAD_SAFETY_ANALYSIS {
1352 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001353 DCHECK(a->GetClass()->IsPrimitiveArray());
1354
Ian Rogersef7d42f2014-01-06 12:55:46 -08001355 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001356 for (int i = 0; i < count; ++i) {
1357 *dst++ = src.ReadValue(sizeof(T));
1358 }
1359}
1360
Elliott Hughes88d63092013-01-09 09:55:54 -08001361JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001362 JDWP::Request& request)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001363 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001364 JDWP::JdwpError status;
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001365 mirror::Array* dst = DecodeArray(array_id, status);
1366 if (dst == NULL) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001367 return status;
1368 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001369
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001370 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001371 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001372 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001373 }
Ian Rogerscb6b0f32014-08-12 02:30:58 -07001374 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001375
Ian Rogerscb6b0f32014-08-12 02:30:58 -07001376 if (IsPrimitiveTag(element_tag)) {
1377 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001378 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001379 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001380 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001381 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001382 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001383 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001384 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001385 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001386 }
1387 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001388 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001389 for (int i = 0; i < count; ++i) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001390 JDWP::ObjectId id = request.ReadObjectId();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001391 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001392 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001393 return JDWP::ERR_INVALID_OBJECT;
1394 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001395 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001396 }
1397 }
1398
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001399 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001400}
1401
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001402JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001403 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001404}
1405
Elliott Hughes88d63092013-01-09 09:55:54 -08001406JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001407 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001408 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001409 if (c == NULL) {
1410 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001411 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001412 new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001413 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001414}
1415
Elliott Hughesbf13d362011-12-08 15:51:37 -08001416/*
1417 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1418 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001419JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001420 JDWP::ObjectId& new_array) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001421 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001422 mirror::Class* c = DecodeClass(array_class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001423 if (c == NULL) {
1424 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001425 }
Ian Rogers6fac4472014-02-25 17:01:10 -08001426 new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
1427 c->GetComponentSize(),
1428 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001429 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001430}
1431
Sebastien Hertzd5391672014-09-09 12:10:13 +02001432JDWP::FieldId Dbg::ToFieldId(const mirror::ArtField* f) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001433 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001434 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001435}
1436
Brian Carlstromea46f952013-07-30 01:26:50 -07001437static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001438 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001439 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001440 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001441}
1442
Brian Carlstromea46f952013-07-30 01:26:50 -07001443static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001444 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001445 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001446 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001447}
1448
Brian Carlstromea46f952013-07-30 01:26:50 -07001449static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001450 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001451 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001452 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001453}
1454
Sebastien Hertzd5391672014-09-09 12:10:13 +02001455bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1456 CHECK(event_thread != nullptr);
1457 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(expected_thread_id);
1458 return expected_thread_peer == event_thread->GetPeer();
1459}
1460
1461bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1462 const JDWP::EventLocation& event_location) {
1463 if (expected_location.dex_pc != event_location.dex_pc) {
1464 return false;
1465 }
1466 mirror::ArtMethod* m = FromMethodId(expected_location.method_id);
1467 return m == event_location.method;
1468}
1469
1470bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) {
Sebastien Hertzbbb63892014-09-19 12:07:51 +02001471 if (event_class == nullptr) {
1472 return false;
1473 }
Sebastien Hertzd5391672014-09-09 12:10:13 +02001474 JDWP::JdwpError status;
1475 mirror::Class* expected_class = DecodeClass(class_id, status);
1476 CHECK(expected_class != nullptr);
1477 return expected_class->IsAssignableFrom(event_class);
1478}
1479
1480bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
1481 mirror::ArtField* event_field) {
1482 mirror::ArtField* expected_field = FromFieldId(expected_field_id);
1483 if (expected_field != event_field) {
1484 return false;
1485 }
1486 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1487}
1488
1489bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1490 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id);
1491 return modifier_instance == event_instance;
1492}
1493
1494void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001495 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzd5391672014-09-09 12:10:13 +02001496 if (m == nullptr) {
Sebastien Hertzbbb63892014-09-19 12:07:51 +02001497 memset(location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001498 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001499 mirror::Class* c = m->GetDeclaringClass();
Sebastien Hertzd5391672014-09-09 12:10:13 +02001500 location->type_tag = GetTypeTag(c);
1501 location->class_id = gRegistry->AddRefType(c);
1502 location->method_id = ToMethodId(m);
1503 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001504 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001505}
1506
Elliott Hughesa96836a2013-01-17 12:27:49 -08001507std::string Dbg::GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001508 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001509 mirror::ArtMethod* m = FromMethodId(method_id);
Sebastien Hertzbbb63892014-09-19 12:07:51 +02001510 if (m == nullptr) {
1511 return "NULL";
1512 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001513 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001514}
1515
Elliott Hughesa96836a2013-01-17 12:27:49 -08001516std::string Dbg::GetFieldName(JDWP::FieldId field_id)
1517 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzbbb63892014-09-19 12:07:51 +02001518 mirror::ArtField* f = FromFieldId(field_id);
1519 if (f == nullptr) {
1520 return "NULL";
1521 }
1522 return f->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001523}
1524
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001525/*
1526 * Augment the access flags for synthetic methods and fields by setting
1527 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1528 * flags not specified by the Java programming language.
1529 */
1530static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1531 accessFlags &= kAccJavaFlagsMask;
1532 if ((accessFlags & kAccSynthetic) != 0) {
1533 accessFlags |= 0xf0000000;
1534 }
1535 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001536}
1537
Elliott Hughesdbb40792011-11-18 17:05:22 -08001538/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001539 * Circularly shifts registers so that arguments come first. Debuggers
1540 * expect slots to begin with arguments, but dex code places them at
1541 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001542 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001543static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1544 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001545 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001546 if (code_item == nullptr) {
1547 // We should not get here for a method without code (native, proxy or abstract). Log it and
1548 // return the slot as is since all registers are arguments.
1549 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1550 return slot;
1551 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001552 uint16_t ins_size = code_item->ins_size_;
1553 uint16_t locals_size = code_item->registers_size_ - ins_size;
1554 if (slot >= locals_size) {
1555 return slot - locals_size;
1556 } else {
1557 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001558 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001559}
1560
Jeff Haob7cefc72013-11-14 14:51:09 -08001561/*
1562 * Circularly shifts registers so that arguments come last. Reverts
1563 * slots to dex style argument placement.
1564 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001565static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001566 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001567 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001568 if (code_item == nullptr) {
1569 // We should not get here for a method without code (native, proxy or abstract). Log it and
1570 // return the slot as is since all registers are arguments.
1571 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1572 return slot;
1573 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001574 uint16_t ins_size = code_item->ins_size_;
1575 uint16_t locals_size = code_item->registers_size_ - ins_size;
1576 if (slot < ins_size) {
1577 return slot + locals_size;
1578 } else {
1579 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001580 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001581}
1582
Elliott Hughes88d63092013-01-09 09:55:54 -08001583JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001584 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001585 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001586 if (c == NULL) {
1587 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001588 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001589
1590 size_t instance_field_count = c->NumInstanceFields();
1591 size_t static_field_count = c->NumStaticFields();
1592
1593 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1594
1595 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001596 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001597 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001598 expandBufAddUtf8String(pReply, f->GetName());
1599 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001600 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001601 static const char genericSignature[1] = "";
1602 expandBufAddUtf8String(pReply, genericSignature);
1603 }
1604 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1605 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001606 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001607}
1608
Elliott Hughes88d63092013-01-09 09:55:54 -08001609JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001610 JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001611 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001612 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001613 if (c == NULL) {
1614 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001615 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001616
1617 size_t direct_method_count = c->NumDirectMethods();
1618 size_t virtual_method_count = c->NumVirtualMethods();
1619
1620 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1621
1622 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001623 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001624 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001625 expandBufAddUtf8String(pReply, m->GetName());
1626 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001627 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001628 static const char genericSignature[1] = "";
1629 expandBufAddUtf8String(pReply, genericSignature);
1630 }
1631 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1632 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001633 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001634}
1635
Elliott Hughes88d63092013-01-09 09:55:54 -08001636JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001637 JDWP::JdwpError status;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001638 Thread* self = Thread::Current();
1639 StackHandleScope<1> hs(self);
1640 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, status)));
1641 if (c.Get() == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001642 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001643 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001644 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001645 expandBufAdd4BE(pReply, interface_count);
1646 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001647 expandBufAddRefTypeId(pReply,
1648 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001649 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001650 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001651}
1652
Elliott Hughes88d63092013-01-09 09:55:54 -08001653void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001654 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001655 struct DebugCallbackContext {
1656 int numItems;
1657 JDWP::ExpandBuf* pReply;
1658
Elliott Hughes2435a572012-02-17 16:07:41 -08001659 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001660 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1661 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001662 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001663 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001664 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001665 }
1666 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001667 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001668 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001669 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001670 if (code_item == nullptr) {
1671 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001672 start = -1;
1673 end = -1;
1674 } else {
1675 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001676 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001677 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001678 }
1679
1680 expandBufAdd8BE(pReply, start);
1681 expandBufAdd8BE(pReply, end);
1682
1683 // Add numLines later
1684 size_t numLinesOffset = expandBufGetLength(pReply);
1685 expandBufAdd4BE(pReply, 0);
1686
1687 DebugCallbackContext context;
1688 context.numItems = 0;
1689 context.pReply = pReply;
1690
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001691 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001692 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
1693 DebugCallbackContext::Callback, NULL, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001694 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001695
1696 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001697}
1698
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001699void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1700 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001701 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001702 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001703 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001704 size_t variable_count;
1705 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001706
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001707 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1708 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001709 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001710 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1711
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001712 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1713 pContext->variable_count, startAddress, endAddress - startAddress,
1714 name, descriptor, signature, slot,
1715 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001716
Jeff Haob7cefc72013-11-14 14:51:09 -08001717 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001718
Elliott Hughesdbb40792011-11-18 17:05:22 -08001719 expandBufAdd8BE(pContext->pReply, startAddress);
1720 expandBufAddUtf8String(pContext->pReply, name);
1721 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001722 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001723 expandBufAddUtf8String(pContext->pReply, signature);
1724 }
1725 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1726 expandBufAdd4BE(pContext->pReply, slot);
1727
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001728 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001729 }
1730 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001731 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001732
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001733 // arg_count considers doubles and longs to take 2 units.
1734 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001735 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001736 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001737
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001738 // We don't know the total number of variables yet, so leave a blank and update it later.
1739 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001740 expandBufAdd4BE(pReply, 0);
1741
1742 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001743 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001744 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001745 context.variable_count = 0;
1746 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001747
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001748 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001749 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001750 m->GetDexFile()->DecodeDebugInfo(
1751 code_item, m->IsStatic(), m->GetDexMethodIndex(), NULL, DebugCallbackContext::Callback,
1752 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001753 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001754
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001755 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001756}
1757
Jeff Hao579b0242013-11-18 13:16:49 -08001758void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1759 JDWP::ExpandBuf* pReply) {
1760 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001761 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001762 OutputJValue(tag, return_value, pReply);
1763}
1764
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001765void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1766 JDWP::ExpandBuf* pReply) {
1767 mirror::ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001768 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001769 OutputJValue(tag, field_value, pReply);
1770}
1771
Elliott Hughes9777ba22013-01-17 09:04:19 -08001772JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
1773 std::vector<uint8_t>& bytecodes)
1774 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001775 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001776 if (m == NULL) {
1777 return JDWP::ERR_INVALID_METHODID;
1778 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001779 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001780 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1781 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1782 const uint8_t* end = begin + byte_count;
1783 for (const uint8_t* p = begin; p != end; ++p) {
1784 bytecodes.push_back(*p);
1785 }
1786 return JDWP::ERR_NONE;
1787}
1788
Elliott Hughes88d63092013-01-09 09:55:54 -08001789JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001790 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001791}
1792
Elliott Hughes88d63092013-01-09 09:55:54 -08001793JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001794 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001795}
1796
Elliott Hughes88d63092013-01-09 09:55:54 -08001797static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1798 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001799 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001800 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001801 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001802 mirror::Class* c = DecodeClass(ref_type_id, status);
Elliott Hughes88d63092013-01-09 09:55:54 -08001803 if (ref_type_id != 0 && c == NULL) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001804 return status;
1805 }
1806
Sebastien Hertzd5391672014-09-09 12:10:13 +02001807 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001808 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001809 return JDWP::ERR_INVALID_OBJECT;
1810 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001811 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001812
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001813 mirror::Class* receiver_class = c;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001814 if (receiver_class == NULL && o != NULL) {
1815 receiver_class = o->GetClass();
1816 }
1817 // TODO: should we give up now if receiver_class is NULL?
1818 if (receiver_class != NULL && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
1819 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001820 return JDWP::ERR_INVALID_FIELDID;
1821 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001822
Elliott Hughes0cf74332012-02-23 23:14:00 -08001823 // The RI only enforces the static/non-static mismatch in one direction.
1824 // TODO: should we change the tests and check both?
1825 if (is_static) {
1826 if (!f->IsStatic()) {
1827 return JDWP::ERR_INVALID_FIELDID;
1828 }
1829 } else {
1830 if (f->IsStatic()) {
1831 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001832 }
1833 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001834 if (f->IsStatic()) {
1835 o = f->GetDeclaringClass();
1836 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001837
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001838 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001839 JValue field_value;
1840 if (tag == JDWP::JT_VOID) {
1841 LOG(FATAL) << "Unknown tag: " << tag;
1842 } else if (!IsPrimitiveTag(tag)) {
1843 field_value.SetL(f->GetObject(o));
1844 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1845 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001846 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001847 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001848 }
Jeff Hao579b0242013-11-18 13:16:49 -08001849 Dbg::OutputJValue(tag, &field_value, pReply);
1850
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001851 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001852}
1853
Elliott Hughes88d63092013-01-09 09:55:54 -08001854JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001855 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001856 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001857}
1858
Elliott Hughes88d63092013-01-09 09:55:54 -08001859JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) {
1860 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001861}
1862
Elliott Hughes88d63092013-01-09 09:55:54 -08001863static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001864 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001865 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzd5391672014-09-09 12:10:13 +02001866 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001867 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001868 return JDWP::ERR_INVALID_OBJECT;
1869 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001870 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001871
1872 // The RI only enforces the static/non-static mismatch in one direction.
1873 // TODO: should we change the tests and check both?
1874 if (is_static) {
1875 if (!f->IsStatic()) {
1876 return JDWP::ERR_INVALID_FIELDID;
1877 }
1878 } else {
1879 if (f->IsStatic()) {
1880 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001881 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001882 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001883 if (f->IsStatic()) {
1884 o = f->GetDeclaringClass();
1885 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001886
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001887 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001888
1889 if (IsPrimitiveTag(tag)) {
1890 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001891 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001892 // Debugging can't use transactional mode (runtime only).
1893 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001894 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001895 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001896 // Debugging can't use transactional mode (runtime only).
1897 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001898 }
1899 } else {
Sebastien Hertzd5391672014-09-09 12:10:13 +02001900 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001901 if (v == ObjectRegistry::kInvalidObject) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001902 return JDWP::ERR_INVALID_OBJECT;
1903 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001904 if (v != NULL) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001905 mirror::Class* field_type;
1906 {
1907 StackHandleScope<3> hs(Thread::Current());
1908 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1909 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
1910 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
1911 field_type = FieldHelper(h_f).GetType();
1912 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001913 if (!field_type->IsAssignableFrom(v->GetClass())) {
1914 return JDWP::ERR_INVALID_OBJECT;
1915 }
1916 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001917 // Debugging can't use transactional mode (runtime only).
1918 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001919 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001920
1921 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001922}
1923
Elliott Hughes88d63092013-01-09 09:55:54 -08001924JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001925 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001926 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001927}
1928
Elliott Hughes88d63092013-01-09 09:55:54 -08001929JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1930 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001931}
1932
Sebastien Hertz29259fa2014-09-15 11:27:27 +02001933JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
1934 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id);
1935 if (obj == nullptr || obj == ObjectRegistry::kInvalidObject) {
1936 return JDWP::ERR_INVALID_OBJECT;
1937 }
1938 {
1939 ScopedObjectAccessUnchecked soa(Thread::Current());
1940 mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String);
1941 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
1942 // This isn't a string.
1943 return JDWP::ERR_INVALID_STRING;
1944 }
1945 }
1946 *str = obj->AsString()->ToModifiedUtf8();
1947 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001948}
1949
Jeff Hao579b0242013-11-18 13:16:49 -08001950void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1951 if (IsPrimitiveTag(tag)) {
1952 expandBufAdd1(pReply, tag);
1953 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1954 expandBufAdd1(pReply, return_value->GetI());
1955 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1956 expandBufAdd2BE(pReply, return_value->GetI());
1957 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1958 expandBufAdd4BE(pReply, return_value->GetI());
1959 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1960 expandBufAdd8BE(pReply, return_value->GetJ());
1961 } else {
1962 CHECK_EQ(tag, JDWP::JT_VOID);
1963 }
1964 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001965 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001966 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001967 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001968 expandBufAddObjectId(pReply, gRegistry->Add(value));
1969 }
1970}
1971
Elliott Hughes221229c2013-01-08 18:17:50 -08001972JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string& name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001973 ScopedObjectAccessUnchecked soa(Thread::Current());
1974 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001975 Thread* thread;
1976 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1977 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1978 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001979 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001980
1981 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001982 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Brian Carlstromea46f952013-07-30 01:26:50 -07001983 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001984 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1985 mirror::String* s =
1986 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Elliott Hughes221229c2013-01-08 18:17:50 -08001987 if (s != NULL) {
1988 name = s->ToModifiedUtf8();
1989 }
1990 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001991}
1992
Elliott Hughes221229c2013-01-08 18:17:50 -08001993JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertz5d1c1bb2014-09-15 19:21:30 +02001994 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001995 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001996 if (thread_object == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001997 return JDWP::ERR_INVALID_OBJECT;
1998 }
Ian Rogers98379392014-02-24 16:53:16 -08001999 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08002000 // Okay, so it's an object, but is it actually a thread?
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002001 JDWP::JdwpError error;
2002 {
2003 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2004 Thread* thread;
2005 error = DecodeThread(soa, thread_id, thread);
2006 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002007 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2008 // Zombie threads are in the null group.
2009 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002010 error = JDWP::ERR_NONE;
2011 } else if (error == JDWP::ERR_NONE) {
2012 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
2013 CHECK(c != nullptr);
2014 mirror::ArtField* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002015 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002016 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002017 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002018 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
2019 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08002020 }
Ian Rogers98379392014-02-24 16:53:16 -08002021 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002022 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002023}
2024
Sebastien Hertz5d1c1bb2014-09-15 19:21:30 +02002025static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
2026 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
2027 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2028 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id);
2029 if (thread_group == nullptr || thread_group == ObjectRegistry::kInvalidObject) {
2030 *error = JDWP::ERR_INVALID_OBJECT;
2031 return nullptr;
2032 }
Ian Rogers98379392014-02-24 16:53:16 -08002033 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
2034 CHECK(c != nullptr);
Sebastien Hertz5d1c1bb2014-09-15 19:21:30 +02002035 if (!c->IsAssignableFrom(thread_group->GetClass())) {
2036 // This is not a java.lang.ThreadGroup.
2037 *error = JDWP::ERR_INVALID_THREAD_GROUP;
2038 return nullptr;
2039 }
2040 *error = JDWP::ERR_NONE;
2041 return thread_group;
2042}
2043
2044JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
2045 ScopedObjectAccessUnchecked soa(Thread::Current());
2046 JDWP::JdwpError error;
2047 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2048 if (error != JDWP::ERR_NONE) {
2049 return error;
2050 }
2051 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupName");
2052 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
Brian Carlstromea46f952013-07-30 01:26:50 -07002053 mirror::ArtField* f = c->FindInstanceField("name", "Ljava/lang/String;");
Elliott Hughes499c5132011-11-17 14:55:11 -08002054 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002055 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Ian Rogers98379392014-02-24 16:53:16 -08002056 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz5d1c1bb2014-09-15 19:21:30 +02002057
2058 std::string thread_group_name(s->ToModifiedUtf8());
2059 expandBufAddUtf8String(pReply, thread_group_name);
2060 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002061}
2062
Sebastien Hertz5d1c1bb2014-09-15 19:21:30 +02002063JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08002064 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz5d1c1bb2014-09-15 19:21:30 +02002065 JDWP::JdwpError error;
2066 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2067 if (error != JDWP::ERR_NONE) {
2068 return error;
2069 }
Ian Rogers98379392014-02-24 16:53:16 -08002070 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupParent");
2071 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
2072 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07002073 mirror::ArtField* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
Elliott Hughes4e235312011-12-02 11:34:15 -08002074 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002075 mirror::Object* parent = f->GetObject(thread_group);
Ian Rogers98379392014-02-24 16:53:16 -08002076 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz5d1c1bb2014-09-15 19:21:30 +02002077
2078 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
2079 expandBufAddObjectId(pReply, parent_group_id);
2080 return JDWP::ERR_NONE;
2081}
2082
2083static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
2084 std::vector<JDWP::ObjectId>* child_thread_group_ids)
2085 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2086 CHECK(thread_group != nullptr);
2087
2088 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
2089 mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
2090 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
2091
2092 // Get the array and size out of the ArrayList<ThreadGroup>...
2093 mirror::ArtField* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;");
2094 mirror::ArtField* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I");
2095 mirror::ObjectArray<mirror::Object>* groups_array =
2096 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
2097 const int32_t size = size_field->GetInt(groups_array_list);
2098
2099 // Copy the first 'size' elements out of the array into the result.
2100 ObjectRegistry* registry = Dbg::GetObjectRegistry();
2101 for (int32_t i = 0; i < size; ++i) {
2102 child_thread_group_ids->push_back(registry->Add(groups_array->Get(i)));
2103 }
2104}
2105
2106JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2107 JDWP::ExpandBuf* pReply) {
2108 ScopedObjectAccessUnchecked soa(Thread::Current());
2109 JDWP::JdwpError error;
2110 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2111 if (error != JDWP::ERR_NONE) {
2112 return error;
2113 }
2114
2115 // Add child threads.
2116 {
2117 std::vector<JDWP::ObjectId> child_thread_ids;
2118 GetThreads(thread_group, &child_thread_ids);
2119 expandBufAdd4BE(pReply, child_thread_ids.size());
2120 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2121 expandBufAddObjectId(pReply, child_thread_id);
2122 }
2123 }
2124
2125 // Add child thread groups.
2126 {
2127 std::vector<JDWP::ObjectId> child_thread_groups_ids;
2128 GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids);
2129 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2130 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2131 expandBufAddObjectId(pReply, child_thread_group_id);
2132 }
2133 }
2134
2135 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002136}
2137
2138JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002139 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07002140 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002141 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002142 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002143}
2144
Jeff Hao920af3e2013-08-28 15:46:38 -07002145JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2146 switch (state) {
2147 case kBlocked:
2148 return JDWP::TS_MONITOR;
2149 case kNative:
2150 case kRunnable:
2151 case kSuspended:
2152 return JDWP::TS_RUNNING;
2153 case kSleeping:
2154 return JDWP::TS_SLEEPING;
2155 case kStarting:
2156 case kTerminated:
2157 return JDWP::TS_ZOMBIE;
2158 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002159 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002160 case kWaitingForDebuggerSend:
2161 case kWaitingForDebuggerSuspension:
2162 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002163 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002164 case kWaitingForGcToComplete:
Jeff Hao920af3e2013-08-28 15:46:38 -07002165 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002166 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002167 case kWaitingForSignalCatcherOutput:
2168 case kWaitingInMainDebuggerLoop:
2169 case kWaitingInMainSignalCatcherLoop:
2170 case kWaitingPerformingGc:
2171 case kWaiting:
2172 return JDWP::TS_WAIT;
2173 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2174 }
2175 LOG(FATAL) << "Unknown thread state: " << state;
2176 return JDWP::TS_ZOMBIE;
2177}
2178
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002179JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2180 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002181 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002182
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002183 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2184
Ian Rogers50b35e22012-10-04 10:09:15 -07002185 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002186 Thread* thread;
2187 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2188 if (error != JDWP::ERR_NONE) {
2189 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2190 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002191 return JDWP::ERR_NONE;
2192 }
2193 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002194 }
2195
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002196 if (IsSuspendedForDebugger(soa, thread)) {
2197 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002198 }
2199
Jeff Hao920af3e2013-08-28 15:46:38 -07002200 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002201 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002202}
2203
Elliott Hughes221229c2013-01-08 18:17:50 -08002204JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002205 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07002206 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002207 Thread* thread;
2208 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2209 if (error != JDWP::ERR_NONE) {
2210 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002211 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002212 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002213 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002214 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002215}
2216
Elliott Hughesf9501702013-01-11 11:22:27 -08002217JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2218 ScopedObjectAccess soa(Thread::Current());
2219 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2220 Thread* thread;
2221 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2222 if (error != JDWP::ERR_NONE) {
2223 return error;
2224 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002225 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002226 return JDWP::ERR_NONE;
2227}
2228
Sebastien Hertzd3577642014-09-09 12:08:49 +02002229static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa,
2230 mirror::Object* desired_thread_group, mirror::Object* peer)
2231 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2232 // Do we want threads from all thread groups?
2233 if (desired_thread_group == nullptr) {
2234 return true;
2235 }
2236 mirror::ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
2237 DCHECK(thread_group_field != nullptr);
2238 mirror::Object* group = thread_group_field->GetObject(peer);
2239 return (group == desired_thread_group);
2240}
2241
Sebastien Hertz5d1c1bb2014-09-15 19:21:30 +02002242void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002243 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertzd3577642014-09-09 12:08:49 +02002244 std::list<Thread*> all_threads_list;
2245 {
2246 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2247 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2248 }
2249 for (Thread* t : all_threads_list) {
2250 if (t == Dbg::GetDebugThread()) {
2251 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2252 // query all threads, so it's easier if we just don't tell them about this thread.
2253 continue;
2254 }
2255 if (t->IsStillStarting()) {
2256 // This thread is being started (and has been registered in the thread list). However, it is
2257 // not completely started yet so we must ignore it.
2258 continue;
2259 }
2260 mirror::Object* peer = t->GetPeer();
2261 if (peer == nullptr) {
2262 // peer might be NULL if the thread is still starting up. We can't tell the debugger about
2263 // this thread yet.
2264 // TODO: if we identified threads to the debugger by their Thread*
2265 // rather than their peer's mirror::Object*, we could fix this.
2266 // Doing so might help us report ZOMBIE threads too.
2267 continue;
2268 }
2269 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
Sebastien Hertz5d1c1bb2014-09-15 19:21:30 +02002270 thread_ids->push_back(gRegistry->Add(peer));
Sebastien Hertzd3577642014-09-09 12:08:49 +02002271 }
2272 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002273}
Elliott Hughesa2155262011-11-16 16:26:58 -08002274
Sebastien Hertz5d1c1bb2014-09-15 19:21:30 +02002275static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002276 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07002277 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002278 : StackVisitor(thread, NULL), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002279
Elliott Hughes64f574f2013-02-20 14:57:12 -08002280 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2281 // annotalysis.
2282 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002283 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002284 ++depth;
2285 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002286 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002287 }
2288 size_t depth;
2289 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002290
Ian Rogers7a22fa62013-01-23 12:16:16 -08002291 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002292 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002293 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002294}
2295
Elliott Hughes221229c2013-01-08 18:17:50 -08002296JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002297 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002298 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002299 Thread* thread;
2300 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2301 if (error != JDWP::ERR_NONE) {
2302 return error;
2303 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002304 if (!IsSuspendedForDebugger(soa, thread)) {
2305 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2306 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002307 result = GetStackDepth(thread);
2308 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002309}
2310
Ian Rogers306057f2012-11-26 12:45:53 -08002311JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2312 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002313 class GetFrameVisitor : public StackVisitor {
2314 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08002315 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002316 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002317 : StackVisitor(thread, NULL), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002318 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
2319 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002320 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002321
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002322 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2323 // annotalysis.
2324 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002325 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002326 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002327 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002328 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002329 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002330 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002331 if (depth_ >= start_frame_) {
2332 JDWP::FrameId frame_id(GetFrameId());
2333 JDWP::JdwpLocation location;
Sebastien Hertzd5391672014-09-09 12:10:13 +02002334 SetJdwpLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002335 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002336 expandBufAdd8BE(buf_, frame_id);
2337 expandBufAddLocation(buf_, location);
2338 }
2339 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002340 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002341 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002342
2343 private:
2344 size_t depth_;
2345 const size_t start_frame_;
2346 const size_t frame_count_;
2347 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002348 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002349
2350 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002351 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002352 Thread* thread;
2353 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2354 if (error != JDWP::ERR_NONE) {
2355 return error;
2356 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002357 if (!IsSuspendedForDebugger(soa, thread)) {
2358 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2359 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002360 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002361 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002362 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002363}
2364
2365JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertzd5391672014-09-09 12:10:13 +02002366 return GetThreadId(Thread::Current());
2367}
2368
2369JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002370 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertzd5391672014-09-09 12:10:13 +02002371 return gRegistry->Add(thread->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002372}
2373
Elliott Hughes475fc232011-10-25 15:00:35 -07002374void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002375 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002376}
2377
2378void Dbg::ResumeVM() {
Sebastien Hertz4eec0262014-10-14 17:27:15 +02002379 Runtime::Current()->GetThreadList()->ResumeAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002380}
2381
Elliott Hughes221229c2013-01-08 18:17:50 -08002382JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002383 Thread* self = Thread::Current();
2384 ScopedLocalRef<jobject> peer(self->GetJniEnv(), NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002385 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002386 ScopedObjectAccess soa(self);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002387 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002388 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002389 if (peer.get() == NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002390 return JDWP::ERR_THREAD_NOT_ALIVE;
2391 }
Ian Rogersf3d874c2014-07-17 18:52:42 -07002392 // Suspend thread to build stack trace. Take suspend thread lock to avoid races with threads
2393 // trying to suspend this one.
2394 MutexLock mu(self, *Locks::thread_list_suspend_thread_lock_);
Elliott Hughesf327e072013-01-09 16:01:26 -08002395 bool timed_out;
Brian Carlstrom37c16452014-08-27 23:43:46 -07002396 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2397 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2398 &timed_out);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002399 if (thread != NULL) {
2400 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002401 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002402 return JDWP::ERR_INTERNAL;
2403 } else {
2404 return JDWP::ERR_THREAD_NOT_ALIVE;
2405 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002406}
2407
Elliott Hughes221229c2013-01-08 18:17:50 -08002408void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002409 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002410 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
jeffhaoa77f0f62012-12-05 17:19:31 -08002411 Thread* thread;
2412 {
2413 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2414 thread = Thread::FromManagedThread(soa, peer);
2415 }
Elliott Hughes4e235312011-12-02 11:34:15 -08002416 if (thread == NULL) {
2417 LOG(WARNING) << "No such thread for resume: " << peer;
2418 return;
2419 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002420 bool needs_resume;
2421 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002422 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002423 needs_resume = thread->GetSuspendCount() > 0;
2424 }
2425 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002426 Runtime::Current()->GetThreadList()->Resume(thread, true);
2427 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002428}
2429
2430void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002431 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002432}
2433
Ian Rogers0399dde2012-06-06 17:09:28 -07002434struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002435 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002436 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002437 : StackVisitor(thread, context), this_object(NULL), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002438
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002439 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2440 // annotalysis.
2441 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002442 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002443 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002444 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002445 this_object = GetThisObject();
2446 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002447 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002448 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002449
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002450 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002451 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002452};
2453
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002454JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2455 JDWP::ObjectId* result) {
2456 ScopedObjectAccessUnchecked soa(Thread::Current());
2457 Thread* thread;
2458 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002459 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002460 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2461 if (error != JDWP::ERR_NONE) {
2462 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002463 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002464 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002465 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2466 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002467 }
Ian Rogers700a4022014-05-19 16:49:03 -07002468 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002469 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002470 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002471 *result = gRegistry->Add(visitor.this_object);
2472 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002473}
2474
Sebastien Hertz5797aef2014-09-01 17:07:11 +02002475// Walks the stack until we find the frame with the given FrameId.
2476class FindFrameVisitor FINAL : public StackVisitor {
2477 public:
2478 FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
2479 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2480 : StackVisitor(thread, context), frame_id_(frame_id), error_(JDWP::ERR_INVALID_FRAMEID) {}
Ian Rogersca190662012-06-26 15:45:57 -07002481
Sebastien Hertz5797aef2014-09-01 17:07:11 +02002482 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2483 // annotalysis.
2484 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
2485 if (GetFrameId() != frame_id_) {
2486 return true; // Not our frame, carry on.
Ian Rogers0399dde2012-06-06 17:09:28 -07002487 }
Sebastien Hertz5797aef2014-09-01 17:07:11 +02002488 mirror::ArtMethod* m = GetMethod();
2489 if (m->IsNative()) {
2490 // We can't read/write local value from/into native method.
2491 error_ = JDWP::ERR_OPAQUE_FRAME;
2492 } else {
2493 // We found our frame.
2494 error_ = JDWP::ERR_NONE;
2495 }
2496 return false;
2497 }
2498
2499 JDWP::JdwpError GetError() const {
2500 return error_;
2501 }
2502
2503 private:
2504 const JDWP::FrameId frame_id_;
2505 JDWP::JdwpError error_;
2506};
2507
2508JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2509 JDWP::ObjectId thread_id = request->ReadThreadId();
2510 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002511
2512 ScopedObjectAccessUnchecked soa(Thread::Current());
Elliott Hughes221229c2013-01-08 18:17:50 -08002513 Thread* thread;
Sebastien Hertz5797aef2014-09-01 17:07:11 +02002514 {
2515 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2516 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2517 if (error != JDWP::ERR_NONE) {
2518 return error;
2519 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002520 }
Sebastien Hertz5797aef2014-09-01 17:07:11 +02002521 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002522 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz5797aef2014-09-01 17:07:11 +02002523 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002524 visitor.WalkStack();
Sebastien Hertz5797aef2014-09-01 17:07:11 +02002525 if (visitor.GetError() != JDWP::ERR_NONE) {
2526 return visitor.GetError();
2527 }
2528
2529 // Read the values from visitor's context.
2530 int32_t slot_count = request->ReadSigned32("slot count");
2531 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2532 for (int32_t i = 0; i < slot_count; ++i) {
2533 uint32_t slot = request->ReadUnsigned32("slot");
2534 JDWP::JdwpTag reqSigByte = request->ReadTag();
2535
2536 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
2537
2538 size_t width = Dbg::GetTagWidth(reqSigByte);
2539 uint8_t* ptr = expandBufAddSpace(pReply, width+1);
2540 JDWP::JdwpError error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width);
2541 if (error != JDWP::ERR_NONE) {
2542 return error;
2543 }
2544 }
2545 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002546}
2547
Sebastien Hertz5797aef2014-09-01 17:07:11 +02002548JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2549 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
2550 mirror::ArtMethod* m = visitor.GetMethod();
2551 uint16_t reg = DemangleSlot(slot, m);
2552 // TODO: check that the tag is compatible with the actual type of the slot!
2553 // TODO: check slot is valid for this method or return INVALID_SLOT error.
2554 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
2555 switch (tag) {
2556 case JDWP::JT_BOOLEAN: {
2557 CHECK_EQ(width, 1U);
2558 uint32_t intVal;
2559 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2560 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2561 JDWP::Set1(buf + 1, intVal != 0);
2562 } else {
2563 VLOG(jdwp) << "failed to get boolean local " << reg;
2564 return kFailureErrorCode;
Ian Rogers0399dde2012-06-06 17:09:28 -07002565 }
Sebastien Hertz5797aef2014-09-01 17:07:11 +02002566 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002567 }
Sebastien Hertz5797aef2014-09-01 17:07:11 +02002568 case JDWP::JT_BYTE: {
2569 CHECK_EQ(width, 1U);
2570 uint32_t intVal;
2571 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2572 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2573 JDWP::Set1(buf + 1, intVal);
2574 } else {
2575 VLOG(jdwp) << "failed to get byte local " << reg;
2576 return kFailureErrorCode;
2577 }
2578 break;
2579 }
2580 case JDWP::JT_SHORT:
2581 case JDWP::JT_CHAR: {
2582 CHECK_EQ(width, 2U);
2583 uint32_t intVal;
2584 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2585 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2586 JDWP::Set2BE(buf + 1, intVal);
2587 } else {
2588 VLOG(jdwp) << "failed to get short/char local " << reg;
2589 return kFailureErrorCode;
2590 }
2591 break;
2592 }
2593 case JDWP::JT_INT: {
2594 CHECK_EQ(width, 4U);
2595 uint32_t intVal;
2596 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2597 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2598 JDWP::Set4BE(buf + 1, intVal);
2599 } else {
2600 VLOG(jdwp) << "failed to get int local " << reg;
2601 return kFailureErrorCode;
2602 }
2603 break;
2604 }
2605 case JDWP::JT_FLOAT: {
2606 CHECK_EQ(width, 4U);
2607 uint32_t intVal;
2608 if (visitor.GetVReg(m, reg, kFloatVReg, &intVal)) {
2609 VLOG(jdwp) << "get float local " << reg << " = " << intVal;
2610 JDWP::Set4BE(buf + 1, intVal);
2611 } else {
2612 VLOG(jdwp) << "failed to get float local " << reg;
2613 return kFailureErrorCode;
2614 }
2615 break;
2616 }
2617 case JDWP::JT_ARRAY:
2618 case JDWP::JT_CLASS_LOADER:
2619 case JDWP::JT_CLASS_OBJECT:
2620 case JDWP::JT_OBJECT:
2621 case JDWP::JT_STRING:
2622 case JDWP::JT_THREAD:
2623 case JDWP::JT_THREAD_GROUP: {
2624 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2625 uint32_t intVal;
2626 if (visitor.GetVReg(m, reg, kReferenceVReg, &intVal)) {
2627 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2628 VLOG(jdwp) << "get " << tag << " object local " << reg << " = " << o;
2629 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2630 LOG(FATAL) << "Register " << reg << " expected to hold " << tag << " object: " << o;
2631 }
2632 tag = TagFromObject(soa, o);
2633 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
2634 } else {
2635 VLOG(jdwp) << "failed to get " << tag << " object local " << reg;
2636 return kFailureErrorCode;
2637 }
2638 break;
2639 }
2640 case JDWP::JT_DOUBLE: {
2641 CHECK_EQ(width, 8U);
2642 uint64_t longVal;
2643 if (visitor.GetVRegPair(m, reg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2644 VLOG(jdwp) << "get double local " << reg << " = " << longVal;
2645 JDWP::Set8BE(buf + 1, longVal);
2646 } else {
2647 VLOG(jdwp) << "failed to get double local " << reg;
2648 return kFailureErrorCode;
2649 }
2650 break;
2651 }
2652 case JDWP::JT_LONG: {
2653 CHECK_EQ(width, 8U);
2654 uint64_t longVal;
2655 if (visitor.GetVRegPair(m, reg, kLongLoVReg, kLongHiVReg, &longVal)) {
2656 VLOG(jdwp) << "get long local " << reg << " = " << longVal;
2657 JDWP::Set8BE(buf + 1, longVal);
2658 } else {
2659 VLOG(jdwp) << "failed to get long local " << reg;
2660 return kFailureErrorCode;
2661 }
2662 break;
2663 }
2664 default:
2665 LOG(FATAL) << "Unknown tag " << tag;
2666 break;
2667 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002668
Sebastien Hertz5797aef2014-09-01 17:07:11 +02002669 // Prepend tag, which may have been updated.
2670 JDWP::Set1(buf, tag);
2671 return JDWP::ERR_NONE;
2672}
2673
2674JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2675 JDWP::ObjectId thread_id = request->ReadThreadId();
2676 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002677
2678 ScopedObjectAccessUnchecked soa(Thread::Current());
Elliott Hughes221229c2013-01-08 18:17:50 -08002679 Thread* thread;
Sebastien Hertz5797aef2014-09-01 17:07:11 +02002680 {
2681 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2682 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2683 if (error != JDWP::ERR_NONE) {
2684 return error;
2685 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002686 }
Sebastien Hertz5797aef2014-09-01 17:07:11 +02002687 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002688 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz5797aef2014-09-01 17:07:11 +02002689 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002690 visitor.WalkStack();
Sebastien Hertz5797aef2014-09-01 17:07:11 +02002691 if (visitor.GetError() != JDWP::ERR_NONE) {
2692 return visitor.GetError();
2693 }
2694
2695 // Writes the values into visitor's context.
2696 int32_t slot_count = request->ReadSigned32("slot count");
2697 for (int32_t i = 0; i < slot_count; ++i) {
2698 uint32_t slot = request->ReadUnsigned32("slot");
2699 JDWP::JdwpTag sigByte = request->ReadTag();
2700 size_t width = Dbg::GetTagWidth(sigByte);
2701 uint64_t value = request->ReadValue(width);
2702
2703 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
2704 JDWP::JdwpError error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width);
2705 if (error != JDWP::ERR_NONE) {
2706 return error;
2707 }
2708 }
2709 return JDWP::ERR_NONE;
2710}
2711
2712JDWP::JdwpError Dbg::SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
2713 uint64_t value, size_t width) {
2714 mirror::ArtMethod* m = visitor.GetMethod();
2715 uint16_t reg = DemangleSlot(slot, m);
2716 // TODO: check that the tag is compatible with the actual type of the slot!
2717 // TODO: check slot is valid for this method or return INVALID_SLOT error.
2718 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
2719 switch (tag) {
2720 case JDWP::JT_BOOLEAN:
2721 case JDWP::JT_BYTE:
2722 CHECK_EQ(width, 1U);
2723 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2724 VLOG(jdwp) << "failed to set boolean/byte local " << reg << " = "
2725 << static_cast<uint32_t>(value);
2726 return kFailureErrorCode;
2727 }
2728 break;
2729 case JDWP::JT_SHORT:
2730 case JDWP::JT_CHAR:
2731 CHECK_EQ(width, 2U);
2732 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2733 VLOG(jdwp) << "failed to set short/char local " << reg << " = "
2734 << static_cast<uint32_t>(value);
2735 return kFailureErrorCode;
2736 }
2737 break;
2738 case JDWP::JT_INT:
2739 CHECK_EQ(width, 4U);
2740 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2741 VLOG(jdwp) << "failed to set int local " << reg << " = "
2742 << static_cast<uint32_t>(value);
2743 return kFailureErrorCode;
2744 }
2745 break;
2746 case JDWP::JT_FLOAT:
2747 CHECK_EQ(width, 4U);
2748 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kFloatVReg)) {
2749 VLOG(jdwp) << "failed to set float local " << reg << " = "
2750 << static_cast<uint32_t>(value);
2751 return kFailureErrorCode;
2752 }
2753 break;
2754 case JDWP::JT_ARRAY:
2755 case JDWP::JT_CLASS_LOADER:
2756 case JDWP::JT_CLASS_OBJECT:
2757 case JDWP::JT_OBJECT:
2758 case JDWP::JT_STRING:
2759 case JDWP::JT_THREAD:
2760 case JDWP::JT_THREAD_GROUP: {
2761 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2762 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value));
2763 if (o == ObjectRegistry::kInvalidObject) {
2764 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2765 return JDWP::ERR_INVALID_OBJECT;
2766 } else if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2767 kReferenceVReg)) {
2768 VLOG(jdwp) << "failed to set " << tag << " object local " << reg << " = " << o;
2769 return kFailureErrorCode;
2770 }
2771 break;
2772 }
2773 case JDWP::JT_DOUBLE: {
2774 CHECK_EQ(width, 8U);
2775 if (!visitor.SetVRegPair(m, reg, value, kDoubleLoVReg, kDoubleHiVReg)) {
2776 VLOG(jdwp) << "failed to set double local " << reg << " = " << value;
2777 return kFailureErrorCode;
2778 }
2779 break;
2780 }
2781 case JDWP::JT_LONG: {
2782 CHECK_EQ(width, 8U);
2783 if (!visitor.SetVRegPair(m, reg, value, kLongLoVReg, kLongHiVReg)) {
2784 VLOG(jdwp) << "failed to set double local " << reg << " = " << value;
2785 return kFailureErrorCode;
2786 }
2787 break;
2788 }
2789 default:
2790 LOG(FATAL) << "Unknown tag " << tag;
2791 break;
2792 }
2793 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002794}
2795
Sebastien Hertzd5391672014-09-09 12:10:13 +02002796static void SetEventLocation(JDWP::EventLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
2797 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2798 DCHECK(location != nullptr);
2799 if (m == nullptr) {
2800 memset(location, 0, sizeof(*location));
2801 } else {
2802 location->method = m;
2803 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002804 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002805}
2806
Ian Rogersef7d42f2014-01-06 12:55:46 -08002807void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002808 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002809 if (!IsDebuggerActive()) {
2810 return;
2811 }
2812 DCHECK(m != nullptr);
2813 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertzd5391672014-09-09 12:10:13 +02002814 JDWP::EventLocation location;
2815 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002816
Sebastien Hertzd5391672014-09-09 12:10:13 +02002817 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002818}
2819
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002820void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
2821 mirror::Object* this_object, mirror::ArtField* f) {
2822 if (!IsDebuggerActive()) {
2823 return;
2824 }
2825 DCHECK(m != nullptr);
2826 DCHECK(f != nullptr);
Sebastien Hertzd5391672014-09-09 12:10:13 +02002827 JDWP::EventLocation location;
2828 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002829
Sebastien Hertzd5391672014-09-09 12:10:13 +02002830 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002831}
2832
2833void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
2834 mirror::Object* this_object, mirror::ArtField* f,
2835 const JValue* field_value) {
2836 if (!IsDebuggerActive()) {
2837 return;
2838 }
2839 DCHECK(m != nullptr);
2840 DCHECK(f != nullptr);
2841 DCHECK(field_value != nullptr);
Sebastien Hertzd5391672014-09-09 12:10:13 +02002842 JDWP::EventLocation location;
2843 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002844
Sebastien Hertzd5391672014-09-09 12:10:13 +02002845 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002846}
2847
2848void Dbg::PostException(const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002849 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002850 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002851 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002852 return;
2853 }
Sebastien Hertzd5391672014-09-09 12:10:13 +02002854 JDWP::EventLocation exception_throw_location;
2855 SetEventLocation(&exception_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
2856 JDWP::EventLocation exception_catch_location;
2857 SetEventLocation(&exception_catch_location, catch_method, catch_dex_pc);
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002858
Sebastien Hertzd5391672014-09-09 12:10:13 +02002859 gJdwpState->PostException(&exception_throw_location, exception_object, &exception_catch_location,
2860 throw_location.GetThis());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002861}
2862
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002863void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002864 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002865 return;
2866 }
Sebastien Hertzd5391672014-09-09 12:10:13 +02002867 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002868}
2869
Ian Rogers62d6c772013-02-27 08:32:07 -08002870void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002871 mirror::ArtMethod* m, uint32_t dex_pc,
2872 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002873 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002874 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002875 }
2876
Elliott Hughes86964332012-02-15 19:37:42 -08002877 if (IsBreakpoint(m, dex_pc)) {
2878 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002879 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002880
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002881 // If the debugger is single-stepping one of our threads, check to
2882 // see if we're that thread and we've reached a step point.
2883 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2884 DCHECK(single_step_control != nullptr);
2885 if (single_step_control->is_active) {
2886 CHECK(!m->IsNative());
2887 if (single_step_control->step_depth == JDWP::SD_INTO) {
2888 // Step into method calls. We break when the line number
2889 // or method pointer changes. If we're in SS_MIN mode, we
2890 // always stop.
2891 if (single_step_control->method != m) {
2892 event_flags |= kSingleStep;
2893 VLOG(jdwp) << "SS new method";
2894 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2895 event_flags |= kSingleStep;
2896 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002897 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002898 event_flags |= kSingleStep;
2899 VLOG(jdwp) << "SS new line";
2900 }
2901 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2902 // Step over method calls. We break when the line number is
2903 // different and the frame depth is <= the original frame
2904 // depth. (We can't just compare on the method, because we
2905 // might get unrolled past it by an exception, and it's tricky
2906 // to identify recursion.)
2907
2908 int stack_depth = GetStackDepth(thread);
2909
2910 if (stack_depth < single_step_control->stack_depth) {
2911 // Popped up one or more frames, always trigger.
2912 event_flags |= kSingleStep;
2913 VLOG(jdwp) << "SS method pop";
2914 } else if (stack_depth == single_step_control->stack_depth) {
2915 // Same depth, see if we moved.
2916 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002917 event_flags |= kSingleStep;
2918 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002919 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002920 event_flags |= kSingleStep;
2921 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002922 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002923 }
2924 } else {
2925 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2926 // Return from the current method. We break when the frame
2927 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002928
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002929 // This differs from the "method exit" break in that it stops
2930 // with the PC at the next instruction in the returned-to
2931 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002932
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002933 int stack_depth = GetStackDepth(thread);
2934 if (stack_depth < single_step_control->stack_depth) {
2935 event_flags |= kSingleStep;
2936 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002937 }
2938 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002939 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002940
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002941 // If there's something interesting going on, see if it matches one
2942 // of the debugger filters.
2943 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002944 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002945 }
2946}
2947
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002948size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2949 switch (instrumentation_event) {
2950 case instrumentation::Instrumentation::kMethodEntered:
2951 return &method_enter_event_ref_count_;
2952 case instrumentation::Instrumentation::kMethodExited:
2953 return &method_exit_event_ref_count_;
2954 case instrumentation::Instrumentation::kDexPcMoved:
2955 return &dex_pc_change_event_ref_count_;
2956 case instrumentation::Instrumentation::kFieldRead:
2957 return &field_read_event_ref_count_;
2958 case instrumentation::Instrumentation::kFieldWritten:
2959 return &field_write_event_ref_count_;
2960 case instrumentation::Instrumentation::kExceptionCaught:
2961 return &exception_catch_event_ref_count_;
2962 default:
2963 return nullptr;
2964 }
2965}
2966
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002967// Process request while all mutator threads are suspended.
2968void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002969 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002970 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002971 case DeoptimizationRequest::kNothing:
2972 LOG(WARNING) << "Ignoring empty deoptimization request.";
2973 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002974 case DeoptimizationRequest::kRegisterForEvent:
2975 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002976 request.InstrumentationEvent());
2977 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
2978 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002979 break;
2980 case DeoptimizationRequest::kUnregisterForEvent:
2981 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002982 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002983 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002984 request.InstrumentationEvent());
2985 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002986 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002987 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002988 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002989 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002990 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002991 break;
2992 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002993 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002994 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002995 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002996 break;
2997 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002998 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
2999 instrumentation->Deoptimize(request.Method());
3000 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003001 break;
3002 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003003 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
3004 instrumentation->Undeoptimize(request.Method());
3005 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003006 break;
3007 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003008 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003009 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003010 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003011}
3012
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003013void Dbg::DelayFullUndeoptimization() {
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003014 if (RequiresDeoptimization()) {
3015 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
3016 ++delayed_full_undeoptimization_count_;
3017 DCHECK_LE(delayed_full_undeoptimization_count_, full_deoptimization_event_count_);
3018 }
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003019}
3020
3021void Dbg::ProcessDelayedFullUndeoptimizations() {
3022 // TODO: avoid taking the lock twice (once here and once in ManageDeoptimization).
3023 {
Brian Carlstromf4cb0362014-09-04 22:15:18 -07003024 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003025 while (delayed_full_undeoptimization_count_ > 0) {
3026 DeoptimizationRequest req;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003027 req.SetKind(DeoptimizationRequest::kFullUndeoptimization);
3028 req.SetMethod(nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003029 RequestDeoptimizationLocked(req);
3030 --delayed_full_undeoptimization_count_;
3031 }
3032 }
3033 ManageDeoptimization();
3034}
3035
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003036void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003037 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003038 // Nothing to do.
3039 return;
3040 }
Brian Carlstromf4cb0362014-09-04 22:15:18 -07003041 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003042 RequestDeoptimizationLocked(req);
3043}
3044
3045void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003046 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003047 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003048 DCHECK_NE(req.InstrumentationEvent(), 0u);
3049 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003050 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003051 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003052 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003053 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003054 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003055 deoptimization_requests_.push_back(req);
3056 }
3057 *counter = *counter + 1;
3058 break;
3059 }
3060 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003061 DCHECK_NE(req.InstrumentationEvent(), 0u);
3062 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003063 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003064 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003065 *counter = *counter - 1;
3066 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003067 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003068 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003069 deoptimization_requests_.push_back(req);
3070 }
3071 break;
3072 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003073 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003074 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003075 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003076 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3077 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003078 deoptimization_requests_.push_back(req);
3079 }
3080 ++full_deoptimization_event_count_;
3081 break;
3082 }
3083 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003084 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003085 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003086 --full_deoptimization_event_count_;
3087 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003088 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3089 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003090 deoptimization_requests_.push_back(req);
3091 }
3092 break;
3093 }
3094 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003095 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003096 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003097 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003098 deoptimization_requests_.push_back(req);
3099 break;
3100 }
3101 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003102 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003103 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003104 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003105 deoptimization_requests_.push_back(req);
3106 break;
3107 }
3108 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003109 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003110 break;
3111 }
3112 }
3113}
3114
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003115void Dbg::ManageDeoptimization() {
3116 Thread* const self = Thread::Current();
3117 {
3118 // Avoid suspend/resume if there is no pending request.
Brian Carlstromf4cb0362014-09-04 22:15:18 -07003119 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003120 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003121 return;
3122 }
3123 }
3124 CHECK_EQ(self->GetState(), kRunnable);
3125 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3126 // We need to suspend mutator threads first.
3127 Runtime* const runtime = Runtime::Current();
3128 runtime->GetThreadList()->SuspendAll();
3129 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003130 {
Brian Carlstromf4cb0362014-09-04 22:15:18 -07003131 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003132 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003133 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003134 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003135 ProcessDeoptimizationRequest(request);
3136 }
3137 deoptimization_requests_.clear();
3138 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003139 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3140 runtime->GetThreadList()->ResumeAll();
3141 self->TransitionFromSuspendedToRunnable();
3142}
3143
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003144static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3145 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003146 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003147 if (code_item == nullptr) {
3148 // TODO We should not be asked to watch location in a native or abstract method so the code item
3149 // should never be null. We could just check we never encounter this case.
3150 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003151 }
Sebastien Hertz4d6e4832014-09-18 16:03:34 +02003152 // Note: method verifier may cause thread suspension.
3153 self->AssertThreadSuspensionIsAllowable();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003154 StackHandleScope<2> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003155 mirror::Class* declaring_class = m->GetDeclaringClass();
3156 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3157 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
3158 verifier::MethodVerifier verifier(dex_cache->GetDexFile(), &dex_cache, &class_loader,
3159 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), m,
Ian Rogers46960fe2014-05-23 10:43:43 -07003160 m->GetAccessFlags(), false, true, false);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003161 // Note: we don't need to verify the method.
3162 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3163}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003164
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003165static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Sebastien Hertz59d9d662014-08-19 15:33:43 +02003166 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003167 for (Breakpoint& breakpoint : gBreakpoints) {
3168 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003169 return &breakpoint;
3170 }
3171 }
3172 return nullptr;
3173}
3174
3175// Sanity checks all existing breakpoints on the same method.
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003176static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m,
3177 DeoptimizationRequest::Kind deoptimization_kind)
Sebastien Hertz59d9d662014-08-19 15:33:43 +02003178 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d6e4832014-09-18 16:03:34 +02003179 for (const Breakpoint& breakpoint : gBreakpoints) {
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003180 if (breakpoint.Method() == m) {
3181 CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind());
3182 }
Sebastien Hertz4d6e4832014-09-18 16:03:34 +02003183 }
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003184 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
3185 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertz4d6e4832014-09-18 16:03:34 +02003186 // We should have deoptimized everything but not "selectively" deoptimized this method.
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003187 CHECK(instrumentation->AreAllMethodsDeoptimized());
3188 CHECK(!instrumentation->IsDeoptimized(m));
3189 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertz4d6e4832014-09-18 16:03:34 +02003190 // We should have "selectively" deoptimized this method.
3191 // Note: while we have not deoptimized everything for this method, we may have done it for
3192 // another event.
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003193 CHECK(instrumentation->IsDeoptimized(m));
3194 } else {
3195 // This method does not require deoptimization.
3196 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3197 CHECK(!instrumentation->IsDeoptimized(m));
3198 }
3199}
3200
Sebastien Hertz2f5c2022014-12-17 16:35:50 +01003201// Returns the deoptimization kind required to set a breakpoint in a method.
3202// If a breakpoint has already been set, we also return the first breakpoint
3203// through the given 'existing_brkpt' pointer.
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003204static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self,
Sebastien Hertz2f5c2022014-12-17 16:35:50 +01003205 mirror::ArtMethod* m,
3206 const Breakpoint** existing_brkpt)
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003207 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
3208 if (!Dbg::RequiresDeoptimization()) {
3209 // We already run in interpreter-only mode so we don't need to deoptimize anything.
3210 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method "
3211 << PrettyMethod(m);
3212 return DeoptimizationRequest::kNothing;
3213 }
Sebastien Hertz2f5c2022014-12-17 16:35:50 +01003214 const Breakpoint* first_breakpoint;
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003215 {
3216 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertz2f5c2022014-12-17 16:35:50 +01003217 first_breakpoint = FindFirstBreakpointForMethod(m);
3218 *existing_brkpt = first_breakpoint;
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003219 }
Sebastien Hertz2f5c2022014-12-17 16:35:50 +01003220
3221 if (first_breakpoint == nullptr) {
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003222 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3223 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3224 // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension.
3225 // Therefore we must not hold any lock when we call it.
3226 bool need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3227 if (need_full_deoptimization) {
3228 VLOG(jdwp) << "Need full deoptimization because of possible inlining of method "
3229 << PrettyMethod(m);
3230 return DeoptimizationRequest::kFullDeoptimization;
3231 } else {
3232 // We don't need to deoptimize if the method has not been compiled.
3233 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
3234 const bool is_compiled = class_linker->GetOatMethodQuickCodeFor(m) != nullptr;
3235 if (is_compiled) {
Sebastien Hertz7f418db2014-11-26 22:11:27 +01003236 // If the method may be called through its direct code pointer (without loading
3237 // its updated entrypoint), we need full deoptimization to not miss the breakpoint.
3238 if (class_linker->MayBeCalledWithDirectCodePointer(m)) {
3239 VLOG(jdwp) << "Need full deoptimization because of possible direct code call "
3240 << "into image for compiled method " << PrettyMethod(m);
3241 return DeoptimizationRequest::kFullDeoptimization;
3242 } else {
3243 VLOG(jdwp) << "Need selective deoptimization for compiled method " << PrettyMethod(m);
3244 return DeoptimizationRequest::kSelectiveDeoptimization;
3245 }
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003246 } else {
3247 // Method is not compiled: we don't need to deoptimize.
3248 VLOG(jdwp) << "No need for deoptimization for non-compiled method " << PrettyMethod(m);
3249 return DeoptimizationRequest::kNothing;
3250 }
3251 }
3252 } else {
3253 // There is at least one breakpoint for this method: we don't need to deoptimize.
3254 // Let's check that all breakpoints are configured the same way for deoptimization.
3255 VLOG(jdwp) << "Breakpoint already set: no deoptimization is required";
Sebastien Hertz2f5c2022014-12-17 16:35:50 +01003256 DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind();
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003257 if (kIsDebugBuild) {
3258 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3259 SanityCheckExistingBreakpoints(m, deoptimization_kind);
3260 }
3261 return DeoptimizationRequest::kNothing;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003262 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003263}
3264
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003265// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3266// request if we need to deoptimize.
3267void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3268 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003269 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003270 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003271
Sebastien Hertz2f5c2022014-12-17 16:35:50 +01003272 const Breakpoint* existing_breakpoint = nullptr;
3273 const DeoptimizationRequest::Kind deoptimization_kind =
3274 GetRequiredDeoptimizationKind(self, m, &existing_breakpoint);
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003275 req->SetKind(deoptimization_kind);
3276 if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
3277 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003278 } else {
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003279 CHECK(deoptimization_kind == DeoptimizationRequest::kNothing ||
3280 deoptimization_kind == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003281 req->SetMethod(nullptr);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003282 }
3283
Sebastien Hertz4d6e4832014-09-18 16:03:34 +02003284 {
3285 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertz2f5c2022014-12-17 16:35:50 +01003286 // If there is at least one existing breakpoint on the same method, the new breakpoint
3287 // must have the same deoptimization kind than the existing breakpoint(s).
3288 DeoptimizationRequest::Kind breakpoint_deoptimization_kind;
3289 if (existing_breakpoint != nullptr) {
3290 breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind();
3291 } else {
3292 breakpoint_deoptimization_kind = deoptimization_kind;
3293 }
3294 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind));
Sebastien Hertz4d6e4832014-09-18 16:03:34 +02003295 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3296 << gBreakpoints[gBreakpoints.size() - 1];
3297 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003298}
3299
3300// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3301// request if we need to undeoptimize.
3302void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertz59d9d662014-08-19 15:33:43 +02003303 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003304 mirror::ArtMethod* m = FromMethodId(location->method_id);
3305 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003306 DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003307 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003308 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003309 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003310 deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind();
3311 DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization,
3312 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003313 gBreakpoints.erase(gBreakpoints.begin() + i);
3314 break;
3315 }
3316 }
3317 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3318 if (existing_breakpoint == nullptr) {
3319 // There is no more breakpoint on this method: we need to undeoptimize.
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003320 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003321 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003322 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3323 req->SetMethod(nullptr);
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003324 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003325 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003326 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3327 req->SetMethod(m);
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003328 } else {
3329 // This method had no need for deoptimization: do nothing.
3330 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3331 req->SetKind(DeoptimizationRequest::kNothing);
3332 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003333 }
3334 } else {
3335 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003336 req->SetKind(DeoptimizationRequest::kNothing);
3337 req->SetMethod(nullptr);
Sebastien Hertz4d6e4832014-09-18 16:03:34 +02003338 if (kIsDebugBuild) {
Sebastien Hertzf2134f62014-11-17 19:00:37 +01003339 SanityCheckExistingBreakpoints(m, deoptimization_kind);
Sebastien Hertz4d6e4832014-09-18 16:03:34 +02003340 }
Elliott Hughes86964332012-02-15 19:37:42 -08003341 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003342}
3343
Jeff Hao449db332013-04-12 18:30:52 -07003344// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3345// cause suspension if the thread is the current thread.
3346class ScopedThreadSuspension {
3347 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003348 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003349 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003350 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003351 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003352 error_(JDWP::ERR_NONE),
3353 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003354 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003355 ScopedObjectAccessUnchecked soa(self);
3356 {
3357 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
3358 error_ = DecodeThread(soa, thread_id, thread_);
3359 }
3360 if (error_ == JDWP::ERR_NONE) {
3361 if (thread_ == soa.Self()) {
3362 self_suspend_ = true;
3363 } else {
3364 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Sebastien Hertzd5391672014-09-09 12:10:13 +02003365 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003366 bool timed_out;
Ian Rogersf3d874c2014-07-17 18:52:42 -07003367 Thread* suspended_thread;
3368 {
3369 // Take suspend thread lock to avoid races with threads trying to suspend this one.
3370 MutexLock mu(soa.Self(), *Locks::thread_list_suspend_thread_lock_);
Brian Carlstrom37c16452014-08-27 23:43:46 -07003371 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3372 suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true, &timed_out);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003373 }
Jeff Hao449db332013-04-12 18:30:52 -07003374 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003375 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003376 // Thread terminated from under us while suspending.
3377 error_ = JDWP::ERR_INVALID_THREAD;
3378 } else {
3379 CHECK_EQ(suspended_thread, thread_);
3380 other_suspend_ = true;
3381 }
3382 }
3383 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003384 }
Elliott Hughes86964332012-02-15 19:37:42 -08003385
Jeff Hao449db332013-04-12 18:30:52 -07003386 Thread* GetThread() const {
3387 return thread_;
3388 }
3389
3390 JDWP::JdwpError GetError() const {
3391 return error_;
3392 }
3393
3394 ~ScopedThreadSuspension() {
3395 if (other_suspend_) {
3396 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3397 }
3398 }
3399
3400 private:
3401 Thread* thread_;
3402 JDWP::JdwpError error_;
3403 bool self_suspend_;
3404 bool other_suspend_;
3405};
3406
3407JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3408 JDWP::JdwpStepDepth step_depth) {
3409 Thread* self = Thread::Current();
3410 ScopedThreadSuspension sts(self, thread_id);
3411 if (sts.GetError() != JDWP::ERR_NONE) {
3412 return sts.GetError();
3413 }
3414
Elliott Hughes2435a572012-02-17 16:07:41 -08003415 //
3416 // Work out what Method* we're in, the current line number, and how deep the stack currently
3417 // is for step-out.
3418 //
3419
Ian Rogers0399dde2012-06-06 17:09:28 -07003420 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003421 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
3422 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003423 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003424 : StackVisitor(thread, NULL), single_step_control_(single_step_control),
3425 line_number_(line_number) {
3426 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
3427 single_step_control_->method = NULL;
3428 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08003429 }
Ian Rogersca190662012-06-26 15:45:57 -07003430
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003431 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3432 // annotalysis.
3433 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003434 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003435 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003436 ++single_step_control_->stack_depth;
3437 if (single_step_control_->method == NULL) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003438 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003439 single_step_control_->method = m;
3440 *line_number_ = -1;
Elliott Hughes2435a572012-02-17 16:07:41 -08003441 if (dex_cache != NULL) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003442 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003443 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003444 }
Elliott Hughes86964332012-02-15 19:37:42 -08003445 }
3446 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003447 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003448 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003449
3450 SingleStepControl* const single_step_control_;
3451 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08003452 };
Jeff Hao449db332013-04-12 18:30:52 -07003453
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003454 Thread* const thread = sts.GetThread();
3455 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
3456 DCHECK(single_step_control != nullptr);
3457 int32_t line_number = -1;
3458 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07003459 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003460
Elliott Hughes2435a572012-02-17 16:07:41 -08003461 //
3462 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
3463 //
3464
3465 struct DebugCallbackContext {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003466 explicit DebugCallbackContext(SingleStepControl* single_step_control, int32_t line_number,
3467 const DexFile::CodeItem* code_item)
3468 : single_step_control_(single_step_control), line_number_(line_number), code_item_(code_item),
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003469 last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003470 }
3471
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003472 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003473 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003474 if (static_cast<int32_t>(line_number) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003475 if (!context->last_pc_valid) {
3476 // Everything from this address until the next line change is ours.
3477 context->last_pc = address;
3478 context->last_pc_valid = true;
3479 }
3480 // Otherwise, if we're already in a valid range for this line,
3481 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003482 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003483 // Add everything from the last entry up until here to the set
3484 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003485 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003486 }
3487 context->last_pc_valid = false;
3488 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003489 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003490 }
3491
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003492 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003493 // If the line number was the last in the position table...
3494 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003495 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003496 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003497 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003498 }
3499 }
3500 }
3501
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003502 SingleStepControl* const single_step_control_;
3503 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003504 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003505 bool last_pc_valid;
3506 uint32_t last_pc;
3507 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003508 single_step_control->dex_pcs.clear();
Ian Rogersef7d42f2014-01-06 12:55:46 -08003509 mirror::ArtMethod* m = single_step_control->method;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003510 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003511 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003512 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003513 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
3514 DebugCallbackContext::Callback, NULL, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003515 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003516
3517 //
3518 // Everything else...
3519 //
3520
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003521 single_step_control->step_size = step_size;
3522 single_step_control->step_depth = step_depth;
3523 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08003524
Elliott Hughes2435a572012-02-17 16:07:41 -08003525 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003526 VLOG(jdwp) << "Single-step thread: " << *thread;
3527 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
3528 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
3529 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
3530 VLOG(jdwp) << "Single-step current line: " << line_number;
3531 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08003532 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003533 for (uint32_t dex_pc : single_step_control->dex_pcs) {
3534 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003535 }
3536 }
3537
3538 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003539}
3540
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003541void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3542 ScopedObjectAccessUnchecked soa(Thread::Current());
3543 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
3544 Thread* thread;
3545 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003546 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003547 SingleStepControl* single_step_control = thread->GetSingleStepControl();
3548 DCHECK(single_step_control != nullptr);
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003549 single_step_control->Clear();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003550 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003551}
3552
Elliott Hughes45651fd2012-02-21 15:48:20 -08003553static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3554 switch (tag) {
3555 default:
3556 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
3557
3558 // Primitives.
3559 case JDWP::JT_BYTE: return 'B';
3560 case JDWP::JT_CHAR: return 'C';
3561 case JDWP::JT_FLOAT: return 'F';
3562 case JDWP::JT_DOUBLE: return 'D';
3563 case JDWP::JT_INT: return 'I';
3564 case JDWP::JT_LONG: return 'J';
3565 case JDWP::JT_SHORT: return 'S';
3566 case JDWP::JT_VOID: return 'V';
3567 case JDWP::JT_BOOLEAN: return 'Z';
3568
3569 // Reference types.
3570 case JDWP::JT_ARRAY:
3571 case JDWP::JT_OBJECT:
3572 case JDWP::JT_STRING:
3573 case JDWP::JT_THREAD:
3574 case JDWP::JT_THREAD_GROUP:
3575 case JDWP::JT_CLASS_LOADER:
3576 case JDWP::JT_CLASS_OBJECT:
3577 return 'L';
3578 }
3579}
3580
Elliott Hughes88d63092013-01-09 09:55:54 -08003581JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3582 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003583 uint32_t arg_count, uint64_t* arg_values,
3584 JDWP::JdwpTag* arg_types, uint32_t options,
3585 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3586 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003587 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3588
3589 Thread* targetThread = NULL;
3590 DebugInvokeReq* req = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003591 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003592 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003593 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003594 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08003595 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread);
3596 if (error != JDWP::ERR_NONE) {
3597 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3598 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003599 }
3600 req = targetThread->GetInvokeReq();
3601 if (!req->ready) {
3602 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3603 return JDWP::ERR_INVALID_THREAD;
3604 }
3605
3606 /*
3607 * We currently have a bug where we don't successfully resume the
3608 * target thread if the suspend count is too deep. We're expected to
3609 * require one "resume" for each "suspend", but when asked to execute
3610 * a method we have to resume fully and then re-suspend it back to the
3611 * same level. (The easiest way to cause this is to type "suspend"
3612 * multiple times in jdb.)
3613 *
3614 * It's unclear what this means when the event specifies "resume all"
3615 * and some threads are suspended more deeply than others. This is
3616 * a rare problem, so for now we just prevent it from hanging forever
3617 * by rejecting the method invocation request. Without this, we will
3618 * be stuck waiting on a suspended thread.
3619 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003620 int suspend_count;
3621 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003622 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003623 suspend_count = targetThread->GetSuspendCount();
3624 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003625 if (suspend_count > 1) {
3626 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003627 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003628 }
3629
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003630 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003631 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08003632 if (receiver == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003633 return JDWP::ERR_INVALID_OBJECT;
3634 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003635
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003636 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08003637 if (thread == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003638 return JDWP::ERR_INVALID_OBJECT;
3639 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003640 // TODO: check that 'thread' is actually a java.lang.Thread!
3641
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003642 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003643 if (c == NULL) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003644 return status;
3645 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003646
Brian Carlstromea46f952013-07-30 01:26:50 -07003647 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003648 if (m->IsStatic() != (receiver == NULL)) {
3649 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());
3670 MethodHelper mh(hs.NewHandle(m));
3671 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?
3681 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
3682 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i]);
3683 if (argument == ObjectRegistry::kInvalidObject) {
3684 return JDWP::ERR_INVALID_OBJECT;
3685 }
3686 if (argument != NULL && !argument->InstanceOf(parameter_type)) {
3687 return JDWP::ERR_ILLEGAL_ARGUMENT;
3688 }
3689
3690 // Turn the on-the-wire ObjectId into a jobject.
3691 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3692 v.l = gRegistry->GetJObject(arg_values[i]);
3693 }
Elliott Hughes09201632013-04-15 15:50:07 -07003694 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003695 // Update in case it moved.
3696 m = mh.GetMethod();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003697 }
3698
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003699 req->receiver = receiver;
3700 req->thread = thread;
3701 req->klass = c;
3702 req->method = m;
3703 req->arg_count = arg_count;
3704 req->arg_values = arg_values;
3705 req->options = options;
3706 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003707 }
3708
3709 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3710 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3711 // call, and it's unwise to hold it during WaitForSuspend.
3712
3713 {
3714 /*
3715 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003716 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003717 * run out of memory. It's also a good idea to change it before locking
3718 * the invokeReq mutex, although that should never be held for long.
3719 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003720 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003721
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003722 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003723 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003724 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003725
3726 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003727 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003728 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003729 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003730 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003731 thread_list->Resume(targetThread, true);
3732 }
3733
3734 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003735 while (req->invoke_needed) {
3736 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003737 }
3738 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003739 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003740
3741 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003742 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003743 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003744 }
3745
3746 /*
3747 * Suspend the threads. We waited for the target thread to suspend
3748 * itself, so all we need to do is suspend the others.
3749 *
3750 * The suspendAllThreads() call will double-suspend the event thread,
3751 * so we want to resume the target thread once to keep the books straight.
3752 */
3753 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003754 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003755 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003756 thread_list->SuspendAllForDebugger();
3757 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003758 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003759 thread_list->Resume(targetThread, true);
3760 }
3761
3762 // Copy the result.
3763 *pResultTag = req->result_tag;
3764 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003765 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003766 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003767 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003768 }
3769 *pExceptionId = req->exception;
3770 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003771}
3772
3773void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003774 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003775
Elliott Hughes81ff3182012-03-23 20:35:56 -07003776 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003777 // to preserve that across the method invocation.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003778 StackHandleScope<4> hs(soa.Self());
3779 auto old_throw_this_object = hs.NewHandle<mirror::Object>(nullptr);
3780 auto old_throw_method = hs.NewHandle<mirror::ArtMethod>(nullptr);
3781 auto old_exception = hs.NewHandle<mirror::Throwable>(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003782 uint32_t old_throw_dex_pc;
Sebastien Hertz9f102032014-05-23 08:59:42 +02003783 bool old_exception_report_flag;
Ian Rogers62d6c772013-02-27 08:32:07 -08003784 {
3785 ThrowLocation old_throw_location;
3786 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003787 old_throw_this_object.Assign(old_throw_location.GetThis());
3788 old_throw_method.Assign(old_throw_location.GetMethod());
3789 old_exception.Assign(old_exception_obj);
Ian Rogers62d6c772013-02-27 08:32:07 -08003790 old_throw_dex_pc = old_throw_location.GetDexPc();
Sebastien Hertz9f102032014-05-23 08:59:42 +02003791 old_exception_report_flag = soa.Self()->IsExceptionReportedToInstrumentation();
Ian Rogers62d6c772013-02-27 08:32:07 -08003792 soa.Self()->ClearException();
3793 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003794
3795 // Translate the method through the vtable, unless the debugger wants to suppress it.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003796 Handle<mirror::ArtMethod> m(hs.NewHandle(pReq->method));
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003797 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != NULL) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003798 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.Get());
3799 if (actual_method != m.Get()) {
3800 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get()) << " to " << PrettyMethod(actual_method);
3801 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003802 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003803 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003804 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003805 << " receiver=" << pReq->receiver
3806 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003807 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003808
3809 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3810
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003811 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.Get()),
Ian Rogers53b8b092014-03-13 23:45:53 -07003812 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003813
Ian Rogers62d6c772013-02-27 08:32:07 -08003814 mirror::Throwable* exception = soa.Self()->GetException(NULL);
3815 soa.Self()->ClearException();
3816 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003817 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003818 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003819 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3820 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003821 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003822 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3823 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003824 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003825 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003826 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003827 pReq->result_tag = new_tag;
3828 }
3829
3830 /*
3831 * Register the object. We don't actually need an ObjectId yet,
3832 * but we do need to be sure that the GC won't move or discard the
3833 * object when we switch out of RUNNING. The ObjectId conversion
3834 * will add the object to the "do not touch" list.
3835 *
3836 * We can't use the "tracked allocation" mechanism here because
3837 * the object is going to be handed off to a different thread.
3838 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003839 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003840 }
3841
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003842 if (old_exception.Get() != NULL) {
3843 ThrowLocation gc_safe_throw_location(old_throw_this_object.Get(), old_throw_method.Get(),
Ian Rogers62d6c772013-02-27 08:32:07 -08003844 old_throw_dex_pc);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003845 soa.Self()->SetException(gc_safe_throw_location, old_exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +02003846 soa.Self()->SetExceptionReportedToInstrumentation(old_exception_report_flag);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003847 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003848}
3849
Elliott Hughesd07986f2011-12-06 18:27:45 -08003850/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003851 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003852 * need to process each, accumulate the replies, and ship the whole thing
3853 * back.
3854 *
3855 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3856 * and includes the chunk type/length, followed by the data.
3857 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003858 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003859 * chunk. If this becomes inconvenient we will need to adapt.
3860 */
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003861bool Dbg::DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003862 Thread* self = Thread::Current();
3863 JNIEnv* env = self->GetJniEnv();
3864
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003865 uint32_t type = request.ReadUnsigned32("type");
3866 uint32_t length = request.ReadUnsigned32("length");
3867
3868 // Create a byte[] corresponding to 'request'.
3869 size_t request_length = request.size();
3870 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003871 if (dataArray.get() == NULL) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003872 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003873 env->ExceptionClear();
3874 return false;
3875 }
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003876 env->SetByteArrayRegion(dataArray.get(), 0, request_length, reinterpret_cast<const jbyte*>(request.data()));
3877 request.Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003878
3879 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003880 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003881 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003882 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003883 return false;
3884 }
3885
3886 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003887 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3888 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003889 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003890 if (env->ExceptionCheck()) {
3891 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3892 env->ExceptionDescribe();
3893 env->ExceptionClear();
3894 return false;
3895 }
3896
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003897 if (chunk.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003898 return false;
3899 }
3900
3901 /*
3902 * Pull the pieces out of the chunk. We copy the results into a
3903 * newly-allocated buffer that the caller can free. We don't want to
3904 * continue using the Chunk object because nothing has a reference to it.
3905 *
3906 * We could avoid this by returning type/data/offset/length and having
3907 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003908 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003909 * if we have responses for multiple chunks.
3910 *
3911 * So we're pretty much stuck with copying data around multiple times.
3912 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003913 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 -08003914 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003915 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003916 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003917
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003918 VLOG(jdwp) << StringPrintf("DDM reply: type=0x%08x data=%p offset=%d length=%d", type, replyData.get(), offset, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003919 if (length == 0 || replyData.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003920 return false;
3921 }
3922
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003923 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003924 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
3925 if (reply == NULL) {
3926 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3927 return false;
3928 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003929 JDWP::Set4BE(reply + 0, type);
3930 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003931 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003932
3933 *pReplyBuf = reply;
3934 *pReplyLen = length + kChunkHdrLen;
3935
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003936 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003937 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003938}
3939
Elliott Hughesa2155262011-11-16 16:26:58 -08003940void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003941 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003942
3943 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003944 if (self->GetState() != kRunnable) {
3945 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3946 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003947 }
3948
3949 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003950 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003951 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3952 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3953 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003954 if (env->ExceptionCheck()) {
3955 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3956 env->ExceptionDescribe();
3957 env->ExceptionClear();
3958 }
3959}
3960
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003961void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003962 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003963}
3964
3965void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003966 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003967 gDdmThreadNotification = false;
3968}
3969
3970/*
Elliott Hughes82188472011-11-07 18:11:48 -08003971 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003972 *
3973 * Because we broadcast the full set of threads when the notifications are
3974 * first enabled, it's possible for "thread" to be actively executing.
3975 */
Elliott Hughes82188472011-11-07 18:11:48 -08003976void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003977 if (!gDdmThreadNotification) {
3978 return;
3979 }
3980
Elliott Hughes82188472011-11-07 18:11:48 -08003981 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003982 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003983 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003984 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003985 } else {
3986 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003987 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003988 StackHandleScope<1> hs(soa.Self());
3989 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
3990 size_t char_count = (name.Get() != NULL) ? name->GetLength() : 0;
3991 const jchar* chars = (name.Get() != NULL) ? name->GetCharArray()->GetData() : NULL;
Elliott Hughes82188472011-11-07 18:11:48 -08003992
Elliott Hughes21f32d72011-11-09 17:44:13 -08003993 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003994 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003995 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003996 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3997 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003998 }
3999}
4000
Elliott Hughes47fce012011-10-25 18:37:19 -07004001void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004002 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07004003 gDdmThreadNotification = enable;
4004 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004005 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
4006 // see a suspension in progress and block until that ends. They then post their own start
4007 // notification.
4008 SuspendVM();
4009 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07004010 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004011 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004012 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004013 threads = Runtime::Current()->GetThreadList()->GetList();
4014 }
4015 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004016 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07004017 for (Thread* thread : threads) {
4018 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004019 }
4020 }
4021 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07004022 }
4023}
4024
Elliott Hughesa2155262011-11-16 16:26:58 -08004025void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07004026 if (IsDebuggerActive()) {
Sebastien Hertzd5391672014-09-09 12:10:13 +02004027 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004028 }
Elliott Hughes82188472011-11-07 18:11:48 -08004029 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07004030}
4031
4032void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004033 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004034}
4035
4036void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004037 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004038}
4039
Elliott Hughes82188472011-11-07 18:11:48 -08004040void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07004041 CHECK(buf != NULL);
4042 iovec vec[1];
4043 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
4044 vec[0].iov_len = byte_count;
4045 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004046}
4047
Elliott Hughes21f32d72011-11-09 17:44:13 -08004048void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
4049 DdmSendChunk(type, bytes.size(), &bytes[0]);
4050}
4051
Brian Carlstromf5293522013-07-19 00:24:00 -07004052void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07004053 if (gJdwpState == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004054 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07004055 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08004056 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004057 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004058}
4059
Elliott Hughes767a1472011-10-26 18:49:02 -07004060int Dbg::DdmHandleHpifChunk(HpifWhen when) {
4061 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07004062 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07004063 return true;
4064 }
4065
4066 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4067 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4068 return false;
4069 }
4070
4071 gDdmHpifWhen = when;
4072 return true;
4073}
4074
4075bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4076 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4077 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4078 return false;
4079 }
4080
4081 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4082 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4083 return false;
4084 }
4085
4086 if (native) {
4087 gDdmNhsgWhen = when;
4088 gDdmNhsgWhat = what;
4089 } else {
4090 gDdmHpsgWhen = when;
4091 gDdmHpsgWhat = what;
4092 }
4093 return true;
4094}
4095
Elliott Hughes7162ad92011-10-27 14:08:42 -07004096void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4097 // If there's a one-shot 'when', reset it.
4098 if (reason == gDdmHpifWhen) {
4099 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4100 gDdmHpifWhen = HPIF_WHEN_NEVER;
4101 }
4102 }
4103
4104 /*
4105 * Chunk HPIF (client --> server)
4106 *
4107 * Heap Info. General information about the heap,
4108 * suitable for a summary display.
4109 *
4110 * [u4]: number of heaps
4111 *
4112 * For each heap:
4113 * [u4]: heap ID
4114 * [u8]: timestamp in ms since Unix epoch
4115 * [u1]: capture reason (same as 'when' value from server)
4116 * [u4]: max heap size in bytes (-Xmx)
4117 * [u4]: current heap size in bytes
4118 * [u4]: current number of bytes allocated
4119 * [u4]: current number of objects allocated
4120 */
4121 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004122 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004123 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004124 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004125 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004126 JDWP::Append8BE(bytes, MilliTime());
4127 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004128 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4129 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004130 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4131 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004132 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
4133 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07004134}
4135
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004136enum HpsgSolidity {
4137 SOLIDITY_FREE = 0,
4138 SOLIDITY_HARD = 1,
4139 SOLIDITY_SOFT = 2,
4140 SOLIDITY_WEAK = 3,
4141 SOLIDITY_PHANTOM = 4,
4142 SOLIDITY_FINALIZABLE = 5,
4143 SOLIDITY_SWEEP = 6,
4144};
4145
4146enum HpsgKind {
4147 KIND_OBJECT = 0,
4148 KIND_CLASS_OBJECT = 1,
4149 KIND_ARRAY_1 = 2,
4150 KIND_ARRAY_2 = 3,
4151 KIND_ARRAY_4 = 4,
4152 KIND_ARRAY_8 = 5,
4153 KIND_UNKNOWN = 6,
4154 KIND_NATIVE = 7,
4155};
4156
4157#define HPSG_PARTIAL (1<<7)
4158#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4159
Ian Rogers30fab402012-01-23 15:43:46 -08004160class HeapChunkContext {
4161 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004162 // Maximum chunk size. Obtain this from the formula:
4163 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4164 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004165 : buf_(16384 - 16),
4166 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004167 merge_(merge),
4168 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004169 Reset();
4170 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004171 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004172 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004173 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004174 }
4175 }
4176
4177 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004178 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004179 Flush();
4180 }
4181 }
4182
Mathieu Chartier36dab362014-07-30 14:59:56 -07004183 void SetChunkOverhead(size_t chunk_overhead) {
4184 chunk_overhead_ = chunk_overhead;
4185 }
4186
4187 void ResetStartOfNextChunk() {
4188 startOfNextMemoryChunk_ = nullptr;
4189 }
4190
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004191 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004192 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004193 return;
4194 }
4195
4196 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004197 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4198 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004199
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004200 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4201 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004202 // [u4]: length of piece, in allocation units
4203 // 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 -08004204 pieceLenField_ = p_;
4205 JDWP::Write4BE(&p_, 0x55555555);
4206 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004207 }
4208
Ian Rogersb726dcb2012-09-05 08:57:23 -07004209 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd636b062013-01-18 17:51:18 -08004210 if (pieceLenField_ == NULL) {
4211 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4212 CHECK(needHeader_);
4213 return;
4214 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004215 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004216 CHECK_LE(&buf_[0], pieceLenField_);
4217 CHECK_LE(pieceLenField_, p_);
4218 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004219
Ian Rogers30fab402012-01-23 15:43:46 -08004220 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004221 Reset();
4222 }
4223
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004224 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004225 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4226 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004227 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(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;
4238 pieceLenField_ = NULL;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004239 }
4240
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004241 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004242 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4243 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004244 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4245 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004246 if (used_bytes == 0) {
4247 if (start == NULL) {
4248 // Reset for start of new heap.
4249 startOfNextMemoryChunk_ = NULL;
4250 Flush();
4251 }
4252 // Only process in use memory so that free region information
4253 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08004254 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08004255 }
4256
Ian Rogers15bf2d32012-08-28 17:33:04 -07004257 /* If we're looking at the native heap, we'll just return
4258 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
4259 */
4260 bool native = type_ == CHUNK_TYPE("NHSG");
4261
Mathieu Chartier36dab362014-07-30 14:59:56 -07004262 // TODO: I'm not sure using start of next chunk works well with multiple spaces. We shouldn't
4263 // count gaps inbetween spaces as free memory.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004264 if (startOfNextMemoryChunk_ != NULL) {
4265 // Transmit any pending free memory. Native free memory of
4266 // over kMaxFreeLen could be because of the use of mmaps, so
4267 // don't report. If not free memory then start a new segment.
4268 bool flush = true;
4269 if (start > startOfNextMemoryChunk_) {
4270 const size_t kMaxFreeLen = 2 * kPageSize;
4271 void* freeStart = startOfNextMemoryChunk_;
4272 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07004273 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07004274 if (!native || freeLen < kMaxFreeLen) {
4275 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
4276 flush = false;
4277 }
4278 }
4279 if (flush) {
4280 startOfNextMemoryChunk_ = NULL;
4281 Flush();
4282 }
4283 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08004284 mirror::Object* obj = reinterpret_cast<mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08004285
4286 // Determine the type of this chunk.
4287 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4288 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004289 uint8_t state = ExamineObject(obj, native);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004290 AppendChunk(state, start, used_bytes + chunk_overhead_);
4291 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004292 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004293
Ian Rogers15bf2d32012-08-28 17:33:04 -07004294 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004295 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004296 // Make sure there's enough room left in the buffer.
4297 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4298 // 17 bytes for any header.
4299 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
4300 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4301 if (bytesLeft < needed) {
4302 Flush();
4303 }
4304
4305 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4306 if (bytesLeft < needed) {
4307 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4308 << needed << " bytes)";
4309 return;
4310 }
4311 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004312 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004313 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4314 totalAllocationUnits_ += length;
4315 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004316 *p_++ = state | HPSG_PARTIAL;
4317 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004318 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004319 }
Ian Rogers30fab402012-01-23 15:43:46 -08004320 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004321 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004322 }
4323
Ian Rogersef7d42f2014-01-06 12:55:46 -08004324 uint8_t ExamineObject(mirror::Object* o, bool is_native_heap)
4325 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004326 if (o == NULL) {
4327 return HPSG_STATE(SOLIDITY_FREE, 0);
4328 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004329
Elliott Hughesa2155262011-11-16 16:26:58 -08004330 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004331
Elliott Hughesa2155262011-11-16 16:26:58 -08004332 // If we're looking at the native heap, we'll just return
4333 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004334 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004335 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4336 }
4337
Ian Rogers5bfa60f2012-09-02 21:17:56 -07004338 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004339 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004340 }
4341
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004342 mirror::Class* c = o->GetClass();
Elliott Hughesa2155262011-11-16 16:26:58 -08004343 if (c == NULL) {
4344 // The object was probably just created but hasn't been initialized yet.
4345 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4346 }
4347
Mathieu Chartier590fee92013-09-13 13:46:47 -07004348 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004349 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004350 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4351 }
4352
Mathieu Chartier65370e32015-01-29 10:47:10 -08004353 if (c->GetClass() == nullptr) {
4354 LOG(ERROR) << "Null class of class " << c << " for object " << o;
4355 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4356 }
4357
Elliott Hughesa2155262011-11-16 16:26:58 -08004358 if (c->IsClassClass()) {
4359 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4360 }
4361
4362 if (c->IsArrayClass()) {
4363 if (o->IsObjectArray()) {
4364 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4365 }
4366 switch (c->GetComponentSize()) {
4367 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4368 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4369 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4370 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4371 }
4372 }
4373
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004374 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4375 }
4376
Ian Rogers30fab402012-01-23 15:43:46 -08004377 std::vector<uint8_t> buf_;
4378 uint8_t* p_;
4379 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004380 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004381 size_t totalAllocationUnits_;
4382 uint32_t type_;
4383 bool merge_;
4384 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004385 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004386
Elliott Hughesa2155262011-11-16 16:26:58 -08004387 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4388};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004389
Mathieu Chartier36dab362014-07-30 14:59:56 -07004390static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
4391 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
4392 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
4393 HeapChunkContext::HeapChunkCallback(
4394 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4395}
4396
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004397void Dbg::DdmSendHeapSegments(bool native) {
4398 Dbg::HpsgWhen when;
4399 Dbg::HpsgWhat what;
4400 if (!native) {
4401 when = gDdmHpsgWhen;
4402 what = gDdmHpsgWhat;
4403 } else {
4404 when = gDdmNhsgWhen;
4405 what = gDdmNhsgWhat;
4406 }
4407 if (when == HPSG_WHEN_NEVER) {
4408 return;
4409 }
4410
4411 // Figure out what kind of chunks we'll be sending.
4412 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
4413
4414 // First, send a heap start chunk.
4415 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004416 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004417 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
4418
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004419 Thread* self = Thread::Current();
4420
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004421 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004422
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004423 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08004424 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
4425 if (native) {
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004426#ifdef USE_DLMALLOC
Ian Rogers1d54e732013-05-02 21:10:01 -07004427 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004428#else
4429 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4430#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004431 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004432 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004433 for (const auto& space : heap->GetContinuousSpaces()) {
4434 if (space->IsDlMallocSpace()) {
Mathieu Chartierd6527cf2014-10-10 12:45:50 -07004435 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004436 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4437 // allocation then the first sizeof(size_t) may belong to it.
4438 context.SetChunkOverhead(sizeof(size_t));
4439 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
4440 } else if (space->IsRosAllocSpace()) {
4441 context.SetChunkOverhead(0);
Mathieu Chartierd6527cf2014-10-10 12:45:50 -07004442 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4443 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
4444 self->TransitionFromRunnableToSuspended(kSuspended);
4445 ThreadList* tl = Runtime::Current()->GetThreadList();
4446 tl->SuspendAll();
4447 {
4448 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4449 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
4450 }
4451 tl->ResumeAll();
4452 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004453 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartierd6527cf2014-10-10 12:45:50 -07004454 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004455 context.SetChunkOverhead(0);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004456 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
4457 } else {
4458 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004459 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004460 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004461 }
Mathieu Chartierd6527cf2014-10-10 12:45:50 -07004462 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004463 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004464 context.SetChunkOverhead(0);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004465 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004466 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004467
4468 // Finally, send a heap end chunk.
4469 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004470}
4471
Elliott Hughesb1a58792013-07-11 18:10:58 -07004472static size_t GetAllocTrackerMax() {
4473#ifdef HAVE_ANDROID_OS
4474 // Check whether there's a system property overriding the number of records.
4475 const char* propertyName = "dalvik.vm.allocTrackerMax";
4476 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4477 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4478 char* end;
4479 size_t value = strtoul(allocRecordMaxString, &end, 10);
4480 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004481 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4482 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004483 return kDefaultNumAllocRecords;
4484 }
4485 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004486 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4487 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004488 return kDefaultNumAllocRecords;
4489 }
4490 return value;
4491 }
4492#endif
4493 return kDefaultNumAllocRecords;
4494}
4495
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004496void Dbg::SetAllocTrackingEnabled(bool enable) {
4497 Thread* self = Thread::Current();
4498 if (enable) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004499 {
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004500 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4501 if (recent_allocation_records_ != NULL) {
4502 return; // Already enabled, bail.
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004503 }
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004504 alloc_record_max_ = GetAllocTrackerMax();
4505 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4506 << kMaxAllocRecordStackDepth << " frames, taking "
4507 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4508 DCHECK_EQ(alloc_record_head_, 0U);
4509 DCHECK_EQ(alloc_record_count_, 0U);
4510 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4511 CHECK(recent_allocation_records_ != NULL);
Elliott Hughes545a0642011-11-08 19:10:03 -08004512 }
Mathieu Chartiera98ffd72014-09-25 17:03:12 -07004513 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004514 } else {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004515 {
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004516 ScopedObjectAccess soa(self); // For type_cache_.Clear();
4517 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4518 if (recent_allocation_records_ == NULL) {
4519 return; // Already disabled, bail.
4520 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07004521 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004522 delete[] recent_allocation_records_;
4523 recent_allocation_records_ = NULL;
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004524 alloc_record_head_ = 0;
4525 alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004526 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004527 }
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004528 // If an allocation comes in before we uninstrument, we will safely drop it on the floor.
Mathieu Chartiera98ffd72014-09-25 17:03:12 -07004529 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004530 }
4531}
4532
Ian Rogers0399dde2012-06-06 17:09:28 -07004533struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08004534 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004535 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08004536 : StackVisitor(thread, NULL), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004537
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004538 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4539 // annotalysis.
4540 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004541 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004542 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004543 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004544 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004545 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004546 record->StackElement(depth)->SetMethod(m);
4547 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004548 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004549 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004550 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004551 }
4552
4553 ~AllocRecordStackVisitor() {
4554 // Clear out any unused stack trace elements.
4555 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004556 record->StackElement(depth)->SetMethod(nullptr);
4557 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004558 }
4559 }
4560
4561 AllocRecord* record;
4562 size_t depth;
4563};
4564
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004565void Dbg::RecordAllocation(mirror::Class* type, size_t byte_count) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004566 Thread* self = Thread::Current();
4567 CHECK(self != NULL);
4568
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004569 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08004570 if (recent_allocation_records_ == NULL) {
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004571 // In the process of shutting down recording, bail.
Elliott Hughes545a0642011-11-08 19:10:03 -08004572 return;
4573 }
4574
4575 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004576 if (++alloc_record_head_ == alloc_record_max_) {
4577 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004578 }
4579
4580 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004581 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004582 record->SetType(type);
4583 record->SetByteCount(byte_count);
4584 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004585
4586 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004587 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004588 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004589
Ian Rogers719d1a32014-03-06 12:13:39 -08004590 if (alloc_record_count_ < alloc_record_max_) {
4591 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004592 }
4593}
4594
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004595// Returns the index of the head element.
4596//
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004597// We point at the most-recently-written record, so if alloc_record_count_ is 1
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004598// we want to use the current element. Take "head+1" and subtract count
4599// from it.
4600//
4601// We need to handle underflow in our circular buffer, so we add
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004602// alloc_record_max_ and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004603size_t Dbg::HeadIndex() {
4604 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4605 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004606}
4607
4608void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004609 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004610 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08004611 if (recent_allocation_records_ == NULL) {
4612 LOG(INFO) << "Not recording tracked allocations";
4613 return;
4614 }
4615
4616 // "i" is the head of the list. We want to start at the end of the
4617 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004618 size_t i = HeadIndex();
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004619 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4620 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004621
Ian Rogers719d1a32014-03-06 12:13:39 -08004622 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004623 while (count--) {
4624 AllocRecord* record = &recent_allocation_records_[i];
4625
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004626 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4627 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004628
4629 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004630 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4631 mirror::ArtMethod* m = stack_element->Method();
Elliott Hughes545a0642011-11-08 19:10:03 -08004632 if (m == NULL) {
4633 break;
4634 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004635 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004636 }
4637
4638 // pause periodically to help logcat catch up
4639 if ((count % 5) == 0) {
4640 usleep(40000);
4641 }
4642
Ian Rogers719d1a32014-03-06 12:13:39 -08004643 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004644 }
4645}
4646
4647class StringTable {
4648 public:
4649 StringTable() {
4650 }
4651
Mathieu Chartier4345c462014-06-27 10:20:14 -07004652 void Add(const std::string& str) {
4653 table_.insert(str);
4654 }
4655
4656 void Add(const char* str) {
4657 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004658 }
4659
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004660 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004661 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004662 if (it == table_.end()) {
4663 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4664 }
4665 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004666 }
4667
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004668 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004669 return table_.size();
4670 }
4671
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004672 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004673 for (const std::string& str : table_) {
4674 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004675 size_t s_len = CountModifiedUtf8Chars(s);
Ian Rogers700a4022014-05-19 16:49:03 -07004676 std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004677 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4678 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004679 }
4680 }
4681
4682 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004683 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004684 DISALLOW_COPY_AND_ASSIGN(StringTable);
4685};
4686
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004687static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004688 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004689 DCHECK(method != nullptr);
4690 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004691 return (source_file != nullptr) ? source_file : "";
4692}
4693
Elliott Hughes545a0642011-11-08 19:10:03 -08004694/*
4695 * The data we send to DDMS contains everything we have recorded.
4696 *
4697 * Message header (all values big-endian):
4698 * (1b) message header len (to allow future expansion); includes itself
4699 * (1b) entry header len
4700 * (1b) stack frame len
4701 * (2b) number of entries
4702 * (4b) offset to string table from start of message
4703 * (2b) number of class name strings
4704 * (2b) number of method name strings
4705 * (2b) number of source file name strings
4706 * For each entry:
4707 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004708 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004709 * (2b) allocated object's class name index
4710 * (1b) stack depth
4711 * For each stack frame:
4712 * (2b) method's class name
4713 * (2b) method name
4714 * (2b) method source file
4715 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4716 * (xb) class name strings
4717 * (xb) method name strings
4718 * (xb) source file strings
4719 *
4720 * As with other DDM traffic, strings are sent as a 4-byte length
4721 * followed by UTF-16 data.
4722 *
4723 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004724 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004725 * each table, but in practice there should be far fewer.
4726 *
4727 * The chief reason for using a string table here is to keep the size of
4728 * the DDMS message to a minimum. This is partly to make the protocol
4729 * efficient, but also because we have to form the whole thing up all at
4730 * once in a memory buffer.
4731 *
4732 * We use separate string tables for class names, method names, and source
4733 * files to keep the indexes small. There will generally be no overlap
4734 * between the contents of these tables.
4735 */
4736jbyteArray Dbg::GetRecentAllocations() {
4737 if (false) {
4738 DumpRecentAllocations();
4739 }
4740
Ian Rogers50b35e22012-10-04 10:09:15 -07004741 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004742 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004743 {
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004744 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004745 //
4746 // Part 1: generate string tables.
4747 //
4748 StringTable class_names;
4749 StringTable method_names;
4750 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004751
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004752 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4753 uint16_t count = capped_count;
4754 size_t idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004755 while (count--) {
4756 AllocRecord* record = &recent_allocation_records_[idx];
Ian Rogerscb6b0f32014-08-12 02:30:58 -07004757 std::string temp;
4758 class_names.Add(record->Type()->GetDescriptor(&temp));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004759 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004760 mirror::ArtMethod* m = record->StackElement(i)->Method();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004761 if (m != NULL) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004762 class_names.Add(m->GetDeclaringClassDescriptor());
4763 method_names.Add(m->GetName());
4764 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004765 }
4766 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004767
Ian Rogers719d1a32014-03-06 12:13:39 -08004768 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004769 }
4770
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004771 LOG(INFO) << "allocation records: " << capped_count;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004772
4773 //
4774 // Part 2: Generate the output and store it in the buffer.
4775 //
4776
4777 // (1b) message header len (to allow future expansion); includes itself
4778 // (1b) entry header len
4779 // (1b) stack frame len
4780 const int kMessageHeaderLen = 15;
4781 const int kEntryHeaderLen = 9;
4782 const int kStackFrameLen = 8;
4783 JDWP::Append1BE(bytes, kMessageHeaderLen);
4784 JDWP::Append1BE(bytes, kEntryHeaderLen);
4785 JDWP::Append1BE(bytes, kStackFrameLen);
4786
4787 // (2b) number of entries
4788 // (4b) offset to string table from start of message
4789 // (2b) number of class name strings
4790 // (2b) number of method name strings
4791 // (2b) number of source file name strings
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004792 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004793 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004794 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004795 JDWP::Append2BE(bytes, class_names.Size());
4796 JDWP::Append2BE(bytes, method_names.Size());
4797 JDWP::Append2BE(bytes, filenames.Size());
4798
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004799 idx = HeadIndex();
Ian Rogerscb6b0f32014-08-12 02:30:58 -07004800 std::string temp;
Brian Carlstromf4cb0362014-09-04 22:15:18 -07004801 for (count = capped_count; count != 0; --count) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004802 // For each entry:
4803 // (4b) total allocation size
4804 // (2b) thread id
4805 // (2b) allocated object's class name index
4806 // (1b) stack depth
4807 AllocRecord* record = &recent_allocation_records_[idx];
4808 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004809 size_t allocated_object_class_name_index =
Ian Rogerscb6b0f32014-08-12 02:30:58 -07004810 class_names.IndexOf(record->Type()->GetDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004811 JDWP::Append4BE(bytes, record->ByteCount());
4812 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004813 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4814 JDWP::Append1BE(bytes, stack_depth);
4815
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004816 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4817 // For each stack frame:
4818 // (2b) method's class name
4819 // (2b) method name
4820 // (2b) method source file
4821 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004822 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004823 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4824 size_t method_name_index = method_names.IndexOf(m->GetName());
4825 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004826 JDWP::Append2BE(bytes, class_name_index);
4827 JDWP::Append2BE(bytes, method_name_index);
4828 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004829 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004830 }
Ian Rogers719d1a32014-03-06 12:13:39 -08004831 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004832 }
4833
4834 // (xb) class name strings
4835 // (xb) method name strings
4836 // (xb) source file strings
4837 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4838 class_names.WriteTo(bytes);
4839 method_names.WriteTo(bytes);
4840 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004841 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004842 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004843 jbyteArray result = env->NewByteArray(bytes.size());
4844 if (result != NULL) {
4845 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4846 }
4847 return result;
4848}
4849
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07004850mirror::ArtMethod* DeoptimizationRequest::Method() const {
4851 ScopedObjectAccessUnchecked soa(Thread::Current());
4852 return soa.DecodeMethod(method_);
4853}
4854
4855void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
4856 ScopedObjectAccessUnchecked soa(Thread::Current());
4857 method_ = soa.EncodeMethod(m);
4858}
4859
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004860} // namespace art