blob: e2f6085ae2b9b65068caee03e56ab01c04d0bbd1 [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 Carlstrom306db812014-09-05 13:01:41 -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 Carlstrom306db812014-09-05 13:01:41 -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 Carlstrom306db812014-09-05 13:01:41 -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 Carlstrom306db812014-09-05 13:01:41 -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;
Ian Rogersc0542af2014-09-03 16:16:56 -0700150 while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != nullptr) {
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_;
Ian Rogersc0542af2014-09-03 16:16:56 -0700181 AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth]; // Unused entries have nullptr method.
Elliott Hughes545a0642011-11-08 19:10:03 -0800182};
183
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700184class Breakpoint {
185 public:
186 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc, bool need_full_deoptimization)
187 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
188 : method_(nullptr), dex_pc_(dex_pc), need_full_deoptimization_(need_full_deoptimization) {
189 ScopedObjectAccessUnchecked soa(Thread::Current());
190 method_ = soa.EncodeMethod(method);
191 }
192
193 Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
194 : method_(nullptr), dex_pc_(other.dex_pc_),
195 need_full_deoptimization_(other.need_full_deoptimization_) {
196 ScopedObjectAccessUnchecked soa(Thread::Current());
197 method_ = soa.EncodeMethod(other.Method());
198 }
199
200 mirror::ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
201 ScopedObjectAccessUnchecked soa(Thread::Current());
202 return soa.DecodeMethod(method_);
203 }
204
205 uint32_t DexPc() const {
206 return dex_pc_;
207 }
208
209 bool NeedFullDeoptimization() const {
210 return need_full_deoptimization_;
211 }
212
213 private:
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100214 // The location of this breakpoint.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700215 jmethodID method_;
216 uint32_t dex_pc_;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100217
218 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700219 bool need_full_deoptimization_;
Elliott Hughes86964332012-02-15 19:37:42 -0800220};
221
Sebastien Hertzed2be172014-08-19 15:33:43 +0200222static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700223 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700224 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
Elliott Hughes86964332012-02-15 19:37:42 -0800225 return os;
226}
227
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200228class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800229 public:
230 DebugInstrumentationListener() {}
231 virtual ~DebugInstrumentationListener() {}
232
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200233 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700234 uint32_t dex_pc ATTRIBUTE_UNUSED)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200235 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800236 if (method->IsNative()) {
237 // TODO: post location events is a suspension point and native method entry stubs aren't.
238 return;
239 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100240 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800241 }
242
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200243 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
244 uint32_t dex_pc, const JValue& return_value)
245 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800246 if (method->IsNative()) {
247 // TODO: post location events is a suspension point and native method entry stubs aren't.
248 return;
249 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100250 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800251 }
252
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200253 void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
254 uint32_t dex_pc)
255 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800256 // We're not recorded to listen to this kind of event, so complain.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700257 UNUSED(thread, this_object, method, dex_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800258 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100259 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800260 }
261
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200262 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
263 uint32_t new_dex_pc)
264 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz8379b222014-02-24 17:38:15 +0100265 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800266 }
267
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200268 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
269 uint32_t dex_pc, mirror::ArtField* field)
270 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700271 UNUSED(thread);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200272 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800273 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200274
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700275 void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object,
276 mirror::ArtMethod* method, uint32_t dex_pc, mirror::ArtField* field,
277 const JValue& field_value)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200278 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
279 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
280 }
281
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700282 void ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED, const ThrowLocation& throw_location,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200283 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
284 mirror::Throwable* exception_object)
285 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
286 Dbg::PostException(throw_location, catch_method, catch_dex_pc, exception_object);
287 }
288
289 private:
290 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800291} gDebugInstrumentationListener;
292
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700293// JDWP is allowed unless the Zygote forbids it.
294static bool gJdwpAllowed = true;
295
Elliott Hughesc0f09332012-03-26 13:27:06 -0700296// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700297static bool gJdwpConfigured = false;
298
Elliott Hughesc0f09332012-03-26 13:27:06 -0700299// Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.)
Elliott Hughes376a7a02011-10-24 18:35:55 -0700300static JDWP::JdwpOptions gJdwpOptions;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700301
302// Runtime JDWP state.
Ian Rogersc0542af2014-09-03 16:16:56 -0700303static JDWP::JdwpState* gJdwpState = nullptr;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700304static bool gDebuggerConnected; // debugger or DDMS is connected.
305static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800306static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700307
Elliott Hughes47fce012011-10-25 18:37:19 -0700308static bool gDdmThreadNotification = false;
309
Elliott Hughes767a1472011-10-26 18:49:02 -0700310// DDMS GC-related settings.
311static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
312static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
313static Dbg::HpsgWhat gDdmHpsgWhat;
314static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
315static Dbg::HpsgWhat gDdmNhsgWhat;
316
Sebastien Hertz6995c602014-09-09 12:10:13 +0200317ObjectRegistry* Dbg::gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700318
Elliott Hughes545a0642011-11-08 19:10:03 -0800319// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800320AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
321size_t Dbg::alloc_record_max_ = 0;
322size_t Dbg::alloc_record_head_ = 0;
323size_t Dbg::alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -0700324Dbg::TypeCache Dbg::type_cache_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800325
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100326// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100327std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
328size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100329size_t Dbg::delayed_full_undeoptimization_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100330
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200331// Instrumentation event reference counters.
332size_t Dbg::dex_pc_change_event_ref_count_ = 0;
333size_t Dbg::method_enter_event_ref_count_ = 0;
334size_t Dbg::method_exit_event_ref_count_ = 0;
335size_t Dbg::field_read_event_ref_count_ = 0;
336size_t Dbg::field_write_event_ref_count_ = 0;
337size_t Dbg::exception_catch_event_ref_count_ = 0;
338uint32_t Dbg::instrumentation_events_ = 0;
339
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100340// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800341static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800342
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700343void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
344 RootType root_type) {
345 if (receiver != nullptr) {
346 callback(&receiver, arg, tid, root_type);
347 }
348 if (thread != nullptr) {
349 callback(&thread, arg, tid, root_type);
350 }
351 if (klass != nullptr) {
352 callback(reinterpret_cast<mirror::Object**>(&klass), arg, tid, root_type);
353 }
354 if (method != nullptr) {
355 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
356 }
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 Chartier3b05e9b2014-03-25 09:29:43 -0700367void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
368 RootType root_type) {
369 if (method != nullptr) {
370 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
371 }
372}
373
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200374bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
375 return dex_pcs.find(dex_pc) == dex_pcs.end();
376}
377
378void SingleStepControl::Clear() {
379 is_active = false;
380 method = nullptr;
381 dex_pcs.clear();
382}
383
Brian Carlstromea46f952013-07-30 01:26:50 -0700384static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800385 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700386 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzed2be172014-08-19 15:33:43 +0200387 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100388 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700389 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
Elliott Hughes86964332012-02-15 19:37:42 -0800390 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
391 return true;
392 }
393 }
394 return false;
395}
396
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100397static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
398 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800399 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
400 // A thread may be suspended for GC; in this code, we really want to know whether
401 // there's a debugger suspension active.
402 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
403}
404
Ian Rogersc0542af2014-09-03 16:16:56 -0700405static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700406 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200407 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700408 if (o == nullptr) {
409 *error = JDWP::ERR_INVALID_OBJECT;
410 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800411 }
412 if (!o->IsArrayInstance()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700413 *error = JDWP::ERR_INVALID_ARRAY;
414 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800415 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700416 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800417 return o->AsArray();
418}
419
Ian Rogersc0542af2014-09-03 16:16:56 -0700420static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700421 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200422 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700423 if (o == nullptr) {
424 *error = JDWP::ERR_INVALID_OBJECT;
425 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800426 }
427 if (!o->IsClass()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700428 *error = JDWP::ERR_INVALID_CLASS;
429 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800430 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700431 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800432 return o->AsClass();
433}
434
Ian Rogersc0542af2014-09-03 16:16:56 -0700435static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
436 JDWP::JdwpError* error)
jeffhaoa77f0f62012-12-05 17:19:31 -0800437 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700438 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
439 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200440 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700441 if (thread_peer == nullptr) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800442 // This isn't even an object.
Ian Rogersc0542af2014-09-03 16:16:56 -0700443 *error = JDWP::ERR_INVALID_OBJECT;
444 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800445 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800446
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800447 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800448 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
449 // This isn't a thread.
Ian Rogersc0542af2014-09-03 16:16:56 -0700450 *error = JDWP::ERR_INVALID_THREAD;
451 return nullptr;
Elliott Hughes221229c2013-01-08 18:17:50 -0800452 }
453
Ian Rogersc0542af2014-09-03 16:16:56 -0700454 Thread* thread = Thread::FromManagedThread(soa, thread_peer);
455 // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a
456 // zombie.
457 *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE;
458 return thread;
Elliott Hughes436e3722012-02-17 20:01:47 -0800459}
460
Elliott Hughes24437992011-11-30 14:49:33 -0800461static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
462 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
463 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
464 return static_cast<JDWP::JdwpTag>(descriptor[0]);
465}
466
Ian Rogers1ff3c982014-08-12 02:30:58 -0700467static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
468 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
469 std::string temp;
470 const char* descriptor = klass->GetDescriptor(&temp);
471 return BasicTagFromDescriptor(descriptor);
472}
473
Ian Rogers98379392014-02-24 16:53:16 -0800474static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700475 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700476 CHECK(c != nullptr);
Elliott Hughes24437992011-11-30 14:49:33 -0800477 if (c->IsArrayClass()) {
478 return JDWP::JT_ARRAY;
479 }
Elliott Hughes24437992011-11-30 14:49:33 -0800480 if (c->IsStringClass()) {
481 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800482 }
Ian Rogers98379392014-02-24 16:53:16 -0800483 if (c->IsClassClass()) {
484 return JDWP::JT_CLASS_OBJECT;
485 }
486 {
487 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
488 if (thread_class->IsAssignableFrom(c)) {
489 return JDWP::JT_THREAD;
490 }
491 }
492 {
493 mirror::Class* thread_group_class =
494 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
495 if (thread_group_class->IsAssignableFrom(c)) {
496 return JDWP::JT_THREAD_GROUP;
497 }
498 }
499 {
500 mirror::Class* class_loader_class =
501 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
502 if (class_loader_class->IsAssignableFrom(c)) {
503 return JDWP::JT_CLASS_LOADER;
504 }
505 }
506 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800507}
508
509/*
510 * Objects declared to hold Object might actually hold a more specific
511 * type. The debugger may take a special interest in these (e.g. it
512 * wants to display the contents of Strings), so we want to return an
513 * appropriate tag.
514 *
515 * Null objects are tagged JT_OBJECT.
516 */
Sebastien Hertz6995c602014-09-09 12:10:13 +0200517JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700518 return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800519}
520
521static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
522 switch (tag) {
523 case JDWP::JT_BOOLEAN:
524 case JDWP::JT_BYTE:
525 case JDWP::JT_CHAR:
526 case JDWP::JT_FLOAT:
527 case JDWP::JT_DOUBLE:
528 case JDWP::JT_INT:
529 case JDWP::JT_LONG:
530 case JDWP::JT_SHORT:
531 case JDWP::JT_VOID:
532 return true;
533 default:
534 return false;
535 }
536}
537
Elliott Hughes3bb81562011-10-21 18:52:59 -0700538/*
539 * Handle one of the JDWP name/value pairs.
540 *
541 * JDWP options are:
542 * help: if specified, show help message and bail
543 * transport: may be dt_socket or dt_shmem
544 * address: for dt_socket, "host:port", or just "port" when listening
545 * server: if "y", wait for debugger to attach; if "n", attach to debugger
546 * timeout: how long to wait for debugger to connect / listen
547 *
548 * Useful with server=n (these aren't supported yet):
549 * onthrow=<exception-name>: connect to debugger when exception thrown
550 * onuncaught=y|n: connect to debugger when uncaught exception thrown
551 * launch=<command-line>: launch the debugger itself
552 *
553 * The "transport" option is required, as is "address" if server=n.
554 */
555static bool ParseJdwpOption(const std::string& name, const std::string& value) {
556 if (name == "transport") {
557 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700558 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700559 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700560 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700561 } else {
562 LOG(ERROR) << "JDWP transport not supported: " << value;
563 return false;
564 }
565 } else if (name == "server") {
566 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700567 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700568 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700569 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700570 } else {
571 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
572 return false;
573 }
574 } else if (name == "suspend") {
575 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700576 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700577 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700578 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700579 } else {
580 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
581 return false;
582 }
583 } else if (name == "address") {
584 /* this is either <port> or <host>:<port> */
585 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700586 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700587 std::string::size_type colon = value.find(':');
588 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700589 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700590 port_string = value.substr(colon + 1);
591 } else {
592 port_string = value;
593 }
594 if (port_string.empty()) {
595 LOG(ERROR) << "JDWP address missing port: " << value;
596 return false;
597 }
598 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800599 uint64_t port = strtoul(port_string.c_str(), &end, 10);
600 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700601 LOG(ERROR) << "JDWP address has junk in port field: " << value;
602 return false;
603 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700604 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700605 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
606 /* valid but unsupported */
607 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
608 } else {
609 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
610 }
611
612 return true;
613}
614
615/*
616 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
617 * "transport=dt_socket,address=8000,server=y,suspend=n"
618 */
619bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800620 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700621
Elliott Hughes3bb81562011-10-21 18:52:59 -0700622 std::vector<std::string> pairs;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700623 Split(options, ',', &pairs);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700624
625 for (size_t i = 0; i < pairs.size(); ++i) {
626 std::string::size_type equals = pairs[i].find('=');
627 if (equals == std::string::npos) {
628 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
629 return false;
630 }
631 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
632 }
633
Elliott Hughes376a7a02011-10-24 18:35:55 -0700634 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700635 LOG(ERROR) << "Must specify JDWP transport: " << options;
636 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700637 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700638 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
639 return false;
640 }
641
642 gJdwpConfigured = true;
643 return true;
644}
645
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700646void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700647 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700648 // No JDWP for you!
649 return;
650 }
651
Ian Rogers719d1a32014-03-06 12:13:39 -0800652 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700653 gRegistry = new ObjectRegistry;
654
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700655 // Init JDWP if the debugger is enabled. This may connect out to a
656 // debugger, passively listen for a debugger, or block waiting for a
657 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700658 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
Ian Rogersc0542af2014-09-03 16:16:56 -0700659 if (gJdwpState == nullptr) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800660 // We probably failed because some other process has the port already, which means that
661 // if we don't abort the user is likely to think they're talking to us when they're actually
662 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800663 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700664 }
665
666 // If a debugger has already attached, send the "welcome" message.
667 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700668 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700669 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes376a7a02011-10-24 18:35:55 -0700670 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800671 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700672 }
673 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700674}
675
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700676void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200677 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
678 // destruction of gJdwpState).
679 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
680 gJdwpState->PostVMDeath();
681 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100682 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
683 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700684 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800685 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700686 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800687 gRegistry = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700688}
689
Elliott Hughes767a1472011-10-26 18:49:02 -0700690void Dbg::GcDidFinish() {
691 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700692 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700693 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700694 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700695 }
696 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700697 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700698 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700699 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700700 }
701 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700702 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700703 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700704 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700705 }
706}
707
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700708void Dbg::SetJdwpAllowed(bool allowed) {
709 gJdwpAllowed = allowed;
710}
711
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700712DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700713 return Thread::Current()->GetInvokeReq();
714}
715
716Thread* Dbg::GetDebugThread() {
Ian Rogersc0542af2014-09-03 16:16:56 -0700717 return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700718}
719
720void Dbg::ClearWaitForEventThread() {
721 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700722}
723
724void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700725 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800726 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700727 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800728 gDisposed = false;
729}
730
731void Dbg::Disposed() {
732 gDisposed = true;
733}
734
735bool Dbg::IsDisposed() {
736 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700737}
738
Elliott Hughesa2155262011-11-16 16:26:58 -0800739void Dbg::GoActive() {
740 // Enable all debugging features, including scans for breakpoints.
741 // This is a no-op if we're already active.
742 // Only called from the JDWP handler thread.
743 if (gDebuggerActive) {
744 return;
745 }
746
Elliott Hughesc0f09332012-03-26 13:27:06 -0700747 {
748 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Sebastien Hertzed2be172014-08-19 15:33:43 +0200749 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700750 CHECK_EQ(gBreakpoints.size(), 0U);
751 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800752
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100753 {
Brian Carlstrom306db812014-09-05 13:01:41 -0700754 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100755 CHECK_EQ(deoptimization_requests_.size(), 0U);
756 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100757 CHECK_EQ(delayed_full_undeoptimization_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200758 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
759 CHECK_EQ(method_enter_event_ref_count_, 0U);
760 CHECK_EQ(method_exit_event_ref_count_, 0U);
761 CHECK_EQ(field_read_event_ref_count_, 0U);
762 CHECK_EQ(field_write_event_ref_count_, 0U);
763 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100764 }
765
Ian Rogers62d6c772013-02-27 08:32:07 -0800766 Runtime* runtime = Runtime::Current();
767 runtime->GetThreadList()->SuspendAll();
768 Thread* self = Thread::Current();
769 ThreadState old_state = self->SetStateUnsafe(kRunnable);
770 CHECK_NE(old_state, kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100771 runtime->GetInstrumentation()->EnableDeoptimization();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200772 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800773 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800774 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
775 runtime->GetThreadList()->ResumeAll();
776
777 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700778}
779
780void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700781 CHECK(gDebuggerConnected);
782
Elliott Hughesc0f09332012-03-26 13:27:06 -0700783 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700784
Ian Rogers62d6c772013-02-27 08:32:07 -0800785 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
786 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
787 // and clear the object registry.
788 Runtime* runtime = Runtime::Current();
789 runtime->GetThreadList()->SuspendAll();
790 Thread* self = Thread::Current();
791 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100792
793 // Debugger may not be active at this point.
794 if (gDebuggerActive) {
795 {
796 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
797 // This prevents us from having any pending deoptimization request when the debugger attaches
798 // to us again while no event has been requested yet.
Brian Carlstrom306db812014-09-05 13:01:41 -0700799 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100800 deoptimization_requests_.clear();
801 full_deoptimization_event_count_ = 0U;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100802 delayed_full_undeoptimization_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100803 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200804 if (instrumentation_events_ != 0) {
805 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
806 instrumentation_events_);
807 instrumentation_events_ = 0;
808 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100809 runtime->GetInstrumentation()->DisableDeoptimization();
810 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100811 }
Elliott Hughes234ab152011-10-26 14:02:26 -0700812 gRegistry->Clear();
813 gDebuggerConnected = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800814 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
815 runtime->GetThreadList()->ResumeAll();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700816}
817
Elliott Hughesc0f09332012-03-26 13:27:06 -0700818bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700819 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700820}
821
Elliott Hughesc0f09332012-03-26 13:27:06 -0700822bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700823 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700824}
825
826int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800827 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700828}
829
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700830void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700831 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700832}
833
Elliott Hughes88d63092013-01-09 09:55:54 -0800834std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700835 JDWP::JdwpError error;
836 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error);
837 if (o == nullptr) {
838 if (error == JDWP::ERR_NONE) {
839 return "NULL";
840 } else {
841 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
842 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800843 }
844 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700845 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800846 }
Sebastien Hertz6995c602014-09-09 12:10:13 +0200847 return GetClassName(o->AsClass());
848}
849
850std::string Dbg::GetClassName(mirror::Class* klass) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200851 if (klass == nullptr) {
852 return "NULL";
853 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700854 std::string temp;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200855 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700856}
857
Ian Rogersc0542af2014-09-03 16:16:56 -0700858JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800859 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700860 mirror::Class* c = DecodeClass(id, &status);
861 if (c == nullptr) {
862 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800863 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800864 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700865 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800866 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800867}
868
Ian Rogersc0542af2014-09-03 16:16:56 -0700869JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800870 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700871 mirror::Class* c = DecodeClass(id, &status);
872 if (c == nullptr) {
873 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800874 return status;
875 }
876 if (c->IsInterface()) {
877 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700878 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800879 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700880 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800881 }
882 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700883}
884
Elliott Hughes436e3722012-02-17 20:01:47 -0800885JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700886 JDWP::JdwpError error;
887 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
888 if (o == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800889 return JDWP::ERR_INVALID_OBJECT;
890 }
891 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
892 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700893}
894
Elliott Hughes436e3722012-02-17 20:01:47 -0800895JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700896 JDWP::JdwpError error;
897 mirror::Class* c = DecodeClass(id, &error);
898 if (c == nullptr) {
899 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800900 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800901
902 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
903
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700904 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
905 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800906 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700907 if ((access_flags & kAccInterface) == 0) {
908 access_flags |= kAccSuper;
909 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800910
911 expandBufAdd4BE(pReply, access_flags);
912
913 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700914}
915
Ian Rogersc0542af2014-09-03 16:16:56 -0700916JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
917 JDWP::JdwpError error;
918 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
919 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800920 return JDWP::ERR_INVALID_OBJECT;
921 }
922
923 // Ensure all threads are suspended while we read objects' lock words.
924 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100925 CHECK_EQ(self->GetState(), kRunnable);
926 self->TransitionFromRunnableToSuspended(kSuspended);
927 Runtime::Current()->GetThreadList()->SuspendAll();
Elliott Hughesf327e072013-01-09 16:01:26 -0800928
929 MonitorInfo monitor_info(o);
930
Sebastien Hertz54263242014-03-19 18:16:50 +0100931 Runtime::Current()->GetThreadList()->ResumeAll();
932 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800933
Ian Rogersc0542af2014-09-03 16:16:56 -0700934 if (monitor_info.owner_ != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700935 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800936 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700937 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800938 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700939 expandBufAdd4BE(reply, monitor_info.entry_count_);
940 expandBufAdd4BE(reply, monitor_info.waiters_.size());
941 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
942 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800943 }
944 return JDWP::ERR_NONE;
945}
946
Elliott Hughes734b8c62013-01-11 15:32:45 -0800947JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700948 std::vector<JDWP::ObjectId>* monitors,
949 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800950 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700951 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700952 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700953 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800954 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700955 : StackVisitor(thread, context), current_stack_depth(0),
956 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800957
958 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
959 // annotalysis.
960 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
961 if (!GetMethod()->IsRuntimeMethod()) {
962 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800963 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800964 }
965 return true;
966 }
967
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700968 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
969 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800970 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700971 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700972 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800973 }
974
Elliott Hughes734b8c62013-01-11 15:32:45 -0800975 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700976 std::vector<JDWP::ObjectId>* const monitors;
977 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800978 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800979
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700980 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700981 Thread* thread;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700982 {
983 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700984 JDWP::JdwpError error;
985 thread = DecodeThread(soa, thread_id, &error);
986 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700987 return error;
988 }
989 if (!IsSuspendedForDebugger(soa, thread)) {
990 return JDWP::ERR_THREAD_NOT_SUSPENDED;
991 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700992 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700993 std::unique_ptr<Context> context(Context::Create());
Ian Rogersc0542af2014-09-03 16:16:56 -0700994 OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700995 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800996 return JDWP::ERR_NONE;
997}
998
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100999JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001000 JDWP::ObjectId* contended_monitor) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001001 mirror::Object* contended_monitor_obj;
Elliott Hughesf9501702013-01-11 11:22:27 -08001002 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001003 *contended_monitor = 0;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001004 {
1005 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001006 JDWP::JdwpError error;
1007 Thread* thread = DecodeThread(soa, thread_id, &error);
1008 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001009 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.
Ian Rogersc0542af2014-09-03 16:16:56 -07001018 *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,
Ian Rogersc0542af2014-09-03 16:16:56 -07001023 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001024 gc::Heap* heap = Runtime::Current()->GetHeap();
1025 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001026 std::vector<mirror::Class*> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -07001027 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001028 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001029 JDWP::JdwpError error;
1030 mirror::Class* c = DecodeClass(class_ids[i], &error);
1031 if (c == nullptr) {
1032 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001033 }
1034 classes.push_back(c);
Ian Rogersc0542af2014-09-03 16:16:56 -07001035 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001036 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001037 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001038 return JDWP::ERR_NONE;
1039}
1040
Ian Rogersc0542af2014-09-03 16:16:56 -07001041JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
1042 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001043 gc::Heap* heap = Runtime::Current()->GetHeap();
1044 // We only want reachable instances, so do a GC.
1045 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -07001046 JDWP::JdwpError error;
1047 mirror::Class* c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001048 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001049 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001050 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001051 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001052 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
1053 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001054 instances->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes3b78c942013-01-15 17:35:41 -08001055 }
1056 return JDWP::ERR_NONE;
1057}
1058
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001059JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001060 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001061 gc::Heap* heap = Runtime::Current()->GetHeap();
1062 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -07001063 JDWP::JdwpError error;
1064 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1065 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001066 return JDWP::ERR_INVALID_OBJECT;
1067 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001068 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001069 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001070 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001071 referring_objects->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001072 }
1073 return JDWP::ERR_NONE;
1074}
1075
Ian Rogersc0542af2014-09-03 16:16:56 -07001076JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
1077 JDWP::JdwpError error;
1078 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1079 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001080 return JDWP::ERR_INVALID_OBJECT;
1081 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001082 gRegistry->DisableCollection(object_id);
1083 return JDWP::ERR_NONE;
1084}
1085
Ian Rogersc0542af2014-09-03 16:16:56 -07001086JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
1087 JDWP::JdwpError error;
1088 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +01001089 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
1090 // also ignores these cases and never return an error. However it's not obvious why this command
1091 // should behave differently from DisableCollection and IsCollected commands. So let's be more
1092 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -07001093 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001094 return JDWP::ERR_INVALID_OBJECT;
1095 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001096 gRegistry->EnableCollection(object_id);
1097 return JDWP::ERR_NONE;
1098}
1099
Ian Rogersc0542af2014-09-03 16:16:56 -07001100JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
1101 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001102 if (object_id == 0) {
1103 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +01001104 return JDWP::ERR_INVALID_OBJECT;
1105 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001106 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1107 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -07001108 JDWP::JdwpError error;
1109 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1110 if (o != nullptr) {
1111 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001112 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001113 return JDWP::ERR_NONE;
1114}
1115
Ian Rogersc0542af2014-09-03 16:16:56 -07001116void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001117 gRegistry->DisposeObject(object_id, reference_count);
1118}
1119
Sebastien Hertz6995c602014-09-09 12:10:13 +02001120JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001121 DCHECK(klass != nullptr);
1122 if (klass->IsArrayClass()) {
1123 return JDWP::TT_ARRAY;
1124 } else if (klass->IsInterface()) {
1125 return JDWP::TT_INTERFACE;
1126 } else {
1127 return JDWP::TT_CLASS;
1128 }
1129}
1130
Elliott Hughes88d63092013-01-09 09:55:54 -08001131JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001132 JDWP::JdwpError error;
1133 mirror::Class* c = DecodeClass(class_id, &error);
1134 if (c == nullptr) {
1135 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001136 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001137
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001138 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1139 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001140 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001141 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001142}
1143
Ian Rogersc0542af2014-09-03 16:16:56 -07001144void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001145 // Get the complete list of reference classes (i.e. all classes except
1146 // the primitive types).
1147 // Returns a newly-allocated buffer full of RefTypeId values.
1148 struct ClassListCreator {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001149 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes_in) : classes(classes_in) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001150 }
1151
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001152 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001153 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1154 }
1155
Elliott Hughes64f574f2013-02-20 14:57:12 -08001156 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1157 // annotalysis.
1158 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001159 if (!c->IsPrimitive()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001160 classes->push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001161 }
1162 return true;
1163 }
1164
Ian Rogersc0542af2014-09-03 16:16:56 -07001165 std::vector<JDWP::RefTypeId>* const classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001166 };
1167
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001168 ClassListCreator clc(classes);
Sebastien Hertz4537c412014-08-28 14:41:50 +02001169 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(ClassListCreator::Visit,
1170 &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001171}
1172
Ian Rogers1ff3c982014-08-12 02:30:58 -07001173JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1174 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001175 JDWP::JdwpError error;
1176 mirror::Class* c = DecodeClass(class_id, &error);
1177 if (c == nullptr) {
1178 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001179 }
1180
Elliott Hughesa2155262011-11-16 16:26:58 -08001181 if (c->IsArrayClass()) {
1182 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1183 *pTypeTag = JDWP::TT_ARRAY;
1184 } else {
1185 if (c->IsErroneous()) {
1186 *pStatus = JDWP::CS_ERROR;
1187 } else {
1188 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1189 }
1190 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1191 }
1192
Ian Rogersc0542af2014-09-03 16:16:56 -07001193 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001194 std::string temp;
1195 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001196 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001197 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001198}
1199
Ian Rogersc0542af2014-09-03 16:16:56 -07001200void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001201 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001202 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001203 ids->clear();
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001204 for (size_t i = 0; i < classes.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001205 ids->push_back(gRegistry->Add(classes[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001206 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001207}
1208
Ian Rogersc0542af2014-09-03 16:16:56 -07001209JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1210 JDWP::JdwpError error;
1211 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1212 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001213 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001214 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001215
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001216 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001217 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001218
1219 expandBufAdd1(pReply, type_tag);
1220 expandBufAddRefTypeId(pReply, type_id);
1221
1222 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001223}
1224
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001225JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001226 JDWP::JdwpError error;
1227 mirror::Class* c = DecodeClass(class_id, &error);
1228 if (c == nullptr) {
1229 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001230 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001231 std::string temp;
1232 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001233 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001234}
1235
Ian Rogersc0542af2014-09-03 16:16:56 -07001236JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1237 JDWP::JdwpError error;
1238 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001239 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001240 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001241 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001242 const char* source_file = c->GetSourceFile();
1243 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001244 return JDWP::ERR_ABSENT_INFORMATION;
1245 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001246 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001247 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001248}
1249
Ian Rogersc0542af2014-09-03 16:16:56 -07001250JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001251 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001252 JDWP::JdwpError error;
1253 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1254 if (error != JDWP::ERR_NONE) {
1255 *tag = JDWP::JT_VOID;
1256 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001257 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001258 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001259 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001260}
1261
Elliott Hughesaed4be92011-12-02 16:16:23 -08001262size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001263 switch (tag) {
1264 case JDWP::JT_VOID:
1265 return 0;
1266 case JDWP::JT_BYTE:
1267 case JDWP::JT_BOOLEAN:
1268 return 1;
1269 case JDWP::JT_CHAR:
1270 case JDWP::JT_SHORT:
1271 return 2;
1272 case JDWP::JT_FLOAT:
1273 case JDWP::JT_INT:
1274 return 4;
1275 case JDWP::JT_ARRAY:
1276 case JDWP::JT_OBJECT:
1277 case JDWP::JT_STRING:
1278 case JDWP::JT_THREAD:
1279 case JDWP::JT_THREAD_GROUP:
1280 case JDWP::JT_CLASS_LOADER:
1281 case JDWP::JT_CLASS_OBJECT:
1282 return sizeof(JDWP::ObjectId);
1283 case JDWP::JT_DOUBLE:
1284 case JDWP::JT_LONG:
1285 return 8;
1286 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001287 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001288 return -1;
1289 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001290}
1291
Ian Rogersc0542af2014-09-03 16:16:56 -07001292JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1293 JDWP::JdwpError error;
1294 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1295 if (a == nullptr) {
1296 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001297 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001298 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001299 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001300}
1301
Elliott Hughes88d63092013-01-09 09:55:54 -08001302JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001303 JDWP::JdwpError error;
1304 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001305 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001306 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001307 }
Elliott Hughes24437992011-11-30 14:49:33 -08001308
1309 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1310 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001311 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001312 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001313 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1314 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001315 expandBufAdd4BE(pReply, count);
1316
Ian Rogers1ff3c982014-08-12 02:30:58 -07001317 if (IsPrimitiveTag(element_tag)) {
1318 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001319 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1320 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001321 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001322 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1323 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001324 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001325 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1326 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001327 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001328 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1329 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001330 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001331 memcpy(dst, &src[offset * width], count * width);
1332 }
1333 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001334 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001335 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001336 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001337 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001338 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001339 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001340 expandBufAdd1(pReply, specific_tag);
1341 expandBufAddObjectId(pReply, gRegistry->Add(element));
1342 }
1343 }
1344
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001345 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001346}
1347
Ian Rogersef7d42f2014-01-06 12:55:46 -08001348template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001349static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001350 NO_THREAD_SAFETY_ANALYSIS {
1351 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001352 DCHECK(a->GetClass()->IsPrimitiveArray());
1353
Ian Rogersef7d42f2014-01-06 12:55:46 -08001354 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001355 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001356 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001357 }
1358}
1359
Elliott Hughes88d63092013-01-09 09:55:54 -08001360JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001361 JDWP::Request* request) {
1362 JDWP::JdwpError error;
1363 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1364 if (dst == nullptr) {
1365 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001366 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001367
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001368 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001369 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001370 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001371 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001372 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001373
Ian Rogers1ff3c982014-08-12 02:30:58 -07001374 if (IsPrimitiveTag(element_tag)) {
1375 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001376 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001377 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001378 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001379 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001380 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001381 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001382 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001383 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001384 }
1385 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001386 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001387 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001388 JDWP::ObjectId id = request->ReadObjectId();
Ian Rogersc0542af2014-09-03 16:16:56 -07001389 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1390 if (error != JDWP::ERR_NONE) {
1391 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001392 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001393 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001394 }
1395 }
1396
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001397 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001398}
1399
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001400JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001401 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001402}
1403
Ian Rogersc0542af2014-09-03 16:16:56 -07001404JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object) {
1405 JDWP::JdwpError error;
1406 mirror::Class* c = DecodeClass(class_id, &error);
1407 if (c == nullptr) {
1408 *new_object = 0;
1409 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001410 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001411 *new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001412 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001413}
1414
Elliott Hughesbf13d362011-12-08 15:51:37 -08001415/*
1416 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1417 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001418JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogersc0542af2014-09-03 16:16:56 -07001419 JDWP::ObjectId* new_array) {
1420 JDWP::JdwpError error;
1421 mirror::Class* c = DecodeClass(array_class_id, &error);
1422 if (c == nullptr) {
1423 *new_array = 0;
1424 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001425 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001426 *new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -07001427 c->GetComponentSizeShift(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001428 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 Hertz6995c602014-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 Hertz6995c602014-09-09 12:10:13 +02001455bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1456 CHECK(event_thread != nullptr);
1457 JDWP::JdwpError error;
1458 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(expected_thread_id,
1459 &error);
1460 return expected_thread_peer == event_thread->GetPeer();
1461}
1462
1463bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1464 const JDWP::EventLocation& event_location) {
1465 if (expected_location.dex_pc != event_location.dex_pc) {
1466 return false;
1467 }
1468 mirror::ArtMethod* m = FromMethodId(expected_location.method_id);
1469 return m == event_location.method;
1470}
1471
1472bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001473 if (event_class == nullptr) {
1474 return false;
1475 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02001476 JDWP::JdwpError error;
1477 mirror::Class* expected_class = DecodeClass(class_id, &error);
1478 CHECK(expected_class != nullptr);
1479 return expected_class->IsAssignableFrom(event_class);
1480}
1481
1482bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
1483 mirror::ArtField* event_field) {
1484 mirror::ArtField* expected_field = FromFieldId(expected_field_id);
1485 if (expected_field != event_field) {
1486 return false;
1487 }
1488 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1489}
1490
1491bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1492 JDWP::JdwpError error;
1493 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error);
1494 return modifier_instance == event_instance;
1495}
1496
1497void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001498 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001499 if (m == nullptr) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001500 memset(location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001501 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001502 mirror::Class* c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001503 location->type_tag = GetTypeTag(c);
1504 location->class_id = gRegistry->AddRefType(c);
1505 location->method_id = ToMethodId(m);
1506 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001507 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001508}
1509
Ian Rogersc0542af2014-09-03 16:16:56 -07001510std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001511 mirror::ArtMethod* m = FromMethodId(method_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001512 if (m == nullptr) {
1513 return "NULL";
1514 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001515 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001516}
1517
Ian Rogersc0542af2014-09-03 16:16:56 -07001518std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001519 mirror::ArtField* f = FromFieldId(field_id);
1520 if (f == nullptr) {
1521 return "NULL";
1522 }
1523 return f->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001524}
1525
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001526/*
1527 * Augment the access flags for synthetic methods and fields by setting
1528 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1529 * flags not specified by the Java programming language.
1530 */
1531static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1532 accessFlags &= kAccJavaFlagsMask;
1533 if ((accessFlags & kAccSynthetic) != 0) {
1534 accessFlags |= 0xf0000000;
1535 }
1536 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001537}
1538
Elliott Hughesdbb40792011-11-18 17:05:22 -08001539/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001540 * Circularly shifts registers so that arguments come first. Debuggers
1541 * expect slots to begin with arguments, but dex code places them at
1542 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001543 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001544static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1545 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001546 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001547 if (code_item == nullptr) {
1548 // We should not get here for a method without code (native, proxy or abstract). Log it and
1549 // return the slot as is since all registers are arguments.
1550 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1551 return slot;
1552 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001553 uint16_t ins_size = code_item->ins_size_;
1554 uint16_t locals_size = code_item->registers_size_ - ins_size;
1555 if (slot >= locals_size) {
1556 return slot - locals_size;
1557 } else {
1558 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001559 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001560}
1561
Jeff Haob7cefc72013-11-14 14:51:09 -08001562/*
1563 * Circularly shifts registers so that arguments come last. Reverts
1564 * slots to dex style argument placement.
1565 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001566static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001567 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001568 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001569 if (code_item == nullptr) {
1570 // We should not get here for a method without code (native, proxy or abstract). Log it and
1571 // return the slot as is since all registers are arguments.
1572 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1573 return slot;
1574 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001575 uint16_t ins_size = code_item->ins_size_;
1576 uint16_t locals_size = code_item->registers_size_ - ins_size;
1577 if (slot < ins_size) {
1578 return slot + locals_size;
1579 } else {
1580 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001581 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001582}
1583
Elliott Hughes88d63092013-01-09 09:55:54 -08001584JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001585 JDWP::JdwpError error;
1586 mirror::Class* c = DecodeClass(class_id, &error);
1587 if (c == nullptr) {
1588 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001589 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001590
1591 size_t instance_field_count = c->NumInstanceFields();
1592 size_t static_field_count = c->NumStaticFields();
1593
1594 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1595
1596 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001597 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001598 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001599 expandBufAddUtf8String(pReply, f->GetName());
1600 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001601 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001602 static const char genericSignature[1] = "";
1603 expandBufAddUtf8String(pReply, genericSignature);
1604 }
1605 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1606 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001607 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001608}
1609
Elliott Hughes88d63092013-01-09 09:55:54 -08001610JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001611 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001612 JDWP::JdwpError error;
1613 mirror::Class* c = DecodeClass(class_id, &error);
1614 if (c == nullptr) {
1615 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001616 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001617
1618 size_t direct_method_count = c->NumDirectMethods();
1619 size_t virtual_method_count = c->NumVirtualMethods();
1620
1621 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1622
1623 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001624 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001625 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001626 expandBufAddUtf8String(pReply, m->GetName());
1627 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001628 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001629 static const char genericSignature[1] = "";
1630 expandBufAddUtf8String(pReply, genericSignature);
1631 }
1632 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1633 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001634 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001635}
1636
Elliott Hughes88d63092013-01-09 09:55:54 -08001637JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001638 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001639 Thread* self = Thread::Current();
1640 StackHandleScope<1> hs(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07001641 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error)));
Mathieu Chartierf8322842014-05-16 10:59:25 -07001642 if (c.Get() == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001643 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001644 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001645 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001646 expandBufAdd4BE(pReply, interface_count);
1647 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001648 expandBufAddRefTypeId(pReply,
1649 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001650 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001651 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001652}
1653
Ian Rogersc0542af2014-09-03 16:16:56 -07001654void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
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(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001693 DebugCallbackContext::Callback, nullptr, &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(
Ian Rogersc0542af2014-09-03 16:16:56 -07001751 code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001752 &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,
Ian Rogersc0542af2014-09-03 16:16:56 -07001773 std::vector<uint8_t>* bytecodes) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001774 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001775 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001776 return JDWP::ERR_INVALID_METHODID;
1777 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001778 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001779 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1780 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1781 const uint8_t* end = begin + byte_count;
1782 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001783 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001784 }
1785 return JDWP::ERR_NONE;
1786}
1787
Elliott Hughes88d63092013-01-09 09:55:54 -08001788JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001789 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001790}
1791
Elliott Hughes88d63092013-01-09 09:55:54 -08001792JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001793 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001794}
1795
Elliott Hughes88d63092013-01-09 09:55:54 -08001796static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1797 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001798 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001799 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001800 JDWP::JdwpError error;
1801 mirror::Class* c = DecodeClass(ref_type_id, &error);
1802 if (ref_type_id != 0 && c == nullptr) {
1803 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001804 }
1805
Sebastien Hertz6995c602014-09-09 12:10:13 +02001806 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001807 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001808 return JDWP::ERR_INVALID_OBJECT;
1809 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001810 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001811
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001812 mirror::Class* receiver_class = c;
Ian Rogersc0542af2014-09-03 16:16:56 -07001813 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001814 receiver_class = o->GetClass();
1815 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001816 // TODO: should we give up now if receiver_class is nullptr?
1817 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001818 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001819 return JDWP::ERR_INVALID_FIELDID;
1820 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001821
Elliott Hughes0cf74332012-02-23 23:14:00 -08001822 // The RI only enforces the static/non-static mismatch in one direction.
1823 // TODO: should we change the tests and check both?
1824 if (is_static) {
1825 if (!f->IsStatic()) {
1826 return JDWP::ERR_INVALID_FIELDID;
1827 }
1828 } else {
1829 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001830 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field "
1831 << 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
Ian Rogersc0542af2014-09-03 16:16:56 -07001859JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1860 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001861 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001862}
1863
Elliott Hughes88d63092013-01-09 09:55:54 -08001864static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001865 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001866 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001867 JDWP::JdwpError error;
Sebastien Hertz6995c602014-09-09 12:10:13 +02001868 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001869 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001870 return JDWP::ERR_INVALID_OBJECT;
1871 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001872 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001873
1874 // The RI only enforces the static/non-static mismatch in one direction.
1875 // TODO: should we change the tests and check both?
1876 if (is_static) {
1877 if (!f->IsStatic()) {
1878 return JDWP::ERR_INVALID_FIELDID;
1879 }
1880 } else {
1881 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001882 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001883 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001884 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001885 if (f->IsStatic()) {
1886 o = f->GetDeclaringClass();
1887 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001888
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001889 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001890
1891 if (IsPrimitiveTag(tag)) {
1892 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001893 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001894 // Debugging can't use transactional mode (runtime only).
1895 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001896 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001897 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001898 // Debugging can't use transactional mode (runtime only).
1899 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001900 }
1901 } else {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001902 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001903 if (error != JDWP::ERR_NONE) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001904 return JDWP::ERR_INVALID_OBJECT;
1905 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001906 if (v != nullptr) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001907 mirror::Class* field_type;
1908 {
1909 StackHandleScope<3> hs(Thread::Current());
1910 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1911 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
1912 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
1913 field_type = FieldHelper(h_f).GetType();
1914 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001915 if (!field_type->IsAssignableFrom(v->GetClass())) {
1916 return JDWP::ERR_INVALID_OBJECT;
1917 }
1918 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001919 // Debugging can't use transactional mode (runtime only).
1920 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001921 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001922
1923 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001924}
1925
Elliott Hughes88d63092013-01-09 09:55:54 -08001926JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001927 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001928 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001929}
1930
Elliott Hughes88d63092013-01-09 09:55:54 -08001931JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1932 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001933}
1934
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001935JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001936 JDWP::JdwpError error;
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001937 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error);
1938 if (error != JDWP::ERR_NONE) {
1939 return error;
1940 }
1941 if (obj == nullptr) {
1942 return JDWP::ERR_INVALID_OBJECT;
1943 }
1944 {
1945 ScopedObjectAccessUnchecked soa(Thread::Current());
1946 mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String);
1947 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
1948 // This isn't a string.
1949 return JDWP::ERR_INVALID_STRING;
1950 }
1951 }
1952 *str = obj->AsString()->ToModifiedUtf8();
1953 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001954}
1955
Jeff Hao579b0242013-11-18 13:16:49 -08001956void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1957 if (IsPrimitiveTag(tag)) {
1958 expandBufAdd1(pReply, tag);
1959 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1960 expandBufAdd1(pReply, return_value->GetI());
1961 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1962 expandBufAdd2BE(pReply, return_value->GetI());
1963 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1964 expandBufAdd4BE(pReply, return_value->GetI());
1965 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1966 expandBufAdd8BE(pReply, return_value->GetJ());
1967 } else {
1968 CHECK_EQ(tag, JDWP::JT_VOID);
1969 }
1970 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001971 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001972 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001973 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001974 expandBufAddObjectId(pReply, gRegistry->Add(value));
1975 }
1976}
1977
Ian Rogersc0542af2014-09-03 16:16:56 -07001978JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001979 ScopedObjectAccessUnchecked soa(Thread::Current());
1980 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001981 JDWP::JdwpError error;
1982 Thread* thread = DecodeThread(soa, thread_id, &error);
1983 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001984 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1985 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001986 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001987
1988 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07001989 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1990 CHECK(thread_object != nullptr) << error;
Brian Carlstromea46f952013-07-30 01:26:50 -07001991 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001992 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1993 mirror::String* s =
1994 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Ian Rogersc0542af2014-09-03 16:16:56 -07001995 if (s != nullptr) {
1996 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08001997 }
1998 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001999}
2000
Elliott Hughes221229c2013-01-08 18:17:50 -08002001JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02002002 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002003 JDWP::JdwpError error;
2004 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
2005 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002006 return JDWP::ERR_INVALID_OBJECT;
2007 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002008 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08002009 // Okay, so it's an object, but is it actually a thread?
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002010 {
2011 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002012 Thread* thread = DecodeThread(soa, thread_id, &error);
2013 UNUSED(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002014 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002015 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2016 // Zombie threads are in the null group.
2017 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002018 error = JDWP::ERR_NONE;
2019 } else if (error == JDWP::ERR_NONE) {
2020 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
2021 CHECK(c != nullptr);
Sebastien Hertze49e1952014-10-13 11:27:13 +02002022 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002023 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002024 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002025 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002026 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
2027 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08002028 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002029 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002030}
2031
Sebastien Hertza06430c2014-09-15 19:21:30 +02002032static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
2033 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
2034 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002035 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,
2036 error);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002037 if (*error != JDWP::ERR_NONE) {
2038 return nullptr;
2039 }
2040 if (thread_group == nullptr) {
2041 *error = JDWP::ERR_INVALID_OBJECT;
2042 return nullptr;
2043 }
Ian Rogers98379392014-02-24 16:53:16 -08002044 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
2045 CHECK(c != nullptr);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002046 if (!c->IsAssignableFrom(thread_group->GetClass())) {
2047 // This is not a java.lang.ThreadGroup.
2048 *error = JDWP::ERR_INVALID_THREAD_GROUP;
2049 return nullptr;
2050 }
2051 *error = JDWP::ERR_NONE;
2052 return thread_group;
2053}
2054
2055JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
2056 ScopedObjectAccessUnchecked soa(Thread::Current());
2057 JDWP::JdwpError error;
2058 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2059 if (error != JDWP::ERR_NONE) {
2060 return error;
2061 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002062 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupName");
Sebastien Hertze49e1952014-10-13 11:27:13 +02002063 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_name);
Ian Rogersc0542af2014-09-03 16:16:56 -07002064 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002065 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002066
2067 std::string thread_group_name(s->ToModifiedUtf8());
2068 expandBufAddUtf8String(pReply, thread_group_name);
2069 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002070}
2071
Sebastien Hertza06430c2014-09-15 19:21:30 +02002072JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08002073 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002074 JDWP::JdwpError error;
Sebastien Hertza06430c2014-09-15 19:21:30 +02002075 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2076 if (error != JDWP::ERR_NONE) {
2077 return error;
2078 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002079 mirror::Object* parent;
2080 {
2081 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupParent");
Sebastien Hertze49e1952014-10-13 11:27:13 +02002082 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_parent);
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002083 CHECK(f != nullptr);
2084 parent = f->GetObject(thread_group);
2085 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002086 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
2087 expandBufAddObjectId(pReply, parent_group_id);
2088 return JDWP::ERR_NONE;
2089}
2090
2091static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
2092 std::vector<JDWP::ObjectId>* child_thread_group_ids)
2093 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2094 CHECK(thread_group != nullptr);
2095
2096 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Sebastien Hertze49e1952014-10-13 11:27:13 +02002097 mirror::ArtField* groups_field = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_groups);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002098 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Sebastien Hertze49e1952014-10-13 11:27:13 +02002099 {
2100 // The "groups" field is declared as a java.util.List: check it really is
2101 // an instance of java.util.ArrayList.
2102 CHECK(groups_array_list != nullptr);
2103 mirror::Class* java_util_ArrayList_class =
2104 soa.Decode<mirror::Class*>(WellKnownClasses::java_util_ArrayList);
2105 CHECK(groups_array_list->InstanceOf(java_util_ArrayList_class));
2106 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002107
2108 // Get the array and size out of the ArrayList<ThreadGroup>...
Sebastien Hertze49e1952014-10-13 11:27:13 +02002109 mirror::ArtField* array_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_array);
2110 mirror::ArtField* size_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_size);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002111 mirror::ObjectArray<mirror::Object>* groups_array =
2112 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
2113 const int32_t size = size_field->GetInt(groups_array_list);
2114
2115 // Copy the first 'size' elements out of the array into the result.
Sebastien Hertz6995c602014-09-09 12:10:13 +02002116 ObjectRegistry* registry = Dbg::GetObjectRegistry();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002117 for (int32_t i = 0; i < size; ++i) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002118 child_thread_group_ids->push_back(registry->Add(groups_array->Get(i)));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002119 }
2120}
2121
2122JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2123 JDWP::ExpandBuf* pReply) {
2124 ScopedObjectAccessUnchecked soa(Thread::Current());
2125 JDWP::JdwpError error;
2126 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2127 if (error != JDWP::ERR_NONE) {
2128 return error;
2129 }
2130
2131 // Add child threads.
2132 {
2133 std::vector<JDWP::ObjectId> child_thread_ids;
2134 GetThreads(thread_group, &child_thread_ids);
2135 expandBufAdd4BE(pReply, child_thread_ids.size());
2136 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2137 expandBufAddObjectId(pReply, child_thread_id);
2138 }
2139 }
2140
2141 // Add child thread groups.
2142 {
2143 std::vector<JDWP::ObjectId> child_thread_groups_ids;
2144 GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids);
2145 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2146 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2147 expandBufAddObjectId(pReply, child_thread_group_id);
2148 }
2149 }
2150
2151 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002152}
2153
2154JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002155 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07002156 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002157 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002158 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002159}
2160
Jeff Hao920af3e2013-08-28 15:46:38 -07002161JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2162 switch (state) {
2163 case kBlocked:
2164 return JDWP::TS_MONITOR;
2165 case kNative:
2166 case kRunnable:
2167 case kSuspended:
2168 return JDWP::TS_RUNNING;
2169 case kSleeping:
2170 return JDWP::TS_SLEEPING;
2171 case kStarting:
2172 case kTerminated:
2173 return JDWP::TS_ZOMBIE;
2174 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002175 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002176 case kWaitingForDebuggerSend:
2177 case kWaitingForDebuggerSuspension:
2178 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002179 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002180 case kWaitingForGcToComplete:
Jeff Hao920af3e2013-08-28 15:46:38 -07002181 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002182 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002183 case kWaitingForSignalCatcherOutput:
2184 case kWaitingInMainDebuggerLoop:
2185 case kWaitingInMainSignalCatcherLoop:
2186 case kWaitingPerformingGc:
2187 case kWaiting:
2188 return JDWP::TS_WAIT;
2189 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2190 }
2191 LOG(FATAL) << "Unknown thread state: " << state;
2192 return JDWP::TS_ZOMBIE;
2193}
2194
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002195JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2196 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002197 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002198
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002199 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2200
Ian Rogers50b35e22012-10-04 10:09:15 -07002201 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002202 JDWP::JdwpError error;
2203 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002204 if (error != JDWP::ERR_NONE) {
2205 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2206 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002207 return JDWP::ERR_NONE;
2208 }
2209 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002210 }
2211
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002212 if (IsSuspendedForDebugger(soa, thread)) {
2213 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002214 }
2215
Jeff Hao920af3e2013-08-28 15:46:38 -07002216 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002217 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002218}
2219
Elliott Hughes221229c2013-01-08 18:17:50 -08002220JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002221 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07002222 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002223 JDWP::JdwpError error;
2224 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002225 if (error != JDWP::ERR_NONE) {
2226 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002227 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002228 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002229 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002230 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002231}
2232
Elliott Hughesf9501702013-01-11 11:22:27 -08002233JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2234 ScopedObjectAccess soa(Thread::Current());
2235 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002236 JDWP::JdwpError error;
2237 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002238 if (error != JDWP::ERR_NONE) {
2239 return error;
2240 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002241 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002242 return JDWP::ERR_NONE;
2243}
2244
Sebastien Hertz070f7322014-09-09 12:08:49 +02002245static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa,
2246 mirror::Object* desired_thread_group, mirror::Object* peer)
2247 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2248 // Do we want threads from all thread groups?
2249 if (desired_thread_group == nullptr) {
2250 return true;
2251 }
2252 mirror::ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
2253 DCHECK(thread_group_field != nullptr);
2254 mirror::Object* group = thread_group_field->GetObject(peer);
2255 return (group == desired_thread_group);
2256}
2257
Sebastien Hertza06430c2014-09-15 19:21:30 +02002258void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002259 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz070f7322014-09-09 12:08:49 +02002260 std::list<Thread*> all_threads_list;
2261 {
2262 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2263 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2264 }
2265 for (Thread* t : all_threads_list) {
2266 if (t == Dbg::GetDebugThread()) {
2267 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2268 // query all threads, so it's easier if we just don't tell them about this thread.
2269 continue;
2270 }
2271 if (t->IsStillStarting()) {
2272 // This thread is being started (and has been registered in the thread list). However, it is
2273 // not completely started yet so we must ignore it.
2274 continue;
2275 }
2276 mirror::Object* peer = t->GetPeer();
2277 if (peer == nullptr) {
2278 // peer might be NULL if the thread is still starting up. We can't tell the debugger about
2279 // this thread yet.
2280 // TODO: if we identified threads to the debugger by their Thread*
2281 // rather than their peer's mirror::Object*, we could fix this.
2282 // Doing so might help us report ZOMBIE threads too.
2283 continue;
2284 }
2285 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
2286 thread_ids->push_back(gRegistry->Add(peer));
2287 }
2288 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002289}
Elliott Hughesa2155262011-11-16 16:26:58 -08002290
Ian Rogersc0542af2014-09-03 16:16:56 -07002291static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002292 struct CountStackDepthVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002293 explicit CountStackDepthVisitor(Thread* thread_in)
2294 : StackVisitor(thread_in, nullptr), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002295
Elliott Hughes64f574f2013-02-20 14:57:12 -08002296 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2297 // annotalysis.
2298 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002299 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002300 ++depth;
2301 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002302 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002303 }
2304 size_t depth;
2305 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002306
Ian Rogers7a22fa62013-01-23 12:16:16 -08002307 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002308 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002309 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002310}
2311
Ian Rogersc0542af2014-09-03 16:16:56 -07002312JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002313 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002314 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002315 JDWP::JdwpError error;
2316 *result = 0;
2317 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002318 if (error != JDWP::ERR_NONE) {
2319 return error;
2320 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002321 if (!IsSuspendedForDebugger(soa, thread)) {
2322 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2323 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002324 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002325 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002326}
2327
Ian Rogers306057f2012-11-26 12:45:53 -08002328JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2329 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002330 class GetFrameVisitor : public StackVisitor {
2331 public:
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002332 GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in,
2333 JDWP::ExpandBuf* buf_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002334 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07002335 : StackVisitor(thread, nullptr), depth_(0),
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002336 start_frame_(start_frame_in), frame_count_(frame_count_in), buf_(buf_in) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002337 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002338 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002339
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002340 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2341 // annotalysis.
2342 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002343 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002344 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002345 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002346 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002347 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002348 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002349 if (depth_ >= start_frame_) {
2350 JDWP::FrameId frame_id(GetFrameId());
2351 JDWP::JdwpLocation location;
Sebastien Hertz6995c602014-09-09 12:10:13 +02002352 SetJdwpLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002353 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002354 expandBufAdd8BE(buf_, frame_id);
2355 expandBufAddLocation(buf_, location);
2356 }
2357 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002358 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002359 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002360
2361 private:
2362 size_t depth_;
2363 const size_t start_frame_;
2364 const size_t frame_count_;
2365 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002366 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002367
2368 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002369 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002370 JDWP::JdwpError error;
2371 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002372 if (error != JDWP::ERR_NONE) {
2373 return error;
2374 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002375 if (!IsSuspendedForDebugger(soa, thread)) {
2376 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2377 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002378 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002379 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002380 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002381}
2382
2383JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002384 return GetThreadId(Thread::Current());
2385}
2386
2387JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002388 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002389 return gRegistry->Add(thread->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002390}
2391
Elliott Hughes475fc232011-10-25 15:00:35 -07002392void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002393 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002394}
2395
2396void Dbg::ResumeVM() {
Sebastien Hertz253fa552014-10-14 17:27:15 +02002397 Runtime::Current()->GetThreadList()->ResumeAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002398}
2399
Elliott Hughes221229c2013-01-08 18:17:50 -08002400JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002401 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002402 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002403 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002404 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002405 JDWP::JdwpError error;
2406 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002407 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002408 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002409 return JDWP::ERR_THREAD_NOT_ALIVE;
2410 }
Ian Rogers4ad5cd32014-11-11 23:08:07 -08002411 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002412 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002413 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2414 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2415 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002416 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002417 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002418 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002419 return JDWP::ERR_INTERNAL;
2420 } else {
2421 return JDWP::ERR_THREAD_NOT_ALIVE;
2422 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002423}
2424
Elliott Hughes221229c2013-01-08 18:17:50 -08002425void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002426 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002427 JDWP::JdwpError error;
2428 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2429 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002430 Thread* thread;
2431 {
2432 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2433 thread = Thread::FromManagedThread(soa, peer);
2434 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002435 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002436 LOG(WARNING) << "No such thread for resume: " << peer;
2437 return;
2438 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002439 bool needs_resume;
2440 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002441 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002442 needs_resume = thread->GetSuspendCount() > 0;
2443 }
2444 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002445 Runtime::Current()->GetThreadList()->Resume(thread, true);
2446 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002447}
2448
2449void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002450 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002451}
2452
Ian Rogers0399dde2012-06-06 17:09:28 -07002453struct GetThisVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002454 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002455 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002456 : StackVisitor(thread, context), this_object(nullptr), frame_id(frame_id_in) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002457
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002458 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2459 // annotalysis.
2460 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002461 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002462 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002463 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002464 this_object = GetThisObject();
2465 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002466 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002467 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002468
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002469 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002470 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002471};
2472
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002473JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2474 JDWP::ObjectId* result) {
2475 ScopedObjectAccessUnchecked soa(Thread::Current());
2476 Thread* thread;
2477 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002478 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002479 JDWP::JdwpError error;
2480 thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002481 if (error != JDWP::ERR_NONE) {
2482 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002483 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002484 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002485 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2486 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002487 }
Ian Rogers700a4022014-05-19 16:49:03 -07002488 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002489 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002490 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002491 *result = gRegistry->Add(visitor.this_object);
2492 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002493}
2494
Sebastien Hertz8009f392014-09-01 17:07:11 +02002495// Walks the stack until we find the frame with the given FrameId.
2496class FindFrameVisitor FINAL : public StackVisitor {
2497 public:
2498 FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
2499 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2500 : StackVisitor(thread, context), frame_id_(frame_id), error_(JDWP::ERR_INVALID_FRAMEID) {}
Ian Rogersca190662012-06-26 15:45:57 -07002501
Sebastien Hertz8009f392014-09-01 17:07:11 +02002502 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2503 // annotalysis.
2504 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
2505 if (GetFrameId() != frame_id_) {
2506 return true; // Not our frame, carry on.
Ian Rogers0399dde2012-06-06 17:09:28 -07002507 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002508 mirror::ArtMethod* m = GetMethod();
2509 if (m->IsNative()) {
2510 // We can't read/write local value from/into native method.
2511 error_ = JDWP::ERR_OPAQUE_FRAME;
2512 } else {
2513 // We found our frame.
2514 error_ = JDWP::ERR_NONE;
2515 }
2516 return false;
2517 }
2518
2519 JDWP::JdwpError GetError() const {
2520 return error_;
2521 }
2522
2523 private:
2524 const JDWP::FrameId frame_id_;
2525 JDWP::JdwpError error_;
2526};
2527
2528JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2529 JDWP::ObjectId thread_id = request->ReadThreadId();
2530 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002531
2532 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002533 Thread* thread;
2534 {
2535 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2536 JDWP::JdwpError error;
2537 thread = DecodeThread(soa, thread_id, &error);
2538 if (error != JDWP::ERR_NONE) {
2539 return error;
2540 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002541 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002542 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002543 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002544 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002545 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002546 if (visitor.GetError() != JDWP::ERR_NONE) {
2547 return visitor.GetError();
2548 }
2549
2550 // Read the values from visitor's context.
2551 int32_t slot_count = request->ReadSigned32("slot count");
2552 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2553 for (int32_t i = 0; i < slot_count; ++i) {
2554 uint32_t slot = request->ReadUnsigned32("slot");
2555 JDWP::JdwpTag reqSigByte = request->ReadTag();
2556
2557 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
2558
2559 size_t width = Dbg::GetTagWidth(reqSigByte);
2560 uint8_t* ptr = expandBufAddSpace(pReply, width+1);
2561 JDWP::JdwpError error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width);
2562 if (error != JDWP::ERR_NONE) {
2563 return error;
2564 }
2565 }
2566 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002567}
2568
Sebastien Hertz8009f392014-09-01 17:07:11 +02002569JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2570 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
2571 mirror::ArtMethod* m = visitor.GetMethod();
2572 uint16_t reg = DemangleSlot(slot, m);
2573 // TODO: check that the tag is compatible with the actual type of the slot!
2574 // TODO: check slot is valid for this method or return INVALID_SLOT error.
2575 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
2576 switch (tag) {
2577 case JDWP::JT_BOOLEAN: {
2578 CHECK_EQ(width, 1U);
2579 uint32_t intVal;
2580 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2581 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2582 JDWP::Set1(buf + 1, intVal != 0);
2583 } else {
2584 VLOG(jdwp) << "failed to get boolean local " << reg;
2585 return kFailureErrorCode;
Ian Rogers0399dde2012-06-06 17:09:28 -07002586 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002587 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002588 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002589 case JDWP::JT_BYTE: {
2590 CHECK_EQ(width, 1U);
2591 uint32_t intVal;
2592 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2593 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2594 JDWP::Set1(buf + 1, intVal);
2595 } else {
2596 VLOG(jdwp) << "failed to get byte local " << reg;
2597 return kFailureErrorCode;
2598 }
2599 break;
2600 }
2601 case JDWP::JT_SHORT:
2602 case JDWP::JT_CHAR: {
2603 CHECK_EQ(width, 2U);
2604 uint32_t intVal;
2605 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2606 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2607 JDWP::Set2BE(buf + 1, intVal);
2608 } else {
2609 VLOG(jdwp) << "failed to get short/char local " << reg;
2610 return kFailureErrorCode;
2611 }
2612 break;
2613 }
2614 case JDWP::JT_INT: {
2615 CHECK_EQ(width, 4U);
2616 uint32_t intVal;
2617 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2618 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2619 JDWP::Set4BE(buf + 1, intVal);
2620 } else {
2621 VLOG(jdwp) << "failed to get int local " << reg;
2622 return kFailureErrorCode;
2623 }
2624 break;
2625 }
2626 case JDWP::JT_FLOAT: {
2627 CHECK_EQ(width, 4U);
2628 uint32_t intVal;
2629 if (visitor.GetVReg(m, reg, kFloatVReg, &intVal)) {
2630 VLOG(jdwp) << "get float local " << reg << " = " << intVal;
2631 JDWP::Set4BE(buf + 1, intVal);
2632 } else {
2633 VLOG(jdwp) << "failed to get float local " << reg;
2634 return kFailureErrorCode;
2635 }
2636 break;
2637 }
2638 case JDWP::JT_ARRAY:
2639 case JDWP::JT_CLASS_LOADER:
2640 case JDWP::JT_CLASS_OBJECT:
2641 case JDWP::JT_OBJECT:
2642 case JDWP::JT_STRING:
2643 case JDWP::JT_THREAD:
2644 case JDWP::JT_THREAD_GROUP: {
2645 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2646 uint32_t intVal;
2647 if (visitor.GetVReg(m, reg, kReferenceVReg, &intVal)) {
2648 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2649 VLOG(jdwp) << "get " << tag << " object local " << reg << " = " << o;
2650 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2651 LOG(FATAL) << "Register " << reg << " expected to hold " << tag << " object: " << o;
2652 }
2653 tag = TagFromObject(soa, o);
2654 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
2655 } else {
2656 VLOG(jdwp) << "failed to get " << tag << " object local " << reg;
2657 return kFailureErrorCode;
2658 }
2659 break;
2660 }
2661 case JDWP::JT_DOUBLE: {
2662 CHECK_EQ(width, 8U);
2663 uint64_t longVal;
2664 if (visitor.GetVRegPair(m, reg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2665 VLOG(jdwp) << "get double local " << reg << " = " << longVal;
2666 JDWP::Set8BE(buf + 1, longVal);
2667 } else {
2668 VLOG(jdwp) << "failed to get double local " << reg;
2669 return kFailureErrorCode;
2670 }
2671 break;
2672 }
2673 case JDWP::JT_LONG: {
2674 CHECK_EQ(width, 8U);
2675 uint64_t longVal;
2676 if (visitor.GetVRegPair(m, reg, kLongLoVReg, kLongHiVReg, &longVal)) {
2677 VLOG(jdwp) << "get long local " << reg << " = " << longVal;
2678 JDWP::Set8BE(buf + 1, longVal);
2679 } else {
2680 VLOG(jdwp) << "failed to get long local " << reg;
2681 return kFailureErrorCode;
2682 }
2683 break;
2684 }
2685 default:
2686 LOG(FATAL) << "Unknown tag " << tag;
2687 break;
2688 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002689
Sebastien Hertz8009f392014-09-01 17:07:11 +02002690 // Prepend tag, which may have been updated.
2691 JDWP::Set1(buf, tag);
2692 return JDWP::ERR_NONE;
2693}
2694
2695JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2696 JDWP::ObjectId thread_id = request->ReadThreadId();
2697 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002698
2699 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002700 Thread* thread;
2701 {
2702 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2703 JDWP::JdwpError error;
2704 thread = DecodeThread(soa, thread_id, &error);
2705 if (error != JDWP::ERR_NONE) {
2706 return error;
2707 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002708 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002709 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002710 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002711 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002712 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002713 if (visitor.GetError() != JDWP::ERR_NONE) {
2714 return visitor.GetError();
2715 }
2716
2717 // Writes the values into visitor's context.
2718 int32_t slot_count = request->ReadSigned32("slot count");
2719 for (int32_t i = 0; i < slot_count; ++i) {
2720 uint32_t slot = request->ReadUnsigned32("slot");
2721 JDWP::JdwpTag sigByte = request->ReadTag();
2722 size_t width = Dbg::GetTagWidth(sigByte);
2723 uint64_t value = request->ReadValue(width);
2724
2725 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
2726 JDWP::JdwpError error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width);
2727 if (error != JDWP::ERR_NONE) {
2728 return error;
2729 }
2730 }
2731 return JDWP::ERR_NONE;
2732}
2733
2734JDWP::JdwpError Dbg::SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
2735 uint64_t value, size_t width) {
2736 mirror::ArtMethod* m = visitor.GetMethod();
2737 uint16_t reg = DemangleSlot(slot, m);
2738 // TODO: check that the tag is compatible with the actual type of the slot!
2739 // TODO: check slot is valid for this method or return INVALID_SLOT error.
2740 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
2741 switch (tag) {
2742 case JDWP::JT_BOOLEAN:
2743 case JDWP::JT_BYTE:
2744 CHECK_EQ(width, 1U);
2745 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2746 VLOG(jdwp) << "failed to set boolean/byte local " << reg << " = "
2747 << static_cast<uint32_t>(value);
2748 return kFailureErrorCode;
2749 }
2750 break;
2751 case JDWP::JT_SHORT:
2752 case JDWP::JT_CHAR:
2753 CHECK_EQ(width, 2U);
2754 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2755 VLOG(jdwp) << "failed to set short/char local " << reg << " = "
2756 << static_cast<uint32_t>(value);
2757 return kFailureErrorCode;
2758 }
2759 break;
2760 case JDWP::JT_INT:
2761 CHECK_EQ(width, 4U);
2762 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2763 VLOG(jdwp) << "failed to set int local " << reg << " = "
2764 << static_cast<uint32_t>(value);
2765 return kFailureErrorCode;
2766 }
2767 break;
2768 case JDWP::JT_FLOAT:
2769 CHECK_EQ(width, 4U);
2770 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kFloatVReg)) {
2771 VLOG(jdwp) << "failed to set float local " << reg << " = "
2772 << static_cast<uint32_t>(value);
2773 return kFailureErrorCode;
2774 }
2775 break;
2776 case JDWP::JT_ARRAY:
2777 case JDWP::JT_CLASS_LOADER:
2778 case JDWP::JT_CLASS_OBJECT:
2779 case JDWP::JT_OBJECT:
2780 case JDWP::JT_STRING:
2781 case JDWP::JT_THREAD:
2782 case JDWP::JT_THREAD_GROUP: {
2783 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2784 JDWP::JdwpError error;
2785 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value),
2786 &error);
2787 if (error != JDWP::ERR_NONE) {
2788 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2789 return JDWP::ERR_INVALID_OBJECT;
2790 } else if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2791 kReferenceVReg)) {
2792 VLOG(jdwp) << "failed to set " << tag << " object local " << reg << " = " << o;
2793 return kFailureErrorCode;
2794 }
2795 break;
2796 }
2797 case JDWP::JT_DOUBLE: {
2798 CHECK_EQ(width, 8U);
2799 if (!visitor.SetVRegPair(m, reg, value, kDoubleLoVReg, kDoubleHiVReg)) {
2800 VLOG(jdwp) << "failed to set double local " << reg << " = " << value;
2801 return kFailureErrorCode;
2802 }
2803 break;
2804 }
2805 case JDWP::JT_LONG: {
2806 CHECK_EQ(width, 8U);
2807 if (!visitor.SetVRegPair(m, reg, value, kLongLoVReg, kLongHiVReg)) {
2808 VLOG(jdwp) << "failed to set double local " << reg << " = " << value;
2809 return kFailureErrorCode;
2810 }
2811 break;
2812 }
2813 default:
2814 LOG(FATAL) << "Unknown tag " << tag;
2815 break;
2816 }
2817 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002818}
2819
Sebastien Hertz6995c602014-09-09 12:10:13 +02002820static void SetEventLocation(JDWP::EventLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
2821 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2822 DCHECK(location != nullptr);
2823 if (m == nullptr) {
2824 memset(location, 0, sizeof(*location));
2825 } else {
2826 location->method = m;
2827 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002828 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002829}
2830
Ian Rogersef7d42f2014-01-06 12:55:46 -08002831void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002832 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002833 if (!IsDebuggerActive()) {
2834 return;
2835 }
2836 DCHECK(m != nullptr);
2837 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002838 JDWP::EventLocation location;
2839 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002840
Sebastien Hertz6995c602014-09-09 12:10:13 +02002841 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002842}
2843
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002844void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
2845 mirror::Object* this_object, mirror::ArtField* f) {
2846 if (!IsDebuggerActive()) {
2847 return;
2848 }
2849 DCHECK(m != nullptr);
2850 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002851 JDWP::EventLocation location;
2852 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002853
Sebastien Hertz6995c602014-09-09 12:10:13 +02002854 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002855}
2856
2857void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
2858 mirror::Object* this_object, mirror::ArtField* f,
2859 const JValue* field_value) {
2860 if (!IsDebuggerActive()) {
2861 return;
2862 }
2863 DCHECK(m != nullptr);
2864 DCHECK(f != nullptr);
2865 DCHECK(field_value != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002866 JDWP::EventLocation location;
2867 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002868
Sebastien Hertz6995c602014-09-09 12:10:13 +02002869 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002870}
2871
2872void Dbg::PostException(const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002873 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002874 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002875 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002876 return;
2877 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002878 JDWP::EventLocation exception_throw_location;
2879 SetEventLocation(&exception_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
2880 JDWP::EventLocation exception_catch_location;
2881 SetEventLocation(&exception_catch_location, catch_method, catch_dex_pc);
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002882
Sebastien Hertz6995c602014-09-09 12:10:13 +02002883 gJdwpState->PostException(&exception_throw_location, exception_object, &exception_catch_location,
2884 throw_location.GetThis());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002885}
2886
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002887void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002888 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002889 return;
2890 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002891 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002892}
2893
Ian Rogers62d6c772013-02-27 08:32:07 -08002894void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002895 mirror::ArtMethod* m, uint32_t dex_pc,
2896 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002897 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002898 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002899 }
2900
Elliott Hughes86964332012-02-15 19:37:42 -08002901 if (IsBreakpoint(m, dex_pc)) {
2902 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002903 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002904
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002905 // If the debugger is single-stepping one of our threads, check to
2906 // see if we're that thread and we've reached a step point.
2907 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2908 DCHECK(single_step_control != nullptr);
2909 if (single_step_control->is_active) {
2910 CHECK(!m->IsNative());
2911 if (single_step_control->step_depth == JDWP::SD_INTO) {
2912 // Step into method calls. We break when the line number
2913 // or method pointer changes. If we're in SS_MIN mode, we
2914 // always stop.
2915 if (single_step_control->method != m) {
2916 event_flags |= kSingleStep;
2917 VLOG(jdwp) << "SS new method";
2918 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2919 event_flags |= kSingleStep;
2920 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002921 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002922 event_flags |= kSingleStep;
2923 VLOG(jdwp) << "SS new line";
2924 }
2925 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2926 // Step over method calls. We break when the line number is
2927 // different and the frame depth is <= the original frame
2928 // depth. (We can't just compare on the method, because we
2929 // might get unrolled past it by an exception, and it's tricky
2930 // to identify recursion.)
2931
2932 int stack_depth = GetStackDepth(thread);
2933
2934 if (stack_depth < single_step_control->stack_depth) {
2935 // Popped up one or more frames, always trigger.
2936 event_flags |= kSingleStep;
2937 VLOG(jdwp) << "SS method pop";
2938 } else if (stack_depth == single_step_control->stack_depth) {
2939 // Same depth, see if we moved.
2940 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002941 event_flags |= kSingleStep;
2942 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002943 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002944 event_flags |= kSingleStep;
2945 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002946 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002947 }
2948 } else {
2949 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2950 // Return from the current method. We break when the frame
2951 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002952
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002953 // This differs from the "method exit" break in that it stops
2954 // with the PC at the next instruction in the returned-to
2955 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002956
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002957 int stack_depth = GetStackDepth(thread);
2958 if (stack_depth < single_step_control->stack_depth) {
2959 event_flags |= kSingleStep;
2960 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002961 }
2962 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002963 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002964
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002965 // If there's something interesting going on, see if it matches one
2966 // of the debugger filters.
2967 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002968 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002969 }
2970}
2971
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002972size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2973 switch (instrumentation_event) {
2974 case instrumentation::Instrumentation::kMethodEntered:
2975 return &method_enter_event_ref_count_;
2976 case instrumentation::Instrumentation::kMethodExited:
2977 return &method_exit_event_ref_count_;
2978 case instrumentation::Instrumentation::kDexPcMoved:
2979 return &dex_pc_change_event_ref_count_;
2980 case instrumentation::Instrumentation::kFieldRead:
2981 return &field_read_event_ref_count_;
2982 case instrumentation::Instrumentation::kFieldWritten:
2983 return &field_write_event_ref_count_;
2984 case instrumentation::Instrumentation::kExceptionCaught:
2985 return &exception_catch_event_ref_count_;
2986 default:
2987 return nullptr;
2988 }
2989}
2990
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002991// Process request while all mutator threads are suspended.
2992void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002993 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002994 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002995 case DeoptimizationRequest::kNothing:
2996 LOG(WARNING) << "Ignoring empty deoptimization request.";
2997 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002998 case DeoptimizationRequest::kRegisterForEvent:
2999 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003000 request.InstrumentationEvent());
3001 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
3002 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003003 break;
3004 case DeoptimizationRequest::kUnregisterForEvent:
3005 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003006 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003007 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003008 request.InstrumentationEvent());
3009 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003010 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003011 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003012 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003013 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003014 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003015 break;
3016 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003017 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003018 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003019 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003020 break;
3021 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003022 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
3023 instrumentation->Deoptimize(request.Method());
3024 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003025 break;
3026 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003027 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
3028 instrumentation->Undeoptimize(request.Method());
3029 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003030 break;
3031 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003032 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003033 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003034 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003035}
3036
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003037void Dbg::DelayFullUndeoptimization() {
Brian Carlstrom306db812014-09-05 13:01:41 -07003038 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003039 ++delayed_full_undeoptimization_count_;
3040 DCHECK_LE(delayed_full_undeoptimization_count_, full_deoptimization_event_count_);
3041}
3042
3043void Dbg::ProcessDelayedFullUndeoptimizations() {
3044 // TODO: avoid taking the lock twice (once here and once in ManageDeoptimization).
3045 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003046 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003047 while (delayed_full_undeoptimization_count_ > 0) {
3048 DeoptimizationRequest req;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003049 req.SetKind(DeoptimizationRequest::kFullUndeoptimization);
3050 req.SetMethod(nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003051 RequestDeoptimizationLocked(req);
3052 --delayed_full_undeoptimization_count_;
3053 }
3054 }
3055 ManageDeoptimization();
3056}
3057
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003058void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003059 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003060 // Nothing to do.
3061 return;
3062 }
Brian Carlstrom306db812014-09-05 13:01:41 -07003063 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003064 RequestDeoptimizationLocked(req);
3065}
3066
3067void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003068 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003069 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003070 DCHECK_NE(req.InstrumentationEvent(), 0u);
3071 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003072 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003073 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003074 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003075 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003076 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003077 deoptimization_requests_.push_back(req);
3078 }
3079 *counter = *counter + 1;
3080 break;
3081 }
3082 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003083 DCHECK_NE(req.InstrumentationEvent(), 0u);
3084 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003085 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003086 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003087 *counter = *counter - 1;
3088 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003089 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003090 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003091 deoptimization_requests_.push_back(req);
3092 }
3093 break;
3094 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003095 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003096 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003097 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003098 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3099 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003100 deoptimization_requests_.push_back(req);
3101 }
3102 ++full_deoptimization_event_count_;
3103 break;
3104 }
3105 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003106 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003107 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003108 --full_deoptimization_event_count_;
3109 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003110 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3111 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003112 deoptimization_requests_.push_back(req);
3113 }
3114 break;
3115 }
3116 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003117 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003118 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003119 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003120 deoptimization_requests_.push_back(req);
3121 break;
3122 }
3123 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003124 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003125 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003126 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003127 deoptimization_requests_.push_back(req);
3128 break;
3129 }
3130 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003131 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003132 break;
3133 }
3134 }
3135}
3136
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003137void Dbg::ManageDeoptimization() {
3138 Thread* const self = Thread::Current();
3139 {
3140 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003141 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003142 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003143 return;
3144 }
3145 }
3146 CHECK_EQ(self->GetState(), kRunnable);
3147 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3148 // We need to suspend mutator threads first.
3149 Runtime* const runtime = Runtime::Current();
3150 runtime->GetThreadList()->SuspendAll();
3151 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003152 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003153 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003154 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003155 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003156 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003157 ProcessDeoptimizationRequest(request);
3158 }
3159 deoptimization_requests_.clear();
3160 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003161 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3162 runtime->GetThreadList()->ResumeAll();
3163 self->TransitionFromSuspendedToRunnable();
3164}
3165
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003166static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3167 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003168 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003169 if (code_item == nullptr) {
3170 // TODO We should not be asked to watch location in a native or abstract method so the code item
3171 // should never be null. We could just check we never encounter this case.
3172 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003173 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003174 // Note: method verifier may cause thread suspension.
3175 self->AssertThreadSuspensionIsAllowable();
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003176 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003177 mirror::Class* declaring_class = m->GetDeclaringClass();
3178 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3179 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003180 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Ian Rogers7b078e82014-09-10 14:44:24 -07003181 verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003182 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method,
Ian Rogers46960fe2014-05-23 10:43:43 -07003183 m->GetAccessFlags(), false, true, false);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003184 // Note: we don't need to verify the method.
3185 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3186}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003187
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003188static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003189 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003190 for (Breakpoint& breakpoint : gBreakpoints) {
3191 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003192 return &breakpoint;
3193 }
3194 }
3195 return nullptr;
3196}
3197
3198// Sanity checks all existing breakpoints on the same method.
3199static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m, bool need_full_deoptimization)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003200 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003201 for (const Breakpoint& breakpoint : gBreakpoints) {
3202 CHECK_EQ(need_full_deoptimization, breakpoint.NeedFullDeoptimization());
3203 }
3204 if (need_full_deoptimization) {
3205 // We should have deoptimized everything but not "selectively" deoptimized this method.
3206 CHECK(Runtime::Current()->GetInstrumentation()->AreAllMethodsDeoptimized());
3207 CHECK(!Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3208 } else {
3209 // We should have "selectively" deoptimized this method.
3210 // Note: while we have not deoptimized everything for this method, we may have done it for
3211 // another event.
3212 CHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003213 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003214}
3215
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003216// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3217// request if we need to deoptimize.
3218void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3219 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003220 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003221 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003222
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003223 const Breakpoint* existing_breakpoint;
3224 {
3225 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3226 existing_breakpoint = FindFirstBreakpointForMethod(m);
3227 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003228 bool need_full_deoptimization;
3229 if (existing_breakpoint == nullptr) {
3230 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3231 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003232 // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension.
3233 // Therefore we must not hold any lock when we call it.
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003234 need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3235 if (need_full_deoptimization) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003236 req->SetKind(DeoptimizationRequest::kFullDeoptimization);
3237 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003238 } else {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003239 req->SetKind(DeoptimizationRequest::kSelectiveDeoptimization);
3240 req->SetMethod(m);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003241 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003242 } else {
3243 // There is at least one breakpoint for this method: we don't need to deoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003244 req->SetKind(DeoptimizationRequest::kNothing);
3245 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003246
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003247 need_full_deoptimization = existing_breakpoint->NeedFullDeoptimization();
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003248 if (kIsDebugBuild) {
3249 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3250 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
3251 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003252 }
3253
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003254 {
3255 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
3256 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, need_full_deoptimization));
3257 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3258 << gBreakpoints[gBreakpoints.size() - 1];
3259 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003260}
3261
3262// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3263// request if we need to undeoptimize.
3264void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003265 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003266 mirror::ArtMethod* m = FromMethodId(location->method_id);
3267 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003268 bool need_full_deoptimization = false;
3269 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003270 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003271 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003272 need_full_deoptimization = gBreakpoints[i].NeedFullDeoptimization();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003273 DCHECK_NE(need_full_deoptimization, Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3274 gBreakpoints.erase(gBreakpoints.begin() + i);
3275 break;
3276 }
3277 }
3278 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3279 if (existing_breakpoint == nullptr) {
3280 // There is no more breakpoint on this method: we need to undeoptimize.
3281 if (need_full_deoptimization) {
3282 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003283 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3284 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003285 } else {
3286 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003287 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3288 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003289 }
3290 } else {
3291 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003292 req->SetKind(DeoptimizationRequest::kNothing);
3293 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003294 if (kIsDebugBuild) {
3295 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
3296 }
Elliott Hughes86964332012-02-15 19:37:42 -08003297 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003298}
3299
Jeff Hao449db332013-04-12 18:30:52 -07003300// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3301// cause suspension if the thread is the current thread.
3302class ScopedThreadSuspension {
3303 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003304 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003305 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003306 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003307 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003308 error_(JDWP::ERR_NONE),
3309 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003310 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003311 ScopedObjectAccessUnchecked soa(self);
3312 {
3313 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003314 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003315 }
3316 if (error_ == JDWP::ERR_NONE) {
3317 if (thread_ == soa.Self()) {
3318 self_suspend_ = true;
3319 } else {
3320 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Sebastien Hertz6995c602014-09-09 12:10:13 +02003321 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003322 bool timed_out;
Ian Rogers4ad5cd32014-11-11 23:08:07 -08003323 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3324 Thread* suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true,
3325 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07003326 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003327 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003328 // Thread terminated from under us while suspending.
3329 error_ = JDWP::ERR_INVALID_THREAD;
3330 } else {
3331 CHECK_EQ(suspended_thread, thread_);
3332 other_suspend_ = true;
3333 }
3334 }
3335 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003336 }
Elliott Hughes86964332012-02-15 19:37:42 -08003337
Jeff Hao449db332013-04-12 18:30:52 -07003338 Thread* GetThread() const {
3339 return thread_;
3340 }
3341
3342 JDWP::JdwpError GetError() const {
3343 return error_;
3344 }
3345
3346 ~ScopedThreadSuspension() {
3347 if (other_suspend_) {
3348 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3349 }
3350 }
3351
3352 private:
3353 Thread* thread_;
3354 JDWP::JdwpError error_;
3355 bool self_suspend_;
3356 bool other_suspend_;
3357};
3358
3359JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3360 JDWP::JdwpStepDepth step_depth) {
3361 Thread* self = Thread::Current();
3362 ScopedThreadSuspension sts(self, thread_id);
3363 if (sts.GetError() != JDWP::ERR_NONE) {
3364 return sts.GetError();
3365 }
3366
Elliott Hughes2435a572012-02-17 16:07:41 -08003367 //
3368 // Work out what Method* we're in, the current line number, and how deep the stack currently
3369 // is for step-out.
3370 //
3371
Ian Rogers0399dde2012-06-06 17:09:28 -07003372 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003373 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
3374 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003375 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07003376 : StackVisitor(thread, nullptr), single_step_control_(single_step_control),
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003377 line_number_(line_number) {
3378 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
Ian Rogersc0542af2014-09-03 16:16:56 -07003379 single_step_control_->method = nullptr;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003380 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08003381 }
Ian Rogersca190662012-06-26 15:45:57 -07003382
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003383 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3384 // annotalysis.
3385 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003386 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003387 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003388 ++single_step_control_->stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -07003389 if (single_step_control_->method == nullptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003390 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003391 single_step_control_->method = m;
3392 *line_number_ = -1;
Ian Rogersc0542af2014-09-03 16:16:56 -07003393 if (dex_cache != nullptr) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003394 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003395 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003396 }
Elliott Hughes86964332012-02-15 19:37:42 -08003397 }
3398 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003399 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003400 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003401
3402 SingleStepControl* const single_step_control_;
3403 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08003404 };
Jeff Hao449db332013-04-12 18:30:52 -07003405
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003406 Thread* const thread = sts.GetThread();
3407 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
3408 DCHECK(single_step_control != nullptr);
3409 int32_t line_number = -1;
3410 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07003411 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003412
Elliott Hughes2435a572012-02-17 16:07:41 -08003413 //
3414 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
3415 //
3416
3417 struct DebugCallbackContext {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003418 explicit DebugCallbackContext(SingleStepControl* single_step_control_cb, int32_t line_number_cb,
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003419 const DexFile::CodeItem* code_item)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003420 : single_step_control_(single_step_control_cb), line_number_(line_number_cb),
3421 code_item_(code_item), last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003422 }
3423
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003424 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number_cb) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003425 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003426 if (static_cast<int32_t>(line_number_cb) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003427 if (!context->last_pc_valid) {
3428 // Everything from this address until the next line change is ours.
3429 context->last_pc = address;
3430 context->last_pc_valid = true;
3431 }
3432 // Otherwise, if we're already in a valid range for this line,
3433 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003434 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003435 // Add everything from the last entry up until here to the set
3436 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003437 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003438 }
3439 context->last_pc_valid = false;
3440 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003441 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003442 }
3443
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003444 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003445 // If the line number was the last in the position table...
3446 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003447 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003448 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003449 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003450 }
3451 }
3452 }
3453
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003454 SingleStepControl* const single_step_control_;
3455 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003456 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003457 bool last_pc_valid;
3458 uint32_t last_pc;
3459 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003460 single_step_control->dex_pcs.clear();
Ian Rogersef7d42f2014-01-06 12:55:46 -08003461 mirror::ArtMethod* m = single_step_control->method;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003462 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003463 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003464 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003465 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07003466 DebugCallbackContext::Callback, nullptr, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003467 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003468
3469 //
3470 // Everything else...
3471 //
3472
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003473 single_step_control->step_size = step_size;
3474 single_step_control->step_depth = step_depth;
3475 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08003476
Elliott Hughes2435a572012-02-17 16:07:41 -08003477 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003478 VLOG(jdwp) << "Single-step thread: " << *thread;
3479 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
3480 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
3481 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
3482 VLOG(jdwp) << "Single-step current line: " << line_number;
3483 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08003484 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003485 for (uint32_t dex_pc : single_step_control->dex_pcs) {
3486 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003487 }
3488 }
3489
3490 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003491}
3492
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003493void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3494 ScopedObjectAccessUnchecked soa(Thread::Current());
3495 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003496 JDWP::JdwpError error;
3497 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003498 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003499 SingleStepControl* single_step_control = thread->GetSingleStepControl();
3500 DCHECK(single_step_control != nullptr);
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003501 single_step_control->Clear();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003502 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003503}
3504
Elliott Hughes45651fd2012-02-21 15:48:20 -08003505static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3506 switch (tag) {
3507 default:
3508 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
Ian Rogersfc787ec2014-10-09 21:56:44 -07003509 UNREACHABLE();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003510
3511 // Primitives.
3512 case JDWP::JT_BYTE: return 'B';
3513 case JDWP::JT_CHAR: return 'C';
3514 case JDWP::JT_FLOAT: return 'F';
3515 case JDWP::JT_DOUBLE: return 'D';
3516 case JDWP::JT_INT: return 'I';
3517 case JDWP::JT_LONG: return 'J';
3518 case JDWP::JT_SHORT: return 'S';
3519 case JDWP::JT_VOID: return 'V';
3520 case JDWP::JT_BOOLEAN: return 'Z';
3521
3522 // Reference types.
3523 case JDWP::JT_ARRAY:
3524 case JDWP::JT_OBJECT:
3525 case JDWP::JT_STRING:
3526 case JDWP::JT_THREAD:
3527 case JDWP::JT_THREAD_GROUP:
3528 case JDWP::JT_CLASS_LOADER:
3529 case JDWP::JT_CLASS_OBJECT:
3530 return 'L';
3531 }
3532}
3533
Elliott Hughes88d63092013-01-09 09:55:54 -08003534JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3535 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003536 uint32_t arg_count, uint64_t* arg_values,
3537 JDWP::JdwpTag* arg_types, uint32_t options,
3538 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3539 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003540 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3541
Ian Rogersc0542af2014-09-03 16:16:56 -07003542 Thread* targetThread = nullptr;
3543 DebugInvokeReq* req = nullptr;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003544 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003545 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003546 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003547 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003548 JDWP::JdwpError error;
3549 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003550 if (error != JDWP::ERR_NONE) {
3551 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3552 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003553 }
3554 req = targetThread->GetInvokeReq();
3555 if (!req->ready) {
3556 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3557 return JDWP::ERR_INVALID_THREAD;
3558 }
3559
3560 /*
3561 * We currently have a bug where we don't successfully resume the
3562 * target thread if the suspend count is too deep. We're expected to
3563 * require one "resume" for each "suspend", but when asked to execute
3564 * a method we have to resume fully and then re-suspend it back to the
3565 * same level. (The easiest way to cause this is to type "suspend"
3566 * multiple times in jdb.)
3567 *
3568 * It's unclear what this means when the event specifies "resume all"
3569 * and some threads are suspended more deeply than others. This is
3570 * a rare problem, so for now we just prevent it from hanging forever
3571 * by rejecting the method invocation request. Without this, we will
3572 * be stuck waiting on a suspended thread.
3573 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003574 int suspend_count;
3575 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003576 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003577 suspend_count = targetThread->GetSuspendCount();
3578 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003579 if (suspend_count > 1) {
3580 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003581 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003582 }
3583
Ian Rogersc0542af2014-09-03 16:16:56 -07003584 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3585 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003586 return JDWP::ERR_INVALID_OBJECT;
3587 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003588
Ian Rogersc0542af2014-09-03 16:16:56 -07003589 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id, &error);
3590 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003591 return JDWP::ERR_INVALID_OBJECT;
3592 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003593 // TODO: check that 'thread' is actually a java.lang.Thread!
3594
Ian Rogersc0542af2014-09-03 16:16:56 -07003595 mirror::Class* c = DecodeClass(class_id, &error);
3596 if (c == nullptr) {
3597 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003598 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003599
Brian Carlstromea46f952013-07-30 01:26:50 -07003600 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003601 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003602 return JDWP::ERR_INVALID_METHODID;
3603 }
3604 if (m->IsStatic()) {
3605 if (m->GetDeclaringClass() != c) {
3606 return JDWP::ERR_INVALID_METHODID;
3607 }
3608 } else {
3609 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3610 return JDWP::ERR_INVALID_METHODID;
3611 }
3612 }
3613
3614 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003615 uint32_t shorty_len = 0;
3616 const char* shorty = m->GetShorty(&shorty_len);
3617 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003618 return JDWP::ERR_ILLEGAL_ARGUMENT;
3619 }
Elliott Hughes09201632013-04-15 15:50:07 -07003620
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003621 {
3622 StackHandleScope<3> hs(soa.Self());
3623 MethodHelper mh(hs.NewHandle(m));
3624 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3625 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3626 const DexFile::TypeList* types = m->GetParameterTypeList();
3627 for (size_t i = 0; i < arg_count; ++i) {
3628 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003629 return JDWP::ERR_ILLEGAL_ARGUMENT;
3630 }
3631
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003632 if (shorty[i + 1] == 'L') {
3633 // Did we really get an argument of an appropriate reference type?
3634 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003635 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
3636 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003637 return JDWP::ERR_INVALID_OBJECT;
3638 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003639 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003640 return JDWP::ERR_ILLEGAL_ARGUMENT;
3641 }
3642
3643 // Turn the on-the-wire ObjectId into a jobject.
3644 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3645 v.l = gRegistry->GetJObject(arg_values[i]);
3646 }
Elliott Hughes09201632013-04-15 15:50:07 -07003647 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003648 // Update in case it moved.
3649 m = mh.GetMethod();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003650 }
3651
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003652 req->receiver = receiver;
3653 req->thread = thread;
3654 req->klass = c;
3655 req->method = m;
3656 req->arg_count = arg_count;
3657 req->arg_values = arg_values;
3658 req->options = options;
3659 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003660 }
3661
3662 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3663 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3664 // call, and it's unwise to hold it during WaitForSuspend.
3665
3666 {
3667 /*
3668 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003669 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003670 * run out of memory. It's also a good idea to change it before locking
3671 * the invokeReq mutex, although that should never be held for long.
3672 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003673 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003674
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003675 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003676 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003677 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003678
3679 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003680 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003681 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003682 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003683 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003684 thread_list->Resume(targetThread, true);
3685 }
3686
3687 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003688 while (req->invoke_needed) {
3689 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003690 }
3691 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003692 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003693
3694 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003695 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003696 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003697 }
3698
3699 /*
3700 * Suspend the threads. We waited for the target thread to suspend
3701 * itself, so all we need to do is suspend the others.
3702 *
3703 * The suspendAllThreads() call will double-suspend the event thread,
3704 * so we want to resume the target thread once to keep the books straight.
3705 */
3706 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003707 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003708 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003709 thread_list->SuspendAllForDebugger();
3710 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003711 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003712 thread_list->Resume(targetThread, true);
3713 }
3714
3715 // Copy the result.
3716 *pResultTag = req->result_tag;
3717 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003718 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003719 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003720 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003721 }
3722 *pExceptionId = req->exception;
3723 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003724}
3725
3726void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003727 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003728
Elliott Hughes81ff3182012-03-23 20:35:56 -07003729 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003730 // to preserve that across the method invocation.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003731 StackHandleScope<4> hs(soa.Self());
3732 auto old_throw_this_object = hs.NewHandle<mirror::Object>(nullptr);
3733 auto old_throw_method = hs.NewHandle<mirror::ArtMethod>(nullptr);
3734 auto old_exception = hs.NewHandle<mirror::Throwable>(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003735 uint32_t old_throw_dex_pc;
Sebastien Hertz9f102032014-05-23 08:59:42 +02003736 bool old_exception_report_flag;
Ian Rogers62d6c772013-02-27 08:32:07 -08003737 {
3738 ThrowLocation old_throw_location;
3739 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003740 old_throw_this_object.Assign(old_throw_location.GetThis());
3741 old_throw_method.Assign(old_throw_location.GetMethod());
3742 old_exception.Assign(old_exception_obj);
Ian Rogers62d6c772013-02-27 08:32:07 -08003743 old_throw_dex_pc = old_throw_location.GetDexPc();
Sebastien Hertz9f102032014-05-23 08:59:42 +02003744 old_exception_report_flag = soa.Self()->IsExceptionReportedToInstrumentation();
Ian Rogers62d6c772013-02-27 08:32:07 -08003745 soa.Self()->ClearException();
3746 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003747
3748 // Translate the method through the vtable, unless the debugger wants to suppress it.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003749 MutableHandle<mirror::ArtMethod> m(hs.NewHandle(pReq->method));
Ian Rogersc0542af2014-09-03 16:16:56 -07003750 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003751 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.Get());
3752 if (actual_method != m.Get()) {
3753 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get()) << " to " << PrettyMethod(actual_method);
3754 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003755 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003756 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003757 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003758 << " receiver=" << pReq->receiver
3759 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003760 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003761
3762 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3763
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003764 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.Get()),
Ian Rogers53b8b092014-03-13 23:45:53 -07003765 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003766
Ian Rogersc0542af2014-09-03 16:16:56 -07003767 mirror::Throwable* exception = soa.Self()->GetException(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003768 soa.Self()->ClearException();
3769 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003770 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003771 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003772 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3773 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003774 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003775 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3776 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003777 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003778 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003779 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003780 pReq->result_tag = new_tag;
3781 }
3782
3783 /*
3784 * Register the object. We don't actually need an ObjectId yet,
3785 * but we do need to be sure that the GC won't move or discard the
3786 * object when we switch out of RUNNING. The ObjectId conversion
3787 * will add the object to the "do not touch" list.
3788 *
3789 * We can't use the "tracked allocation" mechanism here because
3790 * the object is going to be handed off to a different thread.
3791 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003792 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003793 }
3794
Ian Rogersc0542af2014-09-03 16:16:56 -07003795 if (old_exception.Get() != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003796 ThrowLocation gc_safe_throw_location(old_throw_this_object.Get(), old_throw_method.Get(),
Ian Rogers62d6c772013-02-27 08:32:07 -08003797 old_throw_dex_pc);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003798 soa.Self()->SetException(gc_safe_throw_location, old_exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +02003799 soa.Self()->SetExceptionReportedToInstrumentation(old_exception_report_flag);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003800 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003801}
3802
Elliott Hughesd07986f2011-12-06 18:27:45 -08003803/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003804 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003805 * need to process each, accumulate the replies, and ship the whole thing
3806 * back.
3807 *
3808 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3809 * and includes the chunk type/length, followed by the data.
3810 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003811 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003812 * chunk. If this becomes inconvenient we will need to adapt.
3813 */
Ian Rogersc0542af2014-09-03 16:16:56 -07003814bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003815 Thread* self = Thread::Current();
3816 JNIEnv* env = self->GetJniEnv();
3817
Ian Rogersc0542af2014-09-03 16:16:56 -07003818 uint32_t type = request->ReadUnsigned32("type");
3819 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003820
3821 // Create a byte[] corresponding to 'request'.
Ian Rogersc0542af2014-09-03 16:16:56 -07003822 size_t request_length = request->size();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003823 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Ian Rogersc0542af2014-09-03 16:16:56 -07003824 if (dataArray.get() == nullptr) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003825 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003826 env->ExceptionClear();
3827 return false;
3828 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003829 env->SetByteArrayRegion(dataArray.get(), 0, request_length,
3830 reinterpret_cast<const jbyte*>(request->data()));
3831 request->Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003832
3833 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003834 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003835 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003836 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003837 return false;
3838 }
3839
3840 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003841 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3842 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003843 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003844 if (env->ExceptionCheck()) {
3845 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3846 env->ExceptionDescribe();
3847 env->ExceptionClear();
3848 return false;
3849 }
3850
Ian Rogersc0542af2014-09-03 16:16:56 -07003851 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003852 return false;
3853 }
3854
3855 /*
3856 * Pull the pieces out of the chunk. We copy the results into a
3857 * newly-allocated buffer that the caller can free. We don't want to
3858 * continue using the Chunk object because nothing has a reference to it.
3859 *
3860 * We could avoid this by returning type/data/offset/length and having
3861 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003862 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003863 * if we have responses for multiple chunks.
3864 *
3865 * So we're pretty much stuck with copying data around multiple times.
3866 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003867 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 -08003868 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003869 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003870 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003871
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003872 VLOG(jdwp) << StringPrintf("DDM reply: type=0x%08x data=%p offset=%d length=%d", type, replyData.get(), offset, length);
Ian Rogersc0542af2014-09-03 16:16:56 -07003873 if (length == 0 || replyData.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003874 return false;
3875 }
3876
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003877 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003878 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
Ian Rogersc0542af2014-09-03 16:16:56 -07003879 if (reply == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003880 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3881 return false;
3882 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003883 JDWP::Set4BE(reply + 0, type);
3884 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003885 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003886
3887 *pReplyBuf = reply;
3888 *pReplyLen = length + kChunkHdrLen;
3889
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003890 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003891 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003892}
3893
Elliott Hughesa2155262011-11-16 16:26:58 -08003894void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003895 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003896
3897 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003898 if (self->GetState() != kRunnable) {
3899 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3900 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003901 }
3902
3903 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003904 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003905 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3906 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3907 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003908 if (env->ExceptionCheck()) {
3909 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3910 env->ExceptionDescribe();
3911 env->ExceptionClear();
3912 }
3913}
3914
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003915void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003916 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003917}
3918
3919void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003920 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003921 gDdmThreadNotification = false;
3922}
3923
3924/*
Elliott Hughes82188472011-11-07 18:11:48 -08003925 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003926 *
3927 * Because we broadcast the full set of threads when the notifications are
3928 * first enabled, it's possible for "thread" to be actively executing.
3929 */
Elliott Hughes82188472011-11-07 18:11:48 -08003930void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003931 if (!gDdmThreadNotification) {
3932 return;
3933 }
3934
Elliott Hughes82188472011-11-07 18:11:48 -08003935 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003936 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003937 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003938 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003939 } else {
3940 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003941 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003942 StackHandleScope<1> hs(soa.Self());
3943 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
Ian Rogersc0542af2014-09-03 16:16:56 -07003944 size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0;
3945 const jchar* chars = (name.Get() != nullptr) ? name->GetCharArray()->GetData() : nullptr;
Elliott Hughes82188472011-11-07 18:11:48 -08003946
Elliott Hughes21f32d72011-11-09 17:44:13 -08003947 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003948 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003949 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003950 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3951 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003952 }
3953}
3954
Elliott Hughes47fce012011-10-25 18:37:19 -07003955void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003956 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003957 gDdmThreadNotification = enable;
3958 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003959 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3960 // see a suspension in progress and block until that ends. They then post their own start
3961 // notification.
3962 SuspendVM();
3963 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003964 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003965 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003966 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003967 threads = Runtime::Current()->GetThreadList()->GetList();
3968 }
3969 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003970 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003971 for (Thread* thread : threads) {
3972 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003973 }
3974 }
3975 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003976 }
3977}
3978
Elliott Hughesa2155262011-11-16 16:26:58 -08003979void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003980 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02003981 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003982 }
Elliott Hughes82188472011-11-07 18:11:48 -08003983 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003984}
3985
3986void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003987 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003988}
3989
3990void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003991 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003992}
3993
Elliott Hughes82188472011-11-07 18:11:48 -08003994void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Ian Rogersc0542af2014-09-03 16:16:56 -07003995 CHECK(buf != nullptr);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003996 iovec vec[1];
3997 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3998 vec[0].iov_len = byte_count;
3999 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004000}
4001
Elliott Hughes21f32d72011-11-09 17:44:13 -08004002void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
4003 DdmSendChunk(type, bytes.size(), &bytes[0]);
4004}
4005
Brian Carlstromf5293522013-07-19 00:24:00 -07004006void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004007 if (gJdwpState == nullptr) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004008 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07004009 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08004010 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004011 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004012}
4013
Elliott Hughes767a1472011-10-26 18:49:02 -07004014int Dbg::DdmHandleHpifChunk(HpifWhen when) {
4015 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07004016 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07004017 return true;
4018 }
4019
4020 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4021 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4022 return false;
4023 }
4024
4025 gDdmHpifWhen = when;
4026 return true;
4027}
4028
4029bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4030 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4031 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4032 return false;
4033 }
4034
4035 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4036 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4037 return false;
4038 }
4039
4040 if (native) {
4041 gDdmNhsgWhen = when;
4042 gDdmNhsgWhat = what;
4043 } else {
4044 gDdmHpsgWhen = when;
4045 gDdmHpsgWhat = what;
4046 }
4047 return true;
4048}
4049
Elliott Hughes7162ad92011-10-27 14:08:42 -07004050void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4051 // If there's a one-shot 'when', reset it.
4052 if (reason == gDdmHpifWhen) {
4053 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4054 gDdmHpifWhen = HPIF_WHEN_NEVER;
4055 }
4056 }
4057
4058 /*
4059 * Chunk HPIF (client --> server)
4060 *
4061 * Heap Info. General information about the heap,
4062 * suitable for a summary display.
4063 *
4064 * [u4]: number of heaps
4065 *
4066 * For each heap:
4067 * [u4]: heap ID
4068 * [u8]: timestamp in ms since Unix epoch
4069 * [u1]: capture reason (same as 'when' value from server)
4070 * [u4]: max heap size in bytes (-Xmx)
4071 * [u4]: current heap size in bytes
4072 * [u4]: current number of bytes allocated
4073 * [u4]: current number of objects allocated
4074 */
4075 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004076 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004077 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004078 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004079 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004080 JDWP::Append8BE(bytes, MilliTime());
4081 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004082 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4083 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004084 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4085 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004086 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
4087 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07004088}
4089
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004090enum HpsgSolidity {
4091 SOLIDITY_FREE = 0,
4092 SOLIDITY_HARD = 1,
4093 SOLIDITY_SOFT = 2,
4094 SOLIDITY_WEAK = 3,
4095 SOLIDITY_PHANTOM = 4,
4096 SOLIDITY_FINALIZABLE = 5,
4097 SOLIDITY_SWEEP = 6,
4098};
4099
4100enum HpsgKind {
4101 KIND_OBJECT = 0,
4102 KIND_CLASS_OBJECT = 1,
4103 KIND_ARRAY_1 = 2,
4104 KIND_ARRAY_2 = 3,
4105 KIND_ARRAY_4 = 4,
4106 KIND_ARRAY_8 = 5,
4107 KIND_UNKNOWN = 6,
4108 KIND_NATIVE = 7,
4109};
4110
4111#define HPSG_PARTIAL (1<<7)
4112#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4113
Ian Rogers30fab402012-01-23 15:43:46 -08004114class HeapChunkContext {
4115 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004116 // Maximum chunk size. Obtain this from the formula:
4117 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4118 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004119 : buf_(16384 - 16),
4120 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004121 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004122 Reset();
4123 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004124 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004125 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004126 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004127 }
4128 }
4129
4130 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004131 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004132 Flush();
4133 }
4134 }
4135
Mathieu Chartier36dab362014-07-30 14:59:56 -07004136 void SetChunkOverhead(size_t chunk_overhead) {
4137 chunk_overhead_ = chunk_overhead;
4138 }
4139
4140 void ResetStartOfNextChunk() {
4141 startOfNextMemoryChunk_ = nullptr;
4142 }
4143
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004144 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004145 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004146 return;
4147 }
4148
4149 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004150 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4151 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004152
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004153 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4154 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004155 // [u4]: length of piece, in allocation units
4156 // 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 -08004157 pieceLenField_ = p_;
4158 JDWP::Write4BE(&p_, 0x55555555);
4159 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004160 }
4161
Ian Rogersb726dcb2012-09-05 08:57:23 -07004162 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004163 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004164 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4165 CHECK(needHeader_);
4166 return;
4167 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004168 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004169 CHECK_LE(&buf_[0], pieceLenField_);
4170 CHECK_LE(pieceLenField_, p_);
4171 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004172
Ian Rogers30fab402012-01-23 15:43:46 -08004173 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004174 Reset();
4175 }
4176
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004177 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004178 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4179 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004180 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004181 }
4182
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004183 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004184 enum { ALLOCATION_UNIT_SIZE = 8 };
4185
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004186 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004187 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004188 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004189 totalAllocationUnits_ = 0;
4190 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004191 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004192 }
4193
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004194 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004195 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4196 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004197 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4198 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004199 if (used_bytes == 0) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004200 if (start == nullptr) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004201 // Reset for start of new heap.
Ian Rogersc0542af2014-09-03 16:16:56 -07004202 startOfNextMemoryChunk_ = nullptr;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004203 Flush();
4204 }
4205 // Only process in use memory so that free region information
4206 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08004207 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08004208 }
4209
Ian Rogers15bf2d32012-08-28 17:33:04 -07004210 /* If we're looking at the native heap, we'll just return
4211 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
4212 */
4213 bool native = type_ == CHUNK_TYPE("NHSG");
4214
Mathieu Chartier36dab362014-07-30 14:59:56 -07004215 // TODO: I'm not sure using start of next chunk works well with multiple spaces. We shouldn't
4216 // count gaps inbetween spaces as free memory.
Ian Rogersc0542af2014-09-03 16:16:56 -07004217 if (startOfNextMemoryChunk_ != nullptr) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004218 // Transmit any pending free memory. Native free memory of
4219 // over kMaxFreeLen could be because of the use of mmaps, so
4220 // don't report. If not free memory then start a new segment.
4221 bool flush = true;
4222 if (start > startOfNextMemoryChunk_) {
4223 const size_t kMaxFreeLen = 2 * kPageSize;
4224 void* freeStart = startOfNextMemoryChunk_;
4225 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07004226 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07004227 if (!native || freeLen < kMaxFreeLen) {
4228 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
4229 flush = false;
4230 }
4231 }
4232 if (flush) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004233 startOfNextMemoryChunk_ = nullptr;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004234 Flush();
4235 }
4236 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08004237 mirror::Object* obj = reinterpret_cast<mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08004238
4239 // Determine the type of this chunk.
4240 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4241 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004242 uint8_t state = ExamineObject(obj, native);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004243 AppendChunk(state, start, used_bytes + chunk_overhead_);
4244 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004245 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004246
Ian Rogers15bf2d32012-08-28 17:33:04 -07004247 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004248 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004249 // Make sure there's enough room left in the buffer.
4250 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4251 // 17 bytes for any header.
4252 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
4253 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4254 if (bytesLeft < needed) {
4255 Flush();
4256 }
4257
4258 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4259 if (bytesLeft < needed) {
4260 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4261 << needed << " bytes)";
4262 return;
4263 }
4264 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004265 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004266 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4267 totalAllocationUnits_ += length;
4268 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004269 *p_++ = state | HPSG_PARTIAL;
4270 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004271 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004272 }
Ian Rogers30fab402012-01-23 15:43:46 -08004273 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004274 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004275 }
4276
Ian Rogersef7d42f2014-01-06 12:55:46 -08004277 uint8_t ExamineObject(mirror::Object* o, bool is_native_heap)
4278 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004279 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004280 return HPSG_STATE(SOLIDITY_FREE, 0);
4281 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004282
Elliott Hughesa2155262011-11-16 16:26:58 -08004283 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004284
Elliott Hughesa2155262011-11-16 16:26:58 -08004285 // If we're looking at the native heap, we'll just return
4286 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004287 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004288 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4289 }
4290
Ian Rogers5bfa60f2012-09-02 21:17:56 -07004291 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004292 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004293 }
4294
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004295 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004296 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004297 // The object was probably just created but hasn't been initialized yet.
4298 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4299 }
4300
Mathieu Chartier590fee92013-09-13 13:46:47 -07004301 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004302 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004303 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4304 }
4305
4306 if (c->IsClassClass()) {
4307 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4308 }
4309
4310 if (c->IsArrayClass()) {
4311 if (o->IsObjectArray()) {
4312 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4313 }
4314 switch (c->GetComponentSize()) {
4315 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4316 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4317 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4318 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4319 }
4320 }
4321
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004322 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4323 }
4324
Ian Rogers30fab402012-01-23 15:43:46 -08004325 std::vector<uint8_t> buf_;
4326 uint8_t* p_;
4327 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004328 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004329 size_t totalAllocationUnits_;
4330 uint32_t type_;
Ian Rogers30fab402012-01-23 15:43:46 -08004331 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004332 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004333
Elliott Hughesa2155262011-11-16 16:26:58 -08004334 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4335};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004336
Mathieu Chartier36dab362014-07-30 14:59:56 -07004337static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
4338 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
4339 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
4340 HeapChunkContext::HeapChunkCallback(
4341 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4342}
4343
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004344void Dbg::DdmSendHeapSegments(bool native) {
4345 Dbg::HpsgWhen when;
4346 Dbg::HpsgWhat what;
4347 if (!native) {
4348 when = gDdmHpsgWhen;
4349 what = gDdmHpsgWhat;
4350 } else {
4351 when = gDdmNhsgWhen;
4352 what = gDdmNhsgWhat;
4353 }
4354 if (when == HPSG_WHEN_NEVER) {
4355 return;
4356 }
4357
4358 // Figure out what kind of chunks we'll be sending.
4359 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
4360
4361 // First, send a heap start chunk.
4362 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004363 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004364 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
4365
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004366 Thread* self = Thread::Current();
4367
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004368 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004369
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004370 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08004371 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
4372 if (native) {
Ian Rogers872dd822014-10-30 11:19:14 -07004373#if defined(HAVE_ANDROID_OS) && defined(USE_DLMALLOC)
Ian Rogers1d54e732013-05-02 21:10:01 -07004374 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004375#else
4376 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4377#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004378 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004379 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004380 for (const auto& space : heap->GetContinuousSpaces()) {
4381 if (space->IsDlMallocSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004382 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004383 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4384 // allocation then the first sizeof(size_t) may belong to it.
4385 context.SetChunkOverhead(sizeof(size_t));
4386 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
4387 } else if (space->IsRosAllocSpace()) {
4388 context.SetChunkOverhead(0);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004389 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4390 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
4391 self->TransitionFromRunnableToSuspended(kSuspended);
4392 ThreadList* tl = Runtime::Current()->GetThreadList();
4393 tl->SuspendAll();
4394 {
4395 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4396 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
4397 }
4398 tl->ResumeAll();
4399 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004400 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004401 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004402 context.SetChunkOverhead(0);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004403 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
4404 } else {
4405 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004406 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004407 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004408 }
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004409 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004410 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004411 context.SetChunkOverhead(0);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004412 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004413 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004414
4415 // Finally, send a heap end chunk.
4416 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004417}
4418
Elliott Hughesb1a58792013-07-11 18:10:58 -07004419static size_t GetAllocTrackerMax() {
4420#ifdef HAVE_ANDROID_OS
4421 // Check whether there's a system property overriding the number of records.
4422 const char* propertyName = "dalvik.vm.allocTrackerMax";
4423 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4424 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4425 char* end;
4426 size_t value = strtoul(allocRecordMaxString, &end, 10);
4427 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004428 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4429 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004430 return kDefaultNumAllocRecords;
4431 }
4432 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004433 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4434 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004435 return kDefaultNumAllocRecords;
4436 }
4437 return value;
4438 }
4439#endif
4440 return kDefaultNumAllocRecords;
4441}
4442
Brian Carlstrom306db812014-09-05 13:01:41 -07004443void Dbg::SetAllocTrackingEnabled(bool enable) {
4444 Thread* self = Thread::Current();
4445 if (enable) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004446 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004447 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4448 if (recent_allocation_records_ != nullptr) {
4449 return; // Already enabled, bail.
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004450 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004451 alloc_record_max_ = GetAllocTrackerMax();
4452 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4453 << kMaxAllocRecordStackDepth << " frames, taking "
4454 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4455 DCHECK_EQ(alloc_record_head_, 0U);
4456 DCHECK_EQ(alloc_record_count_, 0U);
4457 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4458 CHECK(recent_allocation_records_ != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004459 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004460 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004461 } else {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004462 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004463 ScopedObjectAccess soa(self); // For type_cache_.Clear();
4464 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4465 if (recent_allocation_records_ == nullptr) {
4466 return; // Already disabled, bail.
4467 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07004468 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004469 delete[] recent_allocation_records_;
Ian Rogersc0542af2014-09-03 16:16:56 -07004470 recent_allocation_records_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -07004471 alloc_record_head_ = 0;
4472 alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004473 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004474 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004475 // If an allocation comes in before we uninstrument, we will safely drop it on the floor.
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004476 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004477 }
4478}
4479
Ian Rogers0399dde2012-06-06 17:09:28 -07004480struct AllocRecordStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004481 AllocRecordStackVisitor(Thread* thread, AllocRecord* record_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004482 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004483 : StackVisitor(thread, nullptr), record(record_in), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004484
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004485 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4486 // annotalysis.
4487 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004488 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004489 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004490 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004491 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004492 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004493 record->StackElement(depth)->SetMethod(m);
4494 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004495 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004496 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004497 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004498 }
4499
4500 ~AllocRecordStackVisitor() {
4501 // Clear out any unused stack trace elements.
4502 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004503 record->StackElement(depth)->SetMethod(nullptr);
4504 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004505 }
4506 }
4507
4508 AllocRecord* record;
4509 size_t depth;
4510};
4511
Ian Rogers844506b2014-09-12 19:59:33 -07004512void Dbg::RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004513 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004514 if (recent_allocation_records_ == nullptr) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004515 // In the process of shutting down recording, bail.
Elliott Hughes545a0642011-11-08 19:10:03 -08004516 return;
4517 }
4518
4519 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004520 if (++alloc_record_head_ == alloc_record_max_) {
4521 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004522 }
4523
4524 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004525 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004526 record->SetType(type);
4527 record->SetByteCount(byte_count);
4528 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004529
4530 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004531 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004532 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004533
Ian Rogers719d1a32014-03-06 12:13:39 -08004534 if (alloc_record_count_ < alloc_record_max_) {
4535 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004536 }
4537}
4538
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004539// Returns the index of the head element.
4540//
Brian Carlstrom306db812014-09-05 13:01:41 -07004541// We point at the most-recently-written record, so if alloc_record_count_ is 1
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004542// we want to use the current element. Take "head+1" and subtract count
4543// from it.
4544//
4545// We need to handle underflow in our circular buffer, so we add
Brian Carlstrom306db812014-09-05 13:01:41 -07004546// alloc_record_max_ and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004547size_t Dbg::HeadIndex() {
4548 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4549 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004550}
4551
4552void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004553 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004554 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004555 if (recent_allocation_records_ == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004556 LOG(INFO) << "Not recording tracked allocations";
4557 return;
4558 }
4559
4560 // "i" is the head of the list. We want to start at the end of the
4561 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004562 size_t i = HeadIndex();
Brian Carlstrom306db812014-09-05 13:01:41 -07004563 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4564 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004565
Ian Rogers719d1a32014-03-06 12:13:39 -08004566 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004567 while (count--) {
4568 AllocRecord* record = &recent_allocation_records_[i];
4569
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004570 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4571 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004572
4573 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004574 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4575 mirror::ArtMethod* m = stack_element->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004576 if (m == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004577 break;
4578 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004579 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004580 }
4581
4582 // pause periodically to help logcat catch up
4583 if ((count % 5) == 0) {
4584 usleep(40000);
4585 }
4586
Ian Rogers719d1a32014-03-06 12:13:39 -08004587 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004588 }
4589}
4590
4591class StringTable {
4592 public:
4593 StringTable() {
4594 }
4595
Mathieu Chartier4345c462014-06-27 10:20:14 -07004596 void Add(const std::string& str) {
4597 table_.insert(str);
4598 }
4599
4600 void Add(const char* str) {
4601 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004602 }
4603
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004604 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004605 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004606 if (it == table_.end()) {
4607 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4608 }
4609 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004610 }
4611
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004612 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004613 return table_.size();
4614 }
4615
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004616 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004617 for (const std::string& str : table_) {
4618 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004619 size_t s_len = CountModifiedUtf8Chars(s);
Ian Rogers700a4022014-05-19 16:49:03 -07004620 std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004621 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4622 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004623 }
4624 }
4625
4626 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004627 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004628 DISALLOW_COPY_AND_ASSIGN(StringTable);
4629};
4630
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004631static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004632 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004633 DCHECK(method != nullptr);
4634 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004635 return (source_file != nullptr) ? source_file : "";
4636}
4637
Elliott Hughes545a0642011-11-08 19:10:03 -08004638/*
4639 * The data we send to DDMS contains everything we have recorded.
4640 *
4641 * Message header (all values big-endian):
4642 * (1b) message header len (to allow future expansion); includes itself
4643 * (1b) entry header len
4644 * (1b) stack frame len
4645 * (2b) number of entries
4646 * (4b) offset to string table from start of message
4647 * (2b) number of class name strings
4648 * (2b) number of method name strings
4649 * (2b) number of source file name strings
4650 * For each entry:
4651 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004652 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004653 * (2b) allocated object's class name index
4654 * (1b) stack depth
4655 * For each stack frame:
4656 * (2b) method's class name
4657 * (2b) method name
4658 * (2b) method source file
4659 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4660 * (xb) class name strings
4661 * (xb) method name strings
4662 * (xb) source file strings
4663 *
4664 * As with other DDM traffic, strings are sent as a 4-byte length
4665 * followed by UTF-16 data.
4666 *
4667 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07004668 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004669 * each table, but in practice there should be far fewer.
4670 *
4671 * The chief reason for using a string table here is to keep the size of
4672 * the DDMS message to a minimum. This is partly to make the protocol
4673 * efficient, but also because we have to form the whole thing up all at
4674 * once in a memory buffer.
4675 *
4676 * We use separate string tables for class names, method names, and source
4677 * files to keep the indexes small. There will generally be no overlap
4678 * between the contents of these tables.
4679 */
4680jbyteArray Dbg::GetRecentAllocations() {
Ian Rogerscf7f1912014-10-22 22:06:39 -07004681 if ((false)) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004682 DumpRecentAllocations();
4683 }
4684
Ian Rogers50b35e22012-10-04 10:09:15 -07004685 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004686 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004687 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004688 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004689 //
4690 // Part 1: generate string tables.
4691 //
4692 StringTable class_names;
4693 StringTable method_names;
4694 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004695
Brian Carlstrom306db812014-09-05 13:01:41 -07004696 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4697 uint16_t count = capped_count;
4698 size_t idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004699 while (count--) {
4700 AllocRecord* record = &recent_allocation_records_[idx];
Ian Rogers1ff3c982014-08-12 02:30:58 -07004701 std::string temp;
4702 class_names.Add(record->Type()->GetDescriptor(&temp));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004703 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004704 mirror::ArtMethod* m = record->StackElement(i)->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004705 if (m != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004706 class_names.Add(m->GetDeclaringClassDescriptor());
4707 method_names.Add(m->GetName());
4708 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004709 }
4710 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004711
Ian Rogers719d1a32014-03-06 12:13:39 -08004712 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004713 }
4714
Brian Carlstrom306db812014-09-05 13:01:41 -07004715 LOG(INFO) << "allocation records: " << capped_count;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004716
4717 //
4718 // Part 2: Generate the output and store it in the buffer.
4719 //
4720
4721 // (1b) message header len (to allow future expansion); includes itself
4722 // (1b) entry header len
4723 // (1b) stack frame len
4724 const int kMessageHeaderLen = 15;
4725 const int kEntryHeaderLen = 9;
4726 const int kStackFrameLen = 8;
4727 JDWP::Append1BE(bytes, kMessageHeaderLen);
4728 JDWP::Append1BE(bytes, kEntryHeaderLen);
4729 JDWP::Append1BE(bytes, kStackFrameLen);
4730
4731 // (2b) number of entries
4732 // (4b) offset to string table from start of message
4733 // (2b) number of class name strings
4734 // (2b) number of method name strings
4735 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07004736 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004737 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004738 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004739 JDWP::Append2BE(bytes, class_names.Size());
4740 JDWP::Append2BE(bytes, method_names.Size());
4741 JDWP::Append2BE(bytes, filenames.Size());
4742
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004743 idx = HeadIndex();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004744 std::string temp;
Brian Carlstrom306db812014-09-05 13:01:41 -07004745 for (count = capped_count; count != 0; --count) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004746 // For each entry:
4747 // (4b) total allocation size
4748 // (2b) thread id
4749 // (2b) allocated object's class name index
4750 // (1b) stack depth
4751 AllocRecord* record = &recent_allocation_records_[idx];
4752 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004753 size_t allocated_object_class_name_index =
Ian Rogers1ff3c982014-08-12 02:30:58 -07004754 class_names.IndexOf(record->Type()->GetDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004755 JDWP::Append4BE(bytes, record->ByteCount());
4756 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004757 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4758 JDWP::Append1BE(bytes, stack_depth);
4759
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004760 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4761 // For each stack frame:
4762 // (2b) method's class name
4763 // (2b) method name
4764 // (2b) method source file
4765 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004766 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004767 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4768 size_t method_name_index = method_names.IndexOf(m->GetName());
4769 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004770 JDWP::Append2BE(bytes, class_name_index);
4771 JDWP::Append2BE(bytes, method_name_index);
4772 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004773 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004774 }
Ian Rogers719d1a32014-03-06 12:13:39 -08004775 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004776 }
4777
4778 // (xb) class name strings
4779 // (xb) method name strings
4780 // (xb) source file strings
4781 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4782 class_names.WriteTo(bytes);
4783 method_names.WriteTo(bytes);
4784 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004785 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004786 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004787 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07004788 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004789 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4790 }
4791 return result;
4792}
4793
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07004794mirror::ArtMethod* DeoptimizationRequest::Method() const {
4795 ScopedObjectAccessUnchecked soa(Thread::Current());
4796 return soa.DecodeMethod(method_);
4797}
4798
4799void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
4800 ScopedObjectAccessUnchecked soa(Thread::Current());
4801 method_ = soa.EncodeMethod(m);
4802}
4803
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004804} // namespace art