blob: 2f92e6a8fec460d2e1369c3a4128004f1ae82879 [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,
234 uint32_t dex_pc)
235 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.
257 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100258 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800259 }
260
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200261 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
262 uint32_t new_dex_pc)
263 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz8379b222014-02-24 17:38:15 +0100264 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800265 }
266
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200267 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
268 uint32_t dex_pc, mirror::ArtField* field)
269 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
270 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800271 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200272
273 void FieldWritten(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
274 uint32_t dex_pc, mirror::ArtField* field, const JValue& field_value)
275 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
276 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
277 }
278
279 void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
280 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
281 mirror::Throwable* exception_object)
282 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
283 Dbg::PostException(throw_location, catch_method, catch_dex_pc, exception_object);
284 }
285
286 private:
287 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800288} gDebugInstrumentationListener;
289
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700290// JDWP is allowed unless the Zygote forbids it.
291static bool gJdwpAllowed = true;
292
Elliott Hughesc0f09332012-03-26 13:27:06 -0700293// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700294static bool gJdwpConfigured = false;
295
Elliott Hughesc0f09332012-03-26 13:27:06 -0700296// Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.)
Elliott Hughes376a7a02011-10-24 18:35:55 -0700297static JDWP::JdwpOptions gJdwpOptions;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700298
299// Runtime JDWP state.
Ian Rogersc0542af2014-09-03 16:16:56 -0700300static JDWP::JdwpState* gJdwpState = nullptr;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700301static bool gDebuggerConnected; // debugger or DDMS is connected.
302static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800303static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700304
Elliott Hughes47fce012011-10-25 18:37:19 -0700305static bool gDdmThreadNotification = false;
306
Elliott Hughes767a1472011-10-26 18:49:02 -0700307// DDMS GC-related settings.
308static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
309static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
310static Dbg::HpsgWhat gDdmHpsgWhat;
311static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
312static Dbg::HpsgWhat gDdmNhsgWhat;
313
Sebastien Hertz6995c602014-09-09 12:10:13 +0200314ObjectRegistry* Dbg::gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700315
Elliott Hughes545a0642011-11-08 19:10:03 -0800316// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800317AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
318size_t Dbg::alloc_record_max_ = 0;
319size_t Dbg::alloc_record_head_ = 0;
320size_t Dbg::alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -0700321Dbg::TypeCache Dbg::type_cache_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800322
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100323// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100324std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
325size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100326size_t Dbg::delayed_full_undeoptimization_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100327
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200328// Instrumentation event reference counters.
329size_t Dbg::dex_pc_change_event_ref_count_ = 0;
330size_t Dbg::method_enter_event_ref_count_ = 0;
331size_t Dbg::method_exit_event_ref_count_ = 0;
332size_t Dbg::field_read_event_ref_count_ = 0;
333size_t Dbg::field_write_event_ref_count_ = 0;
334size_t Dbg::exception_catch_event_ref_count_ = 0;
335uint32_t Dbg::instrumentation_events_ = 0;
336
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100337// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800338static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800339
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700340void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
341 RootType root_type) {
342 if (receiver != nullptr) {
343 callback(&receiver, arg, tid, root_type);
344 }
345 if (thread != nullptr) {
346 callback(&thread, arg, tid, root_type);
347 }
348 if (klass != nullptr) {
349 callback(reinterpret_cast<mirror::Object**>(&klass), arg, tid, root_type);
350 }
351 if (method != nullptr) {
352 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
353 }
354}
355
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200356void DebugInvokeReq::Clear() {
357 invoke_needed = false;
358 receiver = nullptr;
359 thread = nullptr;
360 klass = nullptr;
361 method = nullptr;
362}
363
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700364void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
365 RootType root_type) {
366 if (method != nullptr) {
367 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
368 }
369}
370
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200371bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
372 return dex_pcs.find(dex_pc) == dex_pcs.end();
373}
374
375void SingleStepControl::Clear() {
376 is_active = false;
377 method = nullptr;
378 dex_pcs.clear();
379}
380
Brian Carlstromea46f952013-07-30 01:26:50 -0700381static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800382 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700383 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzed2be172014-08-19 15:33:43 +0200384 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100385 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700386 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
Elliott Hughes86964332012-02-15 19:37:42 -0800387 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
388 return true;
389 }
390 }
391 return false;
392}
393
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100394static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
395 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800396 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
397 // A thread may be suspended for GC; in this code, we really want to know whether
398 // there's a debugger suspension active.
399 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
400}
401
Ian Rogersc0542af2014-09-03 16:16:56 -0700402static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700403 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200404 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700405 if (o == nullptr) {
406 *error = JDWP::ERR_INVALID_OBJECT;
407 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800408 }
409 if (!o->IsArrayInstance()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700410 *error = JDWP::ERR_INVALID_ARRAY;
411 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800412 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700413 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800414 return o->AsArray();
415}
416
Ian Rogersc0542af2014-09-03 16:16:56 -0700417static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700418 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200419 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700420 if (o == nullptr) {
421 *error = JDWP::ERR_INVALID_OBJECT;
422 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800423 }
424 if (!o->IsClass()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700425 *error = JDWP::ERR_INVALID_CLASS;
426 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800427 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700428 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800429 return o->AsClass();
430}
431
Ian Rogersc0542af2014-09-03 16:16:56 -0700432static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
433 JDWP::JdwpError* error)
jeffhaoa77f0f62012-12-05 17:19:31 -0800434 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700435 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
436 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200437 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700438 if (thread_peer == nullptr) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800439 // This isn't even an object.
Ian Rogersc0542af2014-09-03 16:16:56 -0700440 *error = JDWP::ERR_INVALID_OBJECT;
441 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800442 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800443
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800444 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800445 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
446 // This isn't a thread.
Ian Rogersc0542af2014-09-03 16:16:56 -0700447 *error = JDWP::ERR_INVALID_THREAD;
448 return nullptr;
Elliott Hughes221229c2013-01-08 18:17:50 -0800449 }
450
Ian Rogersc0542af2014-09-03 16:16:56 -0700451 Thread* thread = Thread::FromManagedThread(soa, thread_peer);
452 // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a
453 // zombie.
454 *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE;
455 return thread;
Elliott Hughes436e3722012-02-17 20:01:47 -0800456}
457
Elliott Hughes24437992011-11-30 14:49:33 -0800458static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
459 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
460 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
461 return static_cast<JDWP::JdwpTag>(descriptor[0]);
462}
463
Ian Rogers1ff3c982014-08-12 02:30:58 -0700464static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
465 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
466 std::string temp;
467 const char* descriptor = klass->GetDescriptor(&temp);
468 return BasicTagFromDescriptor(descriptor);
469}
470
Ian Rogers98379392014-02-24 16:53:16 -0800471static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700472 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700473 CHECK(c != nullptr);
Elliott Hughes24437992011-11-30 14:49:33 -0800474 if (c->IsArrayClass()) {
475 return JDWP::JT_ARRAY;
476 }
Elliott Hughes24437992011-11-30 14:49:33 -0800477 if (c->IsStringClass()) {
478 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800479 }
Ian Rogers98379392014-02-24 16:53:16 -0800480 if (c->IsClassClass()) {
481 return JDWP::JT_CLASS_OBJECT;
482 }
483 {
484 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
485 if (thread_class->IsAssignableFrom(c)) {
486 return JDWP::JT_THREAD;
487 }
488 }
489 {
490 mirror::Class* thread_group_class =
491 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
492 if (thread_group_class->IsAssignableFrom(c)) {
493 return JDWP::JT_THREAD_GROUP;
494 }
495 }
496 {
497 mirror::Class* class_loader_class =
498 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
499 if (class_loader_class->IsAssignableFrom(c)) {
500 return JDWP::JT_CLASS_LOADER;
501 }
502 }
503 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800504}
505
506/*
507 * Objects declared to hold Object might actually hold a more specific
508 * type. The debugger may take a special interest in these (e.g. it
509 * wants to display the contents of Strings), so we want to return an
510 * appropriate tag.
511 *
512 * Null objects are tagged JT_OBJECT.
513 */
Sebastien Hertz6995c602014-09-09 12:10:13 +0200514JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700515 return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800516}
517
518static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
519 switch (tag) {
520 case JDWP::JT_BOOLEAN:
521 case JDWP::JT_BYTE:
522 case JDWP::JT_CHAR:
523 case JDWP::JT_FLOAT:
524 case JDWP::JT_DOUBLE:
525 case JDWP::JT_INT:
526 case JDWP::JT_LONG:
527 case JDWP::JT_SHORT:
528 case JDWP::JT_VOID:
529 return true;
530 default:
531 return false;
532 }
533}
534
Elliott Hughes3bb81562011-10-21 18:52:59 -0700535/*
536 * Handle one of the JDWP name/value pairs.
537 *
538 * JDWP options are:
539 * help: if specified, show help message and bail
540 * transport: may be dt_socket or dt_shmem
541 * address: for dt_socket, "host:port", or just "port" when listening
542 * server: if "y", wait for debugger to attach; if "n", attach to debugger
543 * timeout: how long to wait for debugger to connect / listen
544 *
545 * Useful with server=n (these aren't supported yet):
546 * onthrow=<exception-name>: connect to debugger when exception thrown
547 * onuncaught=y|n: connect to debugger when uncaught exception thrown
548 * launch=<command-line>: launch the debugger itself
549 *
550 * The "transport" option is required, as is "address" if server=n.
551 */
552static bool ParseJdwpOption(const std::string& name, const std::string& value) {
553 if (name == "transport") {
554 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700555 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700556 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700557 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700558 } else {
559 LOG(ERROR) << "JDWP transport not supported: " << value;
560 return false;
561 }
562 } else if (name == "server") {
563 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700564 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700565 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700566 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700567 } else {
568 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
569 return false;
570 }
571 } else if (name == "suspend") {
572 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700573 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700574 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700575 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700576 } else {
577 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
578 return false;
579 }
580 } else if (name == "address") {
581 /* this is either <port> or <host>:<port> */
582 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700583 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700584 std::string::size_type colon = value.find(':');
585 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700586 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700587 port_string = value.substr(colon + 1);
588 } else {
589 port_string = value;
590 }
591 if (port_string.empty()) {
592 LOG(ERROR) << "JDWP address missing port: " << value;
593 return false;
594 }
595 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800596 uint64_t port = strtoul(port_string.c_str(), &end, 10);
597 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700598 LOG(ERROR) << "JDWP address has junk in port field: " << value;
599 return false;
600 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700601 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700602 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
603 /* valid but unsupported */
604 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
605 } else {
606 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
607 }
608
609 return true;
610}
611
612/*
613 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
614 * "transport=dt_socket,address=8000,server=y,suspend=n"
615 */
616bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800617 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700618
Elliott Hughes3bb81562011-10-21 18:52:59 -0700619 std::vector<std::string> pairs;
620 Split(options, ',', pairs);
621
622 for (size_t i = 0; i < pairs.size(); ++i) {
623 std::string::size_type equals = pairs[i].find('=');
624 if (equals == std::string::npos) {
625 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
626 return false;
627 }
628 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
629 }
630
Elliott Hughes376a7a02011-10-24 18:35:55 -0700631 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700632 LOG(ERROR) << "Must specify JDWP transport: " << options;
633 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700634 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700635 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
636 return false;
637 }
638
639 gJdwpConfigured = true;
640 return true;
641}
642
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700643void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700644 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700645 // No JDWP for you!
646 return;
647 }
648
Ian Rogers719d1a32014-03-06 12:13:39 -0800649 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700650 gRegistry = new ObjectRegistry;
651
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700652 // Init JDWP if the debugger is enabled. This may connect out to a
653 // debugger, passively listen for a debugger, or block waiting for a
654 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700655 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
Ian Rogersc0542af2014-09-03 16:16:56 -0700656 if (gJdwpState == nullptr) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800657 // We probably failed because some other process has the port already, which means that
658 // if we don't abort the user is likely to think they're talking to us when they're actually
659 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800660 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700661 }
662
663 // If a debugger has already attached, send the "welcome" message.
664 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700665 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700666 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes376a7a02011-10-24 18:35:55 -0700667 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800668 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700669 }
670 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700671}
672
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700673void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200674 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
675 // destruction of gJdwpState).
676 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
677 gJdwpState->PostVMDeath();
678 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100679 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
680 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700681 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800682 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700683 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800684 gRegistry = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700685}
686
Elliott Hughes767a1472011-10-26 18:49:02 -0700687void Dbg::GcDidFinish() {
688 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700689 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700690 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700691 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700692 }
693 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700694 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700695 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700696 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700697 }
698 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700699 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700700 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700701 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700702 }
703}
704
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700705void Dbg::SetJdwpAllowed(bool allowed) {
706 gJdwpAllowed = allowed;
707}
708
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700709DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700710 return Thread::Current()->GetInvokeReq();
711}
712
713Thread* Dbg::GetDebugThread() {
Ian Rogersc0542af2014-09-03 16:16:56 -0700714 return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700715}
716
717void Dbg::ClearWaitForEventThread() {
718 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700719}
720
721void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700722 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800723 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700724 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800725 gDisposed = false;
726}
727
728void Dbg::Disposed() {
729 gDisposed = true;
730}
731
732bool Dbg::IsDisposed() {
733 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700734}
735
Elliott Hughesa2155262011-11-16 16:26:58 -0800736void Dbg::GoActive() {
737 // Enable all debugging features, including scans for breakpoints.
738 // This is a no-op if we're already active.
739 // Only called from the JDWP handler thread.
740 if (gDebuggerActive) {
741 return;
742 }
743
Elliott Hughesc0f09332012-03-26 13:27:06 -0700744 {
745 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Sebastien Hertzed2be172014-08-19 15:33:43 +0200746 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700747 CHECK_EQ(gBreakpoints.size(), 0U);
748 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800749
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100750 {
Brian Carlstrom306db812014-09-05 13:01:41 -0700751 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100752 CHECK_EQ(deoptimization_requests_.size(), 0U);
753 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100754 CHECK_EQ(delayed_full_undeoptimization_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200755 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
756 CHECK_EQ(method_enter_event_ref_count_, 0U);
757 CHECK_EQ(method_exit_event_ref_count_, 0U);
758 CHECK_EQ(field_read_event_ref_count_, 0U);
759 CHECK_EQ(field_write_event_ref_count_, 0U);
760 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100761 }
762
Ian Rogers62d6c772013-02-27 08:32:07 -0800763 Runtime* runtime = Runtime::Current();
764 runtime->GetThreadList()->SuspendAll();
765 Thread* self = Thread::Current();
766 ThreadState old_state = self->SetStateUnsafe(kRunnable);
767 CHECK_NE(old_state, kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100768 runtime->GetInstrumentation()->EnableDeoptimization();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200769 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800770 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800771 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
772 runtime->GetThreadList()->ResumeAll();
773
774 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700775}
776
777void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700778 CHECK(gDebuggerConnected);
779
Elliott Hughesc0f09332012-03-26 13:27:06 -0700780 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700781
Ian Rogers62d6c772013-02-27 08:32:07 -0800782 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
783 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
784 // and clear the object registry.
785 Runtime* runtime = Runtime::Current();
786 runtime->GetThreadList()->SuspendAll();
787 Thread* self = Thread::Current();
788 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100789
790 // Debugger may not be active at this point.
791 if (gDebuggerActive) {
792 {
793 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
794 // This prevents us from having any pending deoptimization request when the debugger attaches
795 // to us again while no event has been requested yet.
Brian Carlstrom306db812014-09-05 13:01:41 -0700796 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100797 deoptimization_requests_.clear();
798 full_deoptimization_event_count_ = 0U;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100799 delayed_full_undeoptimization_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100800 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200801 if (instrumentation_events_ != 0) {
802 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
803 instrumentation_events_);
804 instrumentation_events_ = 0;
805 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100806 runtime->GetInstrumentation()->DisableDeoptimization();
807 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100808 }
Elliott Hughes234ab152011-10-26 14:02:26 -0700809 gRegistry->Clear();
810 gDebuggerConnected = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800811 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
812 runtime->GetThreadList()->ResumeAll();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700813}
814
Elliott Hughesc0f09332012-03-26 13:27:06 -0700815bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700816 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700817}
818
Elliott Hughesc0f09332012-03-26 13:27:06 -0700819bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700820 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700821}
822
823int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800824 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700825}
826
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700827void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700828 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700829}
830
Elliott Hughes88d63092013-01-09 09:55:54 -0800831std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700832 JDWP::JdwpError error;
833 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error);
834 if (o == nullptr) {
835 if (error == JDWP::ERR_NONE) {
836 return "NULL";
837 } else {
838 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
839 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800840 }
841 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700842 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800843 }
Sebastien Hertz6995c602014-09-09 12:10:13 +0200844 return GetClassName(o->AsClass());
845}
846
847std::string Dbg::GetClassName(mirror::Class* klass) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200848 if (klass == nullptr) {
849 return "NULL";
850 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700851 std::string temp;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200852 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700853}
854
Ian Rogersc0542af2014-09-03 16:16:56 -0700855JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800856 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700857 mirror::Class* c = DecodeClass(id, &status);
858 if (c == nullptr) {
859 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800860 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800861 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700862 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800863 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800864}
865
Ian Rogersc0542af2014-09-03 16:16:56 -0700866JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800867 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700868 mirror::Class* c = DecodeClass(id, &status);
869 if (c == nullptr) {
870 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800871 return status;
872 }
873 if (c->IsInterface()) {
874 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700875 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800876 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700877 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800878 }
879 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700880}
881
Elliott Hughes436e3722012-02-17 20:01:47 -0800882JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700883 JDWP::JdwpError error;
884 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
885 if (o == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800886 return JDWP::ERR_INVALID_OBJECT;
887 }
888 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
889 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700890}
891
Elliott Hughes436e3722012-02-17 20:01:47 -0800892JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700893 JDWP::JdwpError error;
894 mirror::Class* c = DecodeClass(id, &error);
895 if (c == nullptr) {
896 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800897 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800898
899 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
900
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700901 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
902 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800903 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700904 if ((access_flags & kAccInterface) == 0) {
905 access_flags |= kAccSuper;
906 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800907
908 expandBufAdd4BE(pReply, access_flags);
909
910 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700911}
912
Ian Rogersc0542af2014-09-03 16:16:56 -0700913JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
914 JDWP::JdwpError error;
915 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
916 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800917 return JDWP::ERR_INVALID_OBJECT;
918 }
919
920 // Ensure all threads are suspended while we read objects' lock words.
921 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100922 CHECK_EQ(self->GetState(), kRunnable);
923 self->TransitionFromRunnableToSuspended(kSuspended);
924 Runtime::Current()->GetThreadList()->SuspendAll();
Elliott Hughesf327e072013-01-09 16:01:26 -0800925
926 MonitorInfo monitor_info(o);
927
Sebastien Hertz54263242014-03-19 18:16:50 +0100928 Runtime::Current()->GetThreadList()->ResumeAll();
929 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800930
Ian Rogersc0542af2014-09-03 16:16:56 -0700931 if (monitor_info.owner_ != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700932 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800933 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700934 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800935 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700936 expandBufAdd4BE(reply, monitor_info.entry_count_);
937 expandBufAdd4BE(reply, monitor_info.waiters_.size());
938 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
939 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800940 }
941 return JDWP::ERR_NONE;
942}
943
Elliott Hughes734b8c62013-01-11 15:32:45 -0800944JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700945 std::vector<JDWP::ObjectId>* monitors,
946 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800947 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700948 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700949 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700950 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800951 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700952 : StackVisitor(thread, context), current_stack_depth(0),
953 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800954
955 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
956 // annotalysis.
957 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
958 if (!GetMethod()->IsRuntimeMethod()) {
959 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800960 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800961 }
962 return true;
963 }
964
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700965 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
966 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800967 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700968 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700969 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800970 }
971
Elliott Hughes734b8c62013-01-11 15:32:45 -0800972 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700973 std::vector<JDWP::ObjectId>* const monitors;
974 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800975 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800976
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700977 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700978 Thread* thread;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700979 {
980 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700981 JDWP::JdwpError error;
982 thread = DecodeThread(soa, thread_id, &error);
983 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700984 return error;
985 }
986 if (!IsSuspendedForDebugger(soa, thread)) {
987 return JDWP::ERR_THREAD_NOT_SUSPENDED;
988 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700989 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700990 std::unique_ptr<Context> context(Context::Create());
Ian Rogersc0542af2014-09-03 16:16:56 -0700991 OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700992 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800993 return JDWP::ERR_NONE;
994}
995
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100996JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700997 JDWP::ObjectId* contended_monitor) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700998 mirror::Object* contended_monitor_obj;
Elliott Hughesf9501702013-01-11 11:22:27 -0800999 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001000 *contended_monitor = 0;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001001 {
1002 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001003 JDWP::JdwpError error;
1004 Thread* thread = DecodeThread(soa, thread_id, &error);
1005 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001006 return error;
1007 }
1008 if (!IsSuspendedForDebugger(soa, thread)) {
1009 return JDWP::ERR_THREAD_NOT_SUSPENDED;
1010 }
1011 contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Elliott Hughesf9501702013-01-11 11:22:27 -08001012 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001013 // Add() requires the thread_list_lock_ not held to avoid the lock
1014 // level violation.
Ian Rogersc0542af2014-09-03 16:16:56 -07001015 *contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -08001016 return JDWP::ERR_NONE;
1017}
1018
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001019JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -07001020 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001021 gc::Heap* heap = Runtime::Current()->GetHeap();
1022 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001023 std::vector<mirror::Class*> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -07001024 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001025 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001026 JDWP::JdwpError error;
1027 mirror::Class* c = DecodeClass(class_ids[i], &error);
1028 if (c == nullptr) {
1029 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001030 }
1031 classes.push_back(c);
Ian Rogersc0542af2014-09-03 16:16:56 -07001032 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001033 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001034 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001035 return JDWP::ERR_NONE;
1036}
1037
Ian Rogersc0542af2014-09-03 16:16:56 -07001038JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
1039 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001040 gc::Heap* heap = Runtime::Current()->GetHeap();
1041 // We only want reachable instances, so do a GC.
1042 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -07001043 JDWP::JdwpError error;
1044 mirror::Class* c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001045 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001046 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001047 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001048 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001049 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
1050 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001051 instances->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes3b78c942013-01-15 17:35:41 -08001052 }
1053 return JDWP::ERR_NONE;
1054}
1055
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001056JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001057 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001058 gc::Heap* heap = Runtime::Current()->GetHeap();
1059 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -07001060 JDWP::JdwpError error;
1061 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1062 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001063 return JDWP::ERR_INVALID_OBJECT;
1064 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001065 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001066 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001067 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001068 referring_objects->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001069 }
1070 return JDWP::ERR_NONE;
1071}
1072
Ian Rogersc0542af2014-09-03 16:16:56 -07001073JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
1074 JDWP::JdwpError error;
1075 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1076 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001077 return JDWP::ERR_INVALID_OBJECT;
1078 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001079 gRegistry->DisableCollection(object_id);
1080 return JDWP::ERR_NONE;
1081}
1082
Ian Rogersc0542af2014-09-03 16:16:56 -07001083JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
1084 JDWP::JdwpError error;
1085 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +01001086 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
1087 // also ignores these cases and never return an error. However it's not obvious why this command
1088 // should behave differently from DisableCollection and IsCollected commands. So let's be more
1089 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -07001090 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001091 return JDWP::ERR_INVALID_OBJECT;
1092 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001093 gRegistry->EnableCollection(object_id);
1094 return JDWP::ERR_NONE;
1095}
1096
Ian Rogersc0542af2014-09-03 16:16:56 -07001097JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
1098 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001099 if (object_id == 0) {
1100 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +01001101 return JDWP::ERR_INVALID_OBJECT;
1102 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001103 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1104 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -07001105 JDWP::JdwpError error;
1106 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1107 if (o != nullptr) {
1108 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001109 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001110 return JDWP::ERR_NONE;
1111}
1112
Ian Rogersc0542af2014-09-03 16:16:56 -07001113void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001114 gRegistry->DisposeObject(object_id, reference_count);
1115}
1116
Sebastien Hertz6995c602014-09-09 12:10:13 +02001117JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001118 DCHECK(klass != nullptr);
1119 if (klass->IsArrayClass()) {
1120 return JDWP::TT_ARRAY;
1121 } else if (klass->IsInterface()) {
1122 return JDWP::TT_INTERFACE;
1123 } else {
1124 return JDWP::TT_CLASS;
1125 }
1126}
1127
Elliott Hughes88d63092013-01-09 09:55:54 -08001128JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001129 JDWP::JdwpError error;
1130 mirror::Class* c = DecodeClass(class_id, &error);
1131 if (c == nullptr) {
1132 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001133 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001134
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001135 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1136 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001137 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001138 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001139}
1140
Ian Rogersc0542af2014-09-03 16:16:56 -07001141void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001142 // Get the complete list of reference classes (i.e. all classes except
1143 // the primitive types).
1144 // Returns a newly-allocated buffer full of RefTypeId values.
1145 struct ClassListCreator {
Ian Rogersc0542af2014-09-03 16:16:56 -07001146 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001147 }
1148
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001149 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001150 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1151 }
1152
Elliott Hughes64f574f2013-02-20 14:57:12 -08001153 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1154 // annotalysis.
1155 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001156 if (!c->IsPrimitive()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001157 classes->push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001158 }
1159 return true;
1160 }
1161
Ian Rogersc0542af2014-09-03 16:16:56 -07001162 std::vector<JDWP::RefTypeId>* const classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001163 };
1164
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001165 ClassListCreator clc(classes);
Sebastien Hertz4537c412014-08-28 14:41:50 +02001166 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(ClassListCreator::Visit,
1167 &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001168}
1169
Ian Rogers1ff3c982014-08-12 02:30:58 -07001170JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1171 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001172 JDWP::JdwpError error;
1173 mirror::Class* c = DecodeClass(class_id, &error);
1174 if (c == nullptr) {
1175 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001176 }
1177
Elliott Hughesa2155262011-11-16 16:26:58 -08001178 if (c->IsArrayClass()) {
1179 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1180 *pTypeTag = JDWP::TT_ARRAY;
1181 } else {
1182 if (c->IsErroneous()) {
1183 *pStatus = JDWP::CS_ERROR;
1184 } else {
1185 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1186 }
1187 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1188 }
1189
Ian Rogersc0542af2014-09-03 16:16:56 -07001190 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001191 std::string temp;
1192 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001193 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001194 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001195}
1196
Ian Rogersc0542af2014-09-03 16:16:56 -07001197void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001198 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001199 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001200 ids->clear();
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001201 for (size_t i = 0; i < classes.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001202 ids->push_back(gRegistry->Add(classes[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001203 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001204}
1205
Ian Rogersc0542af2014-09-03 16:16:56 -07001206JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1207 JDWP::JdwpError error;
1208 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1209 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001210 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001211 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001212
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001213 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001214 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001215
1216 expandBufAdd1(pReply, type_tag);
1217 expandBufAddRefTypeId(pReply, type_id);
1218
1219 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001220}
1221
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001222JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001223 JDWP::JdwpError error;
1224 mirror::Class* c = DecodeClass(class_id, &error);
1225 if (c == nullptr) {
1226 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001227 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001228 std::string temp;
1229 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001230 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001231}
1232
Ian Rogersc0542af2014-09-03 16:16:56 -07001233JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1234 JDWP::JdwpError error;
1235 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001236 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001237 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001238 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001239 const char* source_file = c->GetSourceFile();
1240 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001241 return JDWP::ERR_ABSENT_INFORMATION;
1242 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001243 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001244 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001245}
1246
Ian Rogersc0542af2014-09-03 16:16:56 -07001247JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001248 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001249 JDWP::JdwpError error;
1250 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1251 if (error != JDWP::ERR_NONE) {
1252 *tag = JDWP::JT_VOID;
1253 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001254 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001255 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001256 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001257}
1258
Elliott Hughesaed4be92011-12-02 16:16:23 -08001259size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001260 switch (tag) {
1261 case JDWP::JT_VOID:
1262 return 0;
1263 case JDWP::JT_BYTE:
1264 case JDWP::JT_BOOLEAN:
1265 return 1;
1266 case JDWP::JT_CHAR:
1267 case JDWP::JT_SHORT:
1268 return 2;
1269 case JDWP::JT_FLOAT:
1270 case JDWP::JT_INT:
1271 return 4;
1272 case JDWP::JT_ARRAY:
1273 case JDWP::JT_OBJECT:
1274 case JDWP::JT_STRING:
1275 case JDWP::JT_THREAD:
1276 case JDWP::JT_THREAD_GROUP:
1277 case JDWP::JT_CLASS_LOADER:
1278 case JDWP::JT_CLASS_OBJECT:
1279 return sizeof(JDWP::ObjectId);
1280 case JDWP::JT_DOUBLE:
1281 case JDWP::JT_LONG:
1282 return 8;
1283 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001284 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001285 return -1;
1286 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001287}
1288
Ian Rogersc0542af2014-09-03 16:16:56 -07001289JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1290 JDWP::JdwpError error;
1291 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1292 if (a == nullptr) {
1293 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001294 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001295 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001296 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001297}
1298
Elliott Hughes88d63092013-01-09 09:55:54 -08001299JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001300 JDWP::JdwpError error;
1301 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001302 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001303 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001304 }
Elliott Hughes24437992011-11-30 14:49:33 -08001305
1306 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1307 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001308 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001309 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001310 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1311 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001312 expandBufAdd4BE(pReply, count);
1313
Ian Rogers1ff3c982014-08-12 02:30:58 -07001314 if (IsPrimitiveTag(element_tag)) {
1315 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001316 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1317 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001318 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001319 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1320 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001321 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001322 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1323 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001324 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001325 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1326 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001327 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001328 memcpy(dst, &src[offset * width], count * width);
1329 }
1330 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001331 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001332 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001333 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001334 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001335 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001336 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001337 expandBufAdd1(pReply, specific_tag);
1338 expandBufAddObjectId(pReply, gRegistry->Add(element));
1339 }
1340 }
1341
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001342 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001343}
1344
Ian Rogersef7d42f2014-01-06 12:55:46 -08001345template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001346static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001347 NO_THREAD_SAFETY_ANALYSIS {
1348 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001349 DCHECK(a->GetClass()->IsPrimitiveArray());
1350
Ian Rogersef7d42f2014-01-06 12:55:46 -08001351 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001352 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001353 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001354 }
1355}
1356
Elliott Hughes88d63092013-01-09 09:55:54 -08001357JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001358 JDWP::Request* request) {
1359 JDWP::JdwpError error;
1360 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1361 if (dst == nullptr) {
1362 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001363 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001364
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001365 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001366 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001367 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001368 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001369 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001370
Ian Rogers1ff3c982014-08-12 02:30:58 -07001371 if (IsPrimitiveTag(element_tag)) {
1372 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001373 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001374 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001375 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001376 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001377 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001378 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001379 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001380 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001381 }
1382 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001383 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001384 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001385 JDWP::ObjectId id = request->ReadObjectId();
1386 JDWP::JdwpError error;
1387 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1388 if (error != JDWP::ERR_NONE) {
1389 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001390 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001391 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001392 }
1393 }
1394
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001395 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001396}
1397
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001398JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001399 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001400}
1401
Ian Rogersc0542af2014-09-03 16:16:56 -07001402JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object) {
1403 JDWP::JdwpError error;
1404 mirror::Class* c = DecodeClass(class_id, &error);
1405 if (c == nullptr) {
1406 *new_object = 0;
1407 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001408 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001409 *new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001410 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001411}
1412
Elliott Hughesbf13d362011-12-08 15:51:37 -08001413/*
1414 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1415 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001416JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogersc0542af2014-09-03 16:16:56 -07001417 JDWP::ObjectId* new_array) {
1418 JDWP::JdwpError error;
1419 mirror::Class* c = DecodeClass(array_class_id, &error);
1420 if (c == nullptr) {
1421 *new_array = 0;
1422 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001423 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001424 *new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -07001425 c->GetComponentSizeShift(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001426 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001427 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001428}
1429
Sebastien Hertz6995c602014-09-09 12:10:13 +02001430JDWP::FieldId Dbg::ToFieldId(const mirror::ArtField* f) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001431 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001432 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001433}
1434
Brian Carlstromea46f952013-07-30 01:26:50 -07001435static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001436 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001437 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001438 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001439}
1440
Brian Carlstromea46f952013-07-30 01:26:50 -07001441static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001442 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001443 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001444 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001445}
1446
Brian Carlstromea46f952013-07-30 01:26:50 -07001447static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001448 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001449 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001450 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001451}
1452
Sebastien Hertz6995c602014-09-09 12:10:13 +02001453bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1454 CHECK(event_thread != nullptr);
1455 JDWP::JdwpError error;
1456 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(expected_thread_id,
1457 &error);
1458 return expected_thread_peer == event_thread->GetPeer();
1459}
1460
1461bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1462 const JDWP::EventLocation& event_location) {
1463 if (expected_location.dex_pc != event_location.dex_pc) {
1464 return false;
1465 }
1466 mirror::ArtMethod* m = FromMethodId(expected_location.method_id);
1467 return m == event_location.method;
1468}
1469
1470bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001471 if (event_class == nullptr) {
1472 return false;
1473 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02001474 JDWP::JdwpError error;
1475 mirror::Class* expected_class = DecodeClass(class_id, &error);
1476 CHECK(expected_class != nullptr);
1477 return expected_class->IsAssignableFrom(event_class);
1478}
1479
1480bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
1481 mirror::ArtField* event_field) {
1482 mirror::ArtField* expected_field = FromFieldId(expected_field_id);
1483 if (expected_field != event_field) {
1484 return false;
1485 }
1486 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1487}
1488
1489bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1490 JDWP::JdwpError error;
1491 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error);
1492 return modifier_instance == event_instance;
1493}
1494
1495void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001496 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001497 if (m == nullptr) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001498 memset(location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001499 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001500 mirror::Class* c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001501 location->type_tag = GetTypeTag(c);
1502 location->class_id = gRegistry->AddRefType(c);
1503 location->method_id = ToMethodId(m);
1504 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001505 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001506}
1507
Ian Rogersc0542af2014-09-03 16:16:56 -07001508std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001509 mirror::ArtMethod* m = FromMethodId(method_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001510 if (m == nullptr) {
1511 return "NULL";
1512 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001513 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001514}
1515
Ian Rogersc0542af2014-09-03 16:16:56 -07001516std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001517 mirror::ArtField* f = FromFieldId(field_id);
1518 if (f == nullptr) {
1519 return "NULL";
1520 }
1521 return f->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001522}
1523
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001524/*
1525 * Augment the access flags for synthetic methods and fields by setting
1526 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1527 * flags not specified by the Java programming language.
1528 */
1529static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1530 accessFlags &= kAccJavaFlagsMask;
1531 if ((accessFlags & kAccSynthetic) != 0) {
1532 accessFlags |= 0xf0000000;
1533 }
1534 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001535}
1536
Elliott Hughesdbb40792011-11-18 17:05:22 -08001537/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001538 * Circularly shifts registers so that arguments come first. Debuggers
1539 * expect slots to begin with arguments, but dex code places them at
1540 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001541 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001542static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1543 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001544 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001545 if (code_item == nullptr) {
1546 // We should not get here for a method without code (native, proxy or abstract). Log it and
1547 // return the slot as is since all registers are arguments.
1548 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1549 return slot;
1550 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001551 uint16_t ins_size = code_item->ins_size_;
1552 uint16_t locals_size = code_item->registers_size_ - ins_size;
1553 if (slot >= locals_size) {
1554 return slot - locals_size;
1555 } else {
1556 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001557 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001558}
1559
Jeff Haob7cefc72013-11-14 14:51:09 -08001560/*
1561 * Circularly shifts registers so that arguments come last. Reverts
1562 * slots to dex style argument placement.
1563 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001564static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001565 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001566 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001567 if (code_item == nullptr) {
1568 // We should not get here for a method without code (native, proxy or abstract). Log it and
1569 // return the slot as is since all registers are arguments.
1570 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1571 return slot;
1572 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001573 uint16_t ins_size = code_item->ins_size_;
1574 uint16_t locals_size = code_item->registers_size_ - ins_size;
1575 if (slot < ins_size) {
1576 return slot + locals_size;
1577 } else {
1578 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001579 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001580}
1581
Elliott Hughes88d63092013-01-09 09:55:54 -08001582JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001583 JDWP::JdwpError error;
1584 mirror::Class* c = DecodeClass(class_id, &error);
1585 if (c == nullptr) {
1586 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001587 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001588
1589 size_t instance_field_count = c->NumInstanceFields();
1590 size_t static_field_count = c->NumStaticFields();
1591
1592 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1593
1594 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001595 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001596 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001597 expandBufAddUtf8String(pReply, f->GetName());
1598 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001599 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001600 static const char genericSignature[1] = "";
1601 expandBufAddUtf8String(pReply, genericSignature);
1602 }
1603 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1604 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001605 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001606}
1607
Elliott Hughes88d63092013-01-09 09:55:54 -08001608JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001609 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001610 JDWP::JdwpError error;
1611 mirror::Class* c = DecodeClass(class_id, &error);
1612 if (c == nullptr) {
1613 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001614 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001615
1616 size_t direct_method_count = c->NumDirectMethods();
1617 size_t virtual_method_count = c->NumVirtualMethods();
1618
1619 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1620
1621 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001622 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001623 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001624 expandBufAddUtf8String(pReply, m->GetName());
1625 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001626 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001627 static const char genericSignature[1] = "";
1628 expandBufAddUtf8String(pReply, genericSignature);
1629 }
1630 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1631 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001632 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001633}
1634
Elliott Hughes88d63092013-01-09 09:55:54 -08001635JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001636 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001637 Thread* self = Thread::Current();
1638 StackHandleScope<1> hs(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07001639 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error)));
Mathieu Chartierf8322842014-05-16 10:59:25 -07001640 if (c.Get() == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001641 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001642 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001643 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001644 expandBufAdd4BE(pReply, interface_count);
1645 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001646 expandBufAddRefTypeId(pReply,
1647 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001648 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001649 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001650}
1651
Ian Rogersc0542af2014-09-03 16:16:56 -07001652void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001653 struct DebugCallbackContext {
1654 int numItems;
1655 JDWP::ExpandBuf* pReply;
1656
Elliott Hughes2435a572012-02-17 16:07:41 -08001657 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001658 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1659 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001660 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001661 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001662 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001663 }
1664 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001665 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001666 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001667 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001668 if (code_item == nullptr) {
1669 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001670 start = -1;
1671 end = -1;
1672 } else {
1673 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001674 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001675 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001676 }
1677
1678 expandBufAdd8BE(pReply, start);
1679 expandBufAdd8BE(pReply, end);
1680
1681 // Add numLines later
1682 size_t numLinesOffset = expandBufGetLength(pReply);
1683 expandBufAdd4BE(pReply, 0);
1684
1685 DebugCallbackContext context;
1686 context.numItems = 0;
1687 context.pReply = pReply;
1688
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001689 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001690 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001691 DebugCallbackContext::Callback, nullptr, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001692 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001693
1694 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001695}
1696
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001697void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1698 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001699 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001700 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001701 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001702 size_t variable_count;
1703 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001704
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001705 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1706 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001707 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001708 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1709
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001710 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1711 pContext->variable_count, startAddress, endAddress - startAddress,
1712 name, descriptor, signature, slot,
1713 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001714
Jeff Haob7cefc72013-11-14 14:51:09 -08001715 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001716
Elliott Hughesdbb40792011-11-18 17:05:22 -08001717 expandBufAdd8BE(pContext->pReply, startAddress);
1718 expandBufAddUtf8String(pContext->pReply, name);
1719 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001720 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001721 expandBufAddUtf8String(pContext->pReply, signature);
1722 }
1723 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1724 expandBufAdd4BE(pContext->pReply, slot);
1725
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001726 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001727 }
1728 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001729 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001730
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001731 // arg_count considers doubles and longs to take 2 units.
1732 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001733 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001734 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001735
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001736 // We don't know the total number of variables yet, so leave a blank and update it later.
1737 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001738 expandBufAdd4BE(pReply, 0);
1739
1740 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001741 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001742 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001743 context.variable_count = 0;
1744 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001745
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001746 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001747 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001748 m->GetDexFile()->DecodeDebugInfo(
Ian Rogersc0542af2014-09-03 16:16:56 -07001749 code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001750 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001751 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001752
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001753 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001754}
1755
Jeff Hao579b0242013-11-18 13:16:49 -08001756void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1757 JDWP::ExpandBuf* pReply) {
1758 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001759 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001760 OutputJValue(tag, return_value, pReply);
1761}
1762
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001763void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1764 JDWP::ExpandBuf* pReply) {
1765 mirror::ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001766 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001767 OutputJValue(tag, field_value, pReply);
1768}
1769
Elliott Hughes9777ba22013-01-17 09:04:19 -08001770JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001771 std::vector<uint8_t>* bytecodes) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001772 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001773 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001774 return JDWP::ERR_INVALID_METHODID;
1775 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001776 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001777 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1778 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1779 const uint8_t* end = begin + byte_count;
1780 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001781 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001782 }
1783 return JDWP::ERR_NONE;
1784}
1785
Elliott Hughes88d63092013-01-09 09:55:54 -08001786JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001787 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001788}
1789
Elliott Hughes88d63092013-01-09 09:55:54 -08001790JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001791 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001792}
1793
Elliott Hughes88d63092013-01-09 09:55:54 -08001794static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1795 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001796 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001797 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001798 JDWP::JdwpError error;
1799 mirror::Class* c = DecodeClass(ref_type_id, &error);
1800 if (ref_type_id != 0 && c == nullptr) {
1801 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001802 }
1803
Sebastien Hertz6995c602014-09-09 12:10:13 +02001804 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001805 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001806 return JDWP::ERR_INVALID_OBJECT;
1807 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001808 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001809
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001810 mirror::Class* receiver_class = c;
Ian Rogersc0542af2014-09-03 16:16:56 -07001811 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001812 receiver_class = o->GetClass();
1813 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001814 // TODO: should we give up now if receiver_class is nullptr?
1815 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001816 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001817 return JDWP::ERR_INVALID_FIELDID;
1818 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001819
Elliott Hughes0cf74332012-02-23 23:14:00 -08001820 // The RI only enforces the static/non-static mismatch in one direction.
1821 // TODO: should we change the tests and check both?
1822 if (is_static) {
1823 if (!f->IsStatic()) {
1824 return JDWP::ERR_INVALID_FIELDID;
1825 }
1826 } else {
1827 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001828 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field "
1829 << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001830 }
1831 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001832 if (f->IsStatic()) {
1833 o = f->GetDeclaringClass();
1834 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001835
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001836 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001837 JValue field_value;
1838 if (tag == JDWP::JT_VOID) {
1839 LOG(FATAL) << "Unknown tag: " << tag;
1840 } else if (!IsPrimitiveTag(tag)) {
1841 field_value.SetL(f->GetObject(o));
1842 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1843 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001844 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001845 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001846 }
Jeff Hao579b0242013-11-18 13:16:49 -08001847 Dbg::OutputJValue(tag, &field_value, pReply);
1848
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001849 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001850}
1851
Elliott Hughes88d63092013-01-09 09:55:54 -08001852JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001853 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001854 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001855}
1856
Ian Rogersc0542af2014-09-03 16:16:56 -07001857JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1858 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001859 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001860}
1861
Elliott Hughes88d63092013-01-09 09:55:54 -08001862static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001863 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001864 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001865 JDWP::JdwpError error;
Sebastien Hertz6995c602014-09-09 12:10:13 +02001866 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001867 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001868 return JDWP::ERR_INVALID_OBJECT;
1869 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001870 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001871
1872 // The RI only enforces the static/non-static mismatch in one direction.
1873 // TODO: should we change the tests and check both?
1874 if (is_static) {
1875 if (!f->IsStatic()) {
1876 return JDWP::ERR_INVALID_FIELDID;
1877 }
1878 } else {
1879 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001880 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001881 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001882 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001883 if (f->IsStatic()) {
1884 o = f->GetDeclaringClass();
1885 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001886
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001887 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001888
1889 if (IsPrimitiveTag(tag)) {
1890 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001891 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001892 // Debugging can't use transactional mode (runtime only).
1893 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001894 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001895 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001896 // Debugging can't use transactional mode (runtime only).
1897 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001898 }
1899 } else {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001900 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001901 if (error != JDWP::ERR_NONE) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001902 return JDWP::ERR_INVALID_OBJECT;
1903 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001904 if (v != nullptr) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001905 mirror::Class* field_type;
1906 {
1907 StackHandleScope<3> hs(Thread::Current());
1908 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1909 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
1910 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
1911 field_type = FieldHelper(h_f).GetType();
1912 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001913 if (!field_type->IsAssignableFrom(v->GetClass())) {
1914 return JDWP::ERR_INVALID_OBJECT;
1915 }
1916 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001917 // Debugging can't use transactional mode (runtime only).
1918 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001919 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001920
1921 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001922}
1923
Elliott Hughes88d63092013-01-09 09:55:54 -08001924JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001925 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001926 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001927}
1928
Elliott Hughes88d63092013-01-09 09:55:54 -08001929JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1930 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001931}
1932
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001933JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001934 JDWP::JdwpError error;
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001935 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error);
1936 if (error != JDWP::ERR_NONE) {
1937 return error;
1938 }
1939 if (obj == nullptr) {
1940 return JDWP::ERR_INVALID_OBJECT;
1941 }
1942 {
1943 ScopedObjectAccessUnchecked soa(Thread::Current());
1944 mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String);
1945 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
1946 // This isn't a string.
1947 return JDWP::ERR_INVALID_STRING;
1948 }
1949 }
1950 *str = obj->AsString()->ToModifiedUtf8();
1951 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001952}
1953
Jeff Hao579b0242013-11-18 13:16:49 -08001954void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1955 if (IsPrimitiveTag(tag)) {
1956 expandBufAdd1(pReply, tag);
1957 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1958 expandBufAdd1(pReply, return_value->GetI());
1959 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1960 expandBufAdd2BE(pReply, return_value->GetI());
1961 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1962 expandBufAdd4BE(pReply, return_value->GetI());
1963 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1964 expandBufAdd8BE(pReply, return_value->GetJ());
1965 } else {
1966 CHECK_EQ(tag, JDWP::JT_VOID);
1967 }
1968 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001969 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001970 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001971 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001972 expandBufAddObjectId(pReply, gRegistry->Add(value));
1973 }
1974}
1975
Ian Rogersc0542af2014-09-03 16:16:56 -07001976JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001977 ScopedObjectAccessUnchecked soa(Thread::Current());
1978 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001979 JDWP::JdwpError error;
1980 Thread* thread = DecodeThread(soa, thread_id, &error);
1981 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001982 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1983 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001984 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001985
1986 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07001987 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1988 CHECK(thread_object != nullptr) << error;
Brian Carlstromea46f952013-07-30 01:26:50 -07001989 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001990 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1991 mirror::String* s =
1992 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Ian Rogersc0542af2014-09-03 16:16:56 -07001993 if (s != nullptr) {
1994 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08001995 }
1996 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001997}
1998
Elliott Hughes221229c2013-01-08 18:17:50 -08001999JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02002000 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002001 JDWP::JdwpError error;
2002 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
2003 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002004 return JDWP::ERR_INVALID_OBJECT;
2005 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002006 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08002007 // Okay, so it's an object, but is it actually a thread?
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002008 {
2009 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002010 Thread* thread = DecodeThread(soa, thread_id, &error);
2011 UNUSED(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002012 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002013 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2014 // Zombie threads are in the null group.
2015 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002016 error = JDWP::ERR_NONE;
2017 } else if (error == JDWP::ERR_NONE) {
2018 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
2019 CHECK(c != nullptr);
Sebastien Hertze49e1952014-10-13 11:27:13 +02002020 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002021 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002022 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002023 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002024 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
2025 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08002026 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002027 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002028}
2029
Sebastien Hertza06430c2014-09-15 19:21:30 +02002030static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
2031 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
2032 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002033 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,
2034 error);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002035 if (*error != JDWP::ERR_NONE) {
2036 return nullptr;
2037 }
2038 if (thread_group == nullptr) {
2039 *error = JDWP::ERR_INVALID_OBJECT;
2040 return nullptr;
2041 }
Ian Rogers98379392014-02-24 16:53:16 -08002042 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
2043 CHECK(c != nullptr);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002044 if (!c->IsAssignableFrom(thread_group->GetClass())) {
2045 // This is not a java.lang.ThreadGroup.
2046 *error = JDWP::ERR_INVALID_THREAD_GROUP;
2047 return nullptr;
2048 }
2049 *error = JDWP::ERR_NONE;
2050 return thread_group;
2051}
2052
2053JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
2054 ScopedObjectAccessUnchecked soa(Thread::Current());
2055 JDWP::JdwpError error;
2056 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2057 if (error != JDWP::ERR_NONE) {
2058 return error;
2059 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002060 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupName");
Sebastien Hertze49e1952014-10-13 11:27:13 +02002061 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_name);
Ian Rogersc0542af2014-09-03 16:16:56 -07002062 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002063 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002064
2065 std::string thread_group_name(s->ToModifiedUtf8());
2066 expandBufAddUtf8String(pReply, thread_group_name);
2067 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002068}
2069
Sebastien Hertza06430c2014-09-15 19:21:30 +02002070JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08002071 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002072 JDWP::JdwpError error;
Sebastien Hertza06430c2014-09-15 19:21:30 +02002073 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2074 if (error != JDWP::ERR_NONE) {
2075 return error;
2076 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002077 mirror::Object* parent;
2078 {
2079 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupParent");
Sebastien Hertze49e1952014-10-13 11:27:13 +02002080 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_parent);
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002081 CHECK(f != nullptr);
2082 parent = f->GetObject(thread_group);
2083 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002084 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
2085 expandBufAddObjectId(pReply, parent_group_id);
2086 return JDWP::ERR_NONE;
2087}
2088
2089static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
2090 std::vector<JDWP::ObjectId>* child_thread_group_ids)
2091 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2092 CHECK(thread_group != nullptr);
2093
2094 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Sebastien Hertze49e1952014-10-13 11:27:13 +02002095 mirror::ArtField* groups_field = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_groups);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002096 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Sebastien Hertze49e1952014-10-13 11:27:13 +02002097 {
2098 // The "groups" field is declared as a java.util.List: check it really is
2099 // an instance of java.util.ArrayList.
2100 CHECK(groups_array_list != nullptr);
2101 mirror::Class* java_util_ArrayList_class =
2102 soa.Decode<mirror::Class*>(WellKnownClasses::java_util_ArrayList);
2103 CHECK(groups_array_list->InstanceOf(java_util_ArrayList_class));
2104 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002105
2106 // Get the array and size out of the ArrayList<ThreadGroup>...
Sebastien Hertze49e1952014-10-13 11:27:13 +02002107 mirror::ArtField* array_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_array);
2108 mirror::ArtField* size_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_size);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002109 mirror::ObjectArray<mirror::Object>* groups_array =
2110 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
2111 const int32_t size = size_field->GetInt(groups_array_list);
2112
2113 // Copy the first 'size' elements out of the array into the result.
Sebastien Hertz6995c602014-09-09 12:10:13 +02002114 ObjectRegistry* registry = Dbg::GetObjectRegistry();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002115 for (int32_t i = 0; i < size; ++i) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002116 child_thread_group_ids->push_back(registry->Add(groups_array->Get(i)));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002117 }
2118}
2119
2120JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2121 JDWP::ExpandBuf* pReply) {
2122 ScopedObjectAccessUnchecked soa(Thread::Current());
2123 JDWP::JdwpError error;
2124 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2125 if (error != JDWP::ERR_NONE) {
2126 return error;
2127 }
2128
2129 // Add child threads.
2130 {
2131 std::vector<JDWP::ObjectId> child_thread_ids;
2132 GetThreads(thread_group, &child_thread_ids);
2133 expandBufAdd4BE(pReply, child_thread_ids.size());
2134 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2135 expandBufAddObjectId(pReply, child_thread_id);
2136 }
2137 }
2138
2139 // Add child thread groups.
2140 {
2141 std::vector<JDWP::ObjectId> child_thread_groups_ids;
2142 GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids);
2143 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2144 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2145 expandBufAddObjectId(pReply, child_thread_group_id);
2146 }
2147 }
2148
2149 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002150}
2151
2152JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002153 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07002154 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002155 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002156 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002157}
2158
Jeff Hao920af3e2013-08-28 15:46:38 -07002159JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2160 switch (state) {
2161 case kBlocked:
2162 return JDWP::TS_MONITOR;
2163 case kNative:
2164 case kRunnable:
2165 case kSuspended:
2166 return JDWP::TS_RUNNING;
2167 case kSleeping:
2168 return JDWP::TS_SLEEPING;
2169 case kStarting:
2170 case kTerminated:
2171 return JDWP::TS_ZOMBIE;
2172 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002173 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002174 case kWaitingForDebuggerSend:
2175 case kWaitingForDebuggerSuspension:
2176 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002177 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002178 case kWaitingForGcToComplete:
Jeff Hao920af3e2013-08-28 15:46:38 -07002179 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002180 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002181 case kWaitingForSignalCatcherOutput:
2182 case kWaitingInMainDebuggerLoop:
2183 case kWaitingInMainSignalCatcherLoop:
2184 case kWaitingPerformingGc:
2185 case kWaiting:
2186 return JDWP::TS_WAIT;
2187 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2188 }
2189 LOG(FATAL) << "Unknown thread state: " << state;
2190 return JDWP::TS_ZOMBIE;
2191}
2192
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002193JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2194 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002195 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002196
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002197 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2198
Ian Rogers50b35e22012-10-04 10:09:15 -07002199 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002200 JDWP::JdwpError error;
2201 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002202 if (error != JDWP::ERR_NONE) {
2203 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2204 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002205 return JDWP::ERR_NONE;
2206 }
2207 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002208 }
2209
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002210 if (IsSuspendedForDebugger(soa, thread)) {
2211 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002212 }
2213
Jeff Hao920af3e2013-08-28 15:46:38 -07002214 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002215 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002216}
2217
Elliott Hughes221229c2013-01-08 18:17:50 -08002218JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002219 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07002220 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002221 JDWP::JdwpError error;
2222 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002223 if (error != JDWP::ERR_NONE) {
2224 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002225 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002226 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002227 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002228 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002229}
2230
Elliott Hughesf9501702013-01-11 11:22:27 -08002231JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2232 ScopedObjectAccess soa(Thread::Current());
2233 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002234 JDWP::JdwpError error;
2235 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002236 if (error != JDWP::ERR_NONE) {
2237 return error;
2238 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002239 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002240 return JDWP::ERR_NONE;
2241}
2242
Sebastien Hertz070f7322014-09-09 12:08:49 +02002243static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa,
2244 mirror::Object* desired_thread_group, mirror::Object* peer)
2245 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2246 // Do we want threads from all thread groups?
2247 if (desired_thread_group == nullptr) {
2248 return true;
2249 }
2250 mirror::ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
2251 DCHECK(thread_group_field != nullptr);
2252 mirror::Object* group = thread_group_field->GetObject(peer);
2253 return (group == desired_thread_group);
2254}
2255
Sebastien Hertza06430c2014-09-15 19:21:30 +02002256void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002257 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz070f7322014-09-09 12:08:49 +02002258 std::list<Thread*> all_threads_list;
2259 {
2260 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2261 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2262 }
2263 for (Thread* t : all_threads_list) {
2264 if (t == Dbg::GetDebugThread()) {
2265 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2266 // query all threads, so it's easier if we just don't tell them about this thread.
2267 continue;
2268 }
2269 if (t->IsStillStarting()) {
2270 // This thread is being started (and has been registered in the thread list). However, it is
2271 // not completely started yet so we must ignore it.
2272 continue;
2273 }
2274 mirror::Object* peer = t->GetPeer();
2275 if (peer == nullptr) {
2276 // peer might be NULL if the thread is still starting up. We can't tell the debugger about
2277 // this thread yet.
2278 // TODO: if we identified threads to the debugger by their Thread*
2279 // rather than their peer's mirror::Object*, we could fix this.
2280 // Doing so might help us report ZOMBIE threads too.
2281 continue;
2282 }
2283 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
2284 thread_ids->push_back(gRegistry->Add(peer));
2285 }
2286 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002287}
Elliott Hughesa2155262011-11-16 16:26:58 -08002288
Ian Rogersc0542af2014-09-03 16:16:56 -07002289static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002290 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07002291 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogersc0542af2014-09-03 16:16:56 -07002292 : StackVisitor(thread, nullptr), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002293
Elliott Hughes64f574f2013-02-20 14:57:12 -08002294 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2295 // annotalysis.
2296 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002297 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002298 ++depth;
2299 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002300 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002301 }
2302 size_t depth;
2303 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002304
Ian Rogers7a22fa62013-01-23 12:16:16 -08002305 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002306 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002307 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002308}
2309
Ian Rogersc0542af2014-09-03 16:16:56 -07002310JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002311 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002312 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002313 JDWP::JdwpError error;
2314 *result = 0;
2315 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002316 if (error != JDWP::ERR_NONE) {
2317 return error;
2318 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002319 if (!IsSuspendedForDebugger(soa, thread)) {
2320 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2321 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002322 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002323 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002324}
2325
Ian Rogers306057f2012-11-26 12:45:53 -08002326JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2327 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002328 class GetFrameVisitor : public StackVisitor {
2329 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08002330 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002331 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07002332 : StackVisitor(thread, nullptr), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002333 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
2334 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002335 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002336
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002337 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2338 // annotalysis.
2339 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002340 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002341 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002342 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002343 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002344 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002345 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002346 if (depth_ >= start_frame_) {
2347 JDWP::FrameId frame_id(GetFrameId());
2348 JDWP::JdwpLocation location;
Sebastien Hertz6995c602014-09-09 12:10:13 +02002349 SetJdwpLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002350 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002351 expandBufAdd8BE(buf_, frame_id);
2352 expandBufAddLocation(buf_, location);
2353 }
2354 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002355 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002356 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002357
2358 private:
2359 size_t depth_;
2360 const size_t start_frame_;
2361 const size_t frame_count_;
2362 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002363 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002364
2365 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002366 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002367 JDWP::JdwpError error;
2368 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002369 if (error != JDWP::ERR_NONE) {
2370 return error;
2371 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002372 if (!IsSuspendedForDebugger(soa, thread)) {
2373 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2374 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002375 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002376 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002377 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002378}
2379
2380JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002381 return GetThreadId(Thread::Current());
2382}
2383
2384JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002385 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002386 return gRegistry->Add(thread->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002387}
2388
Elliott Hughes475fc232011-10-25 15:00:35 -07002389void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002390 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002391}
2392
2393void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07002394 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002395}
2396
Elliott Hughes221229c2013-01-08 18:17:50 -08002397JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002398 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002399 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002400 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002401 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002402 JDWP::JdwpError error;
2403 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002404 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002405 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002406 return JDWP::ERR_THREAD_NOT_ALIVE;
2407 }
Ian Rogersf3d874c2014-07-17 18:52:42 -07002408 // Suspend thread to build stack trace. Take suspend thread lock to avoid races with threads
2409 // trying to suspend this one.
2410 MutexLock mu(self, *Locks::thread_list_suspend_thread_lock_);
Elliott Hughesf327e072013-01-09 16:01:26 -08002411 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002412 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2413 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2414 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002415 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002416 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002417 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002418 return JDWP::ERR_INTERNAL;
2419 } else {
2420 return JDWP::ERR_THREAD_NOT_ALIVE;
2421 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002422}
2423
Elliott Hughes221229c2013-01-08 18:17:50 -08002424void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002425 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002426 JDWP::JdwpError error;
2427 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2428 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002429 Thread* thread;
2430 {
2431 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2432 thread = Thread::FromManagedThread(soa, peer);
2433 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002434 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002435 LOG(WARNING) << "No such thread for resume: " << peer;
2436 return;
2437 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002438 bool needs_resume;
2439 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002440 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002441 needs_resume = thread->GetSuspendCount() > 0;
2442 }
2443 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002444 Runtime::Current()->GetThreadList()->Resume(thread, true);
2445 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002446}
2447
2448void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002449 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002450}
2451
Ian Rogers0399dde2012-06-06 17:09:28 -07002452struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002453 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002454 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07002455 : StackVisitor(thread, context), this_object(nullptr), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002456
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002457 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2458 // annotalysis.
2459 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002460 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002461 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002462 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002463 this_object = GetThisObject();
2464 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002465 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002466 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002467
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002468 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002469 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002470};
2471
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002472JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2473 JDWP::ObjectId* result) {
2474 ScopedObjectAccessUnchecked soa(Thread::Current());
2475 Thread* thread;
2476 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002477 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002478 JDWP::JdwpError error;
2479 thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002480 if (error != JDWP::ERR_NONE) {
2481 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002482 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002483 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002484 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2485 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002486 }
Ian Rogers700a4022014-05-19 16:49:03 -07002487 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002488 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002489 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002490 *result = gRegistry->Add(visitor.this_object);
2491 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002492}
2493
Sebastien Hertz8009f392014-09-01 17:07:11 +02002494// Walks the stack until we find the frame with the given FrameId.
2495class FindFrameVisitor FINAL : public StackVisitor {
2496 public:
2497 FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
2498 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2499 : StackVisitor(thread, context), frame_id_(frame_id), error_(JDWP::ERR_INVALID_FRAMEID) {}
Ian Rogersca190662012-06-26 15:45:57 -07002500
Sebastien Hertz8009f392014-09-01 17:07:11 +02002501 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2502 // annotalysis.
2503 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
2504 if (GetFrameId() != frame_id_) {
2505 return true; // Not our frame, carry on.
Ian Rogers0399dde2012-06-06 17:09:28 -07002506 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002507 mirror::ArtMethod* m = GetMethod();
2508 if (m->IsNative()) {
2509 // We can't read/write local value from/into native method.
2510 error_ = JDWP::ERR_OPAQUE_FRAME;
2511 } else {
2512 // We found our frame.
2513 error_ = JDWP::ERR_NONE;
2514 }
2515 return false;
2516 }
2517
2518 JDWP::JdwpError GetError() const {
2519 return error_;
2520 }
2521
2522 private:
2523 const JDWP::FrameId frame_id_;
2524 JDWP::JdwpError error_;
2525};
2526
2527JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2528 JDWP::ObjectId thread_id = request->ReadThreadId();
2529 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002530
2531 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002532 Thread* thread;
2533 {
2534 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2535 JDWP::JdwpError error;
2536 thread = DecodeThread(soa, thread_id, &error);
2537 if (error != JDWP::ERR_NONE) {
2538 return error;
2539 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002540 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002541 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002542 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002543 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002544 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002545 if (visitor.GetError() != JDWP::ERR_NONE) {
2546 return visitor.GetError();
2547 }
2548
2549 // Read the values from visitor's context.
2550 int32_t slot_count = request->ReadSigned32("slot count");
2551 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2552 for (int32_t i = 0; i < slot_count; ++i) {
2553 uint32_t slot = request->ReadUnsigned32("slot");
2554 JDWP::JdwpTag reqSigByte = request->ReadTag();
2555
2556 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
2557
2558 size_t width = Dbg::GetTagWidth(reqSigByte);
2559 uint8_t* ptr = expandBufAddSpace(pReply, width+1);
2560 JDWP::JdwpError error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width);
2561 if (error != JDWP::ERR_NONE) {
2562 return error;
2563 }
2564 }
2565 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002566}
2567
Sebastien Hertz8009f392014-09-01 17:07:11 +02002568JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2569 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
2570 mirror::ArtMethod* m = visitor.GetMethod();
2571 uint16_t reg = DemangleSlot(slot, m);
2572 // TODO: check that the tag is compatible with the actual type of the slot!
2573 // TODO: check slot is valid for this method or return INVALID_SLOT error.
2574 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
2575 switch (tag) {
2576 case JDWP::JT_BOOLEAN: {
2577 CHECK_EQ(width, 1U);
2578 uint32_t intVal;
2579 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2580 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2581 JDWP::Set1(buf + 1, intVal != 0);
2582 } else {
2583 VLOG(jdwp) << "failed to get boolean local " << reg;
2584 return kFailureErrorCode;
Ian Rogers0399dde2012-06-06 17:09:28 -07002585 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002586 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002587 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002588 case JDWP::JT_BYTE: {
2589 CHECK_EQ(width, 1U);
2590 uint32_t intVal;
2591 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2592 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2593 JDWP::Set1(buf + 1, intVal);
2594 } else {
2595 VLOG(jdwp) << "failed to get byte local " << reg;
2596 return kFailureErrorCode;
2597 }
2598 break;
2599 }
2600 case JDWP::JT_SHORT:
2601 case JDWP::JT_CHAR: {
2602 CHECK_EQ(width, 2U);
2603 uint32_t intVal;
2604 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2605 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2606 JDWP::Set2BE(buf + 1, intVal);
2607 } else {
2608 VLOG(jdwp) << "failed to get short/char local " << reg;
2609 return kFailureErrorCode;
2610 }
2611 break;
2612 }
2613 case JDWP::JT_INT: {
2614 CHECK_EQ(width, 4U);
2615 uint32_t intVal;
2616 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2617 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2618 JDWP::Set4BE(buf + 1, intVal);
2619 } else {
2620 VLOG(jdwp) << "failed to get int local " << reg;
2621 return kFailureErrorCode;
2622 }
2623 break;
2624 }
2625 case JDWP::JT_FLOAT: {
2626 CHECK_EQ(width, 4U);
2627 uint32_t intVal;
2628 if (visitor.GetVReg(m, reg, kFloatVReg, &intVal)) {
2629 VLOG(jdwp) << "get float local " << reg << " = " << intVal;
2630 JDWP::Set4BE(buf + 1, intVal);
2631 } else {
2632 VLOG(jdwp) << "failed to get float local " << reg;
2633 return kFailureErrorCode;
2634 }
2635 break;
2636 }
2637 case JDWP::JT_ARRAY:
2638 case JDWP::JT_CLASS_LOADER:
2639 case JDWP::JT_CLASS_OBJECT:
2640 case JDWP::JT_OBJECT:
2641 case JDWP::JT_STRING:
2642 case JDWP::JT_THREAD:
2643 case JDWP::JT_THREAD_GROUP: {
2644 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2645 uint32_t intVal;
2646 if (visitor.GetVReg(m, reg, kReferenceVReg, &intVal)) {
2647 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2648 VLOG(jdwp) << "get " << tag << " object local " << reg << " = " << o;
2649 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2650 LOG(FATAL) << "Register " << reg << " expected to hold " << tag << " object: " << o;
2651 }
2652 tag = TagFromObject(soa, o);
2653 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
2654 } else {
2655 VLOG(jdwp) << "failed to get " << tag << " object local " << reg;
2656 return kFailureErrorCode;
2657 }
2658 break;
2659 }
2660 case JDWP::JT_DOUBLE: {
2661 CHECK_EQ(width, 8U);
2662 uint64_t longVal;
2663 if (visitor.GetVRegPair(m, reg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2664 VLOG(jdwp) << "get double local " << reg << " = " << longVal;
2665 JDWP::Set8BE(buf + 1, longVal);
2666 } else {
2667 VLOG(jdwp) << "failed to get double local " << reg;
2668 return kFailureErrorCode;
2669 }
2670 break;
2671 }
2672 case JDWP::JT_LONG: {
2673 CHECK_EQ(width, 8U);
2674 uint64_t longVal;
2675 if (visitor.GetVRegPair(m, reg, kLongLoVReg, kLongHiVReg, &longVal)) {
2676 VLOG(jdwp) << "get long local " << reg << " = " << longVal;
2677 JDWP::Set8BE(buf + 1, longVal);
2678 } else {
2679 VLOG(jdwp) << "failed to get long local " << reg;
2680 return kFailureErrorCode;
2681 }
2682 break;
2683 }
2684 default:
2685 LOG(FATAL) << "Unknown tag " << tag;
2686 break;
2687 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002688
Sebastien Hertz8009f392014-09-01 17:07:11 +02002689 // Prepend tag, which may have been updated.
2690 JDWP::Set1(buf, tag);
2691 return JDWP::ERR_NONE;
2692}
2693
2694JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2695 JDWP::ObjectId thread_id = request->ReadThreadId();
2696 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002697
2698 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002699 Thread* thread;
2700 {
2701 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2702 JDWP::JdwpError error;
2703 thread = DecodeThread(soa, thread_id, &error);
2704 if (error != JDWP::ERR_NONE) {
2705 return error;
2706 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002707 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002708 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002709 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002710 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002711 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002712 if (visitor.GetError() != JDWP::ERR_NONE) {
2713 return visitor.GetError();
2714 }
2715
2716 // Writes the values into visitor's context.
2717 int32_t slot_count = request->ReadSigned32("slot count");
2718 for (int32_t i = 0; i < slot_count; ++i) {
2719 uint32_t slot = request->ReadUnsigned32("slot");
2720 JDWP::JdwpTag sigByte = request->ReadTag();
2721 size_t width = Dbg::GetTagWidth(sigByte);
2722 uint64_t value = request->ReadValue(width);
2723
2724 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
2725 JDWP::JdwpError error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width);
2726 if (error != JDWP::ERR_NONE) {
2727 return error;
2728 }
2729 }
2730 return JDWP::ERR_NONE;
2731}
2732
2733JDWP::JdwpError Dbg::SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
2734 uint64_t value, size_t width) {
2735 mirror::ArtMethod* m = visitor.GetMethod();
2736 uint16_t reg = DemangleSlot(slot, m);
2737 // TODO: check that the tag is compatible with the actual type of the slot!
2738 // TODO: check slot is valid for this method or return INVALID_SLOT error.
2739 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
2740 switch (tag) {
2741 case JDWP::JT_BOOLEAN:
2742 case JDWP::JT_BYTE:
2743 CHECK_EQ(width, 1U);
2744 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2745 VLOG(jdwp) << "failed to set boolean/byte local " << reg << " = "
2746 << static_cast<uint32_t>(value);
2747 return kFailureErrorCode;
2748 }
2749 break;
2750 case JDWP::JT_SHORT:
2751 case JDWP::JT_CHAR:
2752 CHECK_EQ(width, 2U);
2753 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2754 VLOG(jdwp) << "failed to set short/char local " << reg << " = "
2755 << static_cast<uint32_t>(value);
2756 return kFailureErrorCode;
2757 }
2758 break;
2759 case JDWP::JT_INT:
2760 CHECK_EQ(width, 4U);
2761 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2762 VLOG(jdwp) << "failed to set int local " << reg << " = "
2763 << static_cast<uint32_t>(value);
2764 return kFailureErrorCode;
2765 }
2766 break;
2767 case JDWP::JT_FLOAT:
2768 CHECK_EQ(width, 4U);
2769 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kFloatVReg)) {
2770 VLOG(jdwp) << "failed to set float local " << reg << " = "
2771 << static_cast<uint32_t>(value);
2772 return kFailureErrorCode;
2773 }
2774 break;
2775 case JDWP::JT_ARRAY:
2776 case JDWP::JT_CLASS_LOADER:
2777 case JDWP::JT_CLASS_OBJECT:
2778 case JDWP::JT_OBJECT:
2779 case JDWP::JT_STRING:
2780 case JDWP::JT_THREAD:
2781 case JDWP::JT_THREAD_GROUP: {
2782 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2783 JDWP::JdwpError error;
2784 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value),
2785 &error);
2786 if (error != JDWP::ERR_NONE) {
2787 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2788 return JDWP::ERR_INVALID_OBJECT;
2789 } else if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2790 kReferenceVReg)) {
2791 VLOG(jdwp) << "failed to set " << tag << " object local " << reg << " = " << o;
2792 return kFailureErrorCode;
2793 }
2794 break;
2795 }
2796 case JDWP::JT_DOUBLE: {
2797 CHECK_EQ(width, 8U);
2798 if (!visitor.SetVRegPair(m, reg, value, kDoubleLoVReg, kDoubleHiVReg)) {
2799 VLOG(jdwp) << "failed to set double local " << reg << " = " << value;
2800 return kFailureErrorCode;
2801 }
2802 break;
2803 }
2804 case JDWP::JT_LONG: {
2805 CHECK_EQ(width, 8U);
2806 if (!visitor.SetVRegPair(m, reg, value, kLongLoVReg, kLongHiVReg)) {
2807 VLOG(jdwp) << "failed to set double local " << reg << " = " << value;
2808 return kFailureErrorCode;
2809 }
2810 break;
2811 }
2812 default:
2813 LOG(FATAL) << "Unknown tag " << tag;
2814 break;
2815 }
2816 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002817}
2818
Sebastien Hertz6995c602014-09-09 12:10:13 +02002819static void SetEventLocation(JDWP::EventLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
2820 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2821 DCHECK(location != nullptr);
2822 if (m == nullptr) {
2823 memset(location, 0, sizeof(*location));
2824 } else {
2825 location->method = m;
2826 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002827 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002828}
2829
Ian Rogersef7d42f2014-01-06 12:55:46 -08002830void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002831 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002832 if (!IsDebuggerActive()) {
2833 return;
2834 }
2835 DCHECK(m != nullptr);
2836 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002837 JDWP::EventLocation location;
2838 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002839
Sebastien Hertz6995c602014-09-09 12:10:13 +02002840 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002841}
2842
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002843void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
2844 mirror::Object* this_object, mirror::ArtField* f) {
2845 if (!IsDebuggerActive()) {
2846 return;
2847 }
2848 DCHECK(m != nullptr);
2849 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002850 JDWP::EventLocation location;
2851 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002852
Sebastien Hertz6995c602014-09-09 12:10:13 +02002853 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002854}
2855
2856void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
2857 mirror::Object* this_object, mirror::ArtField* f,
2858 const JValue* field_value) {
2859 if (!IsDebuggerActive()) {
2860 return;
2861 }
2862 DCHECK(m != nullptr);
2863 DCHECK(f != nullptr);
2864 DCHECK(field_value != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002865 JDWP::EventLocation location;
2866 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002867
Sebastien Hertz6995c602014-09-09 12:10:13 +02002868 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002869}
2870
2871void Dbg::PostException(const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002872 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002873 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002874 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002875 return;
2876 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002877 JDWP::EventLocation exception_throw_location;
2878 SetEventLocation(&exception_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
2879 JDWP::EventLocation exception_catch_location;
2880 SetEventLocation(&exception_catch_location, catch_method, catch_dex_pc);
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002881
Sebastien Hertz6995c602014-09-09 12:10:13 +02002882 gJdwpState->PostException(&exception_throw_location, exception_object, &exception_catch_location,
2883 throw_location.GetThis());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002884}
2885
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002886void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002887 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002888 return;
2889 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002890 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002891}
2892
Ian Rogers62d6c772013-02-27 08:32:07 -08002893void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002894 mirror::ArtMethod* m, uint32_t dex_pc,
2895 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002896 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002897 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002898 }
2899
Elliott Hughes86964332012-02-15 19:37:42 -08002900 if (IsBreakpoint(m, dex_pc)) {
2901 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002902 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002903
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002904 // If the debugger is single-stepping one of our threads, check to
2905 // see if we're that thread and we've reached a step point.
2906 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2907 DCHECK(single_step_control != nullptr);
2908 if (single_step_control->is_active) {
2909 CHECK(!m->IsNative());
2910 if (single_step_control->step_depth == JDWP::SD_INTO) {
2911 // Step into method calls. We break when the line number
2912 // or method pointer changes. If we're in SS_MIN mode, we
2913 // always stop.
2914 if (single_step_control->method != m) {
2915 event_flags |= kSingleStep;
2916 VLOG(jdwp) << "SS new method";
2917 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2918 event_flags |= kSingleStep;
2919 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002920 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002921 event_flags |= kSingleStep;
2922 VLOG(jdwp) << "SS new line";
2923 }
2924 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2925 // Step over method calls. We break when the line number is
2926 // different and the frame depth is <= the original frame
2927 // depth. (We can't just compare on the method, because we
2928 // might get unrolled past it by an exception, and it's tricky
2929 // to identify recursion.)
2930
2931 int stack_depth = GetStackDepth(thread);
2932
2933 if (stack_depth < single_step_control->stack_depth) {
2934 // Popped up one or more frames, always trigger.
2935 event_flags |= kSingleStep;
2936 VLOG(jdwp) << "SS method pop";
2937 } else if (stack_depth == single_step_control->stack_depth) {
2938 // Same depth, see if we moved.
2939 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002940 event_flags |= kSingleStep;
2941 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002942 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002943 event_flags |= kSingleStep;
2944 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002945 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002946 }
2947 } else {
2948 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2949 // Return from the current method. We break when the frame
2950 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002951
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002952 // This differs from the "method exit" break in that it stops
2953 // with the PC at the next instruction in the returned-to
2954 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002955
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002956 int stack_depth = GetStackDepth(thread);
2957 if (stack_depth < single_step_control->stack_depth) {
2958 event_flags |= kSingleStep;
2959 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002960 }
2961 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002962 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002963
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002964 // If there's something interesting going on, see if it matches one
2965 // of the debugger filters.
2966 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002967 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002968 }
2969}
2970
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002971size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2972 switch (instrumentation_event) {
2973 case instrumentation::Instrumentation::kMethodEntered:
2974 return &method_enter_event_ref_count_;
2975 case instrumentation::Instrumentation::kMethodExited:
2976 return &method_exit_event_ref_count_;
2977 case instrumentation::Instrumentation::kDexPcMoved:
2978 return &dex_pc_change_event_ref_count_;
2979 case instrumentation::Instrumentation::kFieldRead:
2980 return &field_read_event_ref_count_;
2981 case instrumentation::Instrumentation::kFieldWritten:
2982 return &field_write_event_ref_count_;
2983 case instrumentation::Instrumentation::kExceptionCaught:
2984 return &exception_catch_event_ref_count_;
2985 default:
2986 return nullptr;
2987 }
2988}
2989
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002990// Process request while all mutator threads are suspended.
2991void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002992 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002993 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002994 case DeoptimizationRequest::kNothing:
2995 LOG(WARNING) << "Ignoring empty deoptimization request.";
2996 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002997 case DeoptimizationRequest::kRegisterForEvent:
2998 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002999 request.InstrumentationEvent());
3000 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
3001 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003002 break;
3003 case DeoptimizationRequest::kUnregisterForEvent:
3004 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003005 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003006 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003007 request.InstrumentationEvent());
3008 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003009 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003010 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003011 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003012 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003013 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003014 break;
3015 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003016 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003017 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003018 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003019 break;
3020 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003021 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
3022 instrumentation->Deoptimize(request.Method());
3023 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003024 break;
3025 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003026 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
3027 instrumentation->Undeoptimize(request.Method());
3028 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003029 break;
3030 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003031 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003032 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003033 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003034}
3035
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003036void Dbg::DelayFullUndeoptimization() {
Brian Carlstrom306db812014-09-05 13:01:41 -07003037 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003038 ++delayed_full_undeoptimization_count_;
3039 DCHECK_LE(delayed_full_undeoptimization_count_, full_deoptimization_event_count_);
3040}
3041
3042void Dbg::ProcessDelayedFullUndeoptimizations() {
3043 // TODO: avoid taking the lock twice (once here and once in ManageDeoptimization).
3044 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003045 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003046 while (delayed_full_undeoptimization_count_ > 0) {
3047 DeoptimizationRequest req;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003048 req.SetKind(DeoptimizationRequest::kFullUndeoptimization);
3049 req.SetMethod(nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003050 RequestDeoptimizationLocked(req);
3051 --delayed_full_undeoptimization_count_;
3052 }
3053 }
3054 ManageDeoptimization();
3055}
3056
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003057void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003058 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003059 // Nothing to do.
3060 return;
3061 }
Brian Carlstrom306db812014-09-05 13:01:41 -07003062 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003063 RequestDeoptimizationLocked(req);
3064}
3065
3066void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003067 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003068 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003069 DCHECK_NE(req.InstrumentationEvent(), 0u);
3070 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003071 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003072 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003073 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003074 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003075 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003076 deoptimization_requests_.push_back(req);
3077 }
3078 *counter = *counter + 1;
3079 break;
3080 }
3081 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003082 DCHECK_NE(req.InstrumentationEvent(), 0u);
3083 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003084 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003085 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003086 *counter = *counter - 1;
3087 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003088 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003089 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003090 deoptimization_requests_.push_back(req);
3091 }
3092 break;
3093 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003094 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003095 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003096 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003097 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3098 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003099 deoptimization_requests_.push_back(req);
3100 }
3101 ++full_deoptimization_event_count_;
3102 break;
3103 }
3104 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003105 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003106 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003107 --full_deoptimization_event_count_;
3108 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003109 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3110 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003111 deoptimization_requests_.push_back(req);
3112 }
3113 break;
3114 }
3115 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003116 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003117 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003118 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003119 deoptimization_requests_.push_back(req);
3120 break;
3121 }
3122 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003123 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003124 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003125 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003126 deoptimization_requests_.push_back(req);
3127 break;
3128 }
3129 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003130 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003131 break;
3132 }
3133 }
3134}
3135
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003136void Dbg::ManageDeoptimization() {
3137 Thread* const self = Thread::Current();
3138 {
3139 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003140 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003141 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003142 return;
3143 }
3144 }
3145 CHECK_EQ(self->GetState(), kRunnable);
3146 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3147 // We need to suspend mutator threads first.
3148 Runtime* const runtime = Runtime::Current();
3149 runtime->GetThreadList()->SuspendAll();
3150 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003151 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003152 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003153 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003154 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003155 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003156 ProcessDeoptimizationRequest(request);
3157 }
3158 deoptimization_requests_.clear();
3159 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003160 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3161 runtime->GetThreadList()->ResumeAll();
3162 self->TransitionFromSuspendedToRunnable();
3163}
3164
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003165static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3166 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003167 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003168 if (code_item == nullptr) {
3169 // TODO We should not be asked to watch location in a native or abstract method so the code item
3170 // should never be null. We could just check we never encounter this case.
3171 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003172 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003173 // Note: method verifier may cause thread suspension.
3174 self->AssertThreadSuspensionIsAllowable();
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003175 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003176 mirror::Class* declaring_class = m->GetDeclaringClass();
3177 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3178 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003179 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Ian Rogers7b078e82014-09-10 14:44:24 -07003180 verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003181 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method,
Ian Rogers46960fe2014-05-23 10:43:43 -07003182 m->GetAccessFlags(), false, true, false);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003183 // Note: we don't need to verify the method.
3184 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3185}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003186
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003187static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003188 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003189 for (Breakpoint& breakpoint : gBreakpoints) {
3190 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003191 return &breakpoint;
3192 }
3193 }
3194 return nullptr;
3195}
3196
3197// Sanity checks all existing breakpoints on the same method.
3198static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m, bool need_full_deoptimization)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003199 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003200 for (const Breakpoint& breakpoint : gBreakpoints) {
3201 CHECK_EQ(need_full_deoptimization, breakpoint.NeedFullDeoptimization());
3202 }
3203 if (need_full_deoptimization) {
3204 // We should have deoptimized everything but not "selectively" deoptimized this method.
3205 CHECK(Runtime::Current()->GetInstrumentation()->AreAllMethodsDeoptimized());
3206 CHECK(!Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3207 } else {
3208 // We should have "selectively" deoptimized this method.
3209 // Note: while we have not deoptimized everything for this method, we may have done it for
3210 // another event.
3211 CHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003212 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003213}
3214
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003215// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3216// request if we need to deoptimize.
3217void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3218 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003219 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003220 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003221
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003222 const Breakpoint* existing_breakpoint;
3223 {
3224 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3225 existing_breakpoint = FindFirstBreakpointForMethod(m);
3226 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003227 bool need_full_deoptimization;
3228 if (existing_breakpoint == nullptr) {
3229 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3230 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003231 // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension.
3232 // Therefore we must not hold any lock when we call it.
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003233 need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3234 if (need_full_deoptimization) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003235 req->SetKind(DeoptimizationRequest::kFullDeoptimization);
3236 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003237 } else {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003238 req->SetKind(DeoptimizationRequest::kSelectiveDeoptimization);
3239 req->SetMethod(m);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003240 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003241 } else {
3242 // There is at least one breakpoint for this method: we don't need to deoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003243 req->SetKind(DeoptimizationRequest::kNothing);
3244 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003245
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003246 need_full_deoptimization = existing_breakpoint->NeedFullDeoptimization();
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003247 if (kIsDebugBuild) {
3248 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3249 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
3250 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003251 }
3252
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003253 {
3254 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
3255 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, need_full_deoptimization));
3256 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3257 << gBreakpoints[gBreakpoints.size() - 1];
3258 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003259}
3260
3261// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3262// request if we need to undeoptimize.
3263void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003264 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003265 mirror::ArtMethod* m = FromMethodId(location->method_id);
3266 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003267 bool need_full_deoptimization = false;
3268 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003269 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003270 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003271 need_full_deoptimization = gBreakpoints[i].NeedFullDeoptimization();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003272 DCHECK_NE(need_full_deoptimization, Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3273 gBreakpoints.erase(gBreakpoints.begin() + i);
3274 break;
3275 }
3276 }
3277 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3278 if (existing_breakpoint == nullptr) {
3279 // There is no more breakpoint on this method: we need to undeoptimize.
3280 if (need_full_deoptimization) {
3281 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003282 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3283 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003284 } else {
3285 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003286 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3287 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003288 }
3289 } else {
3290 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003291 req->SetKind(DeoptimizationRequest::kNothing);
3292 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003293 if (kIsDebugBuild) {
3294 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
3295 }
Elliott Hughes86964332012-02-15 19:37:42 -08003296 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003297}
3298
Jeff Hao449db332013-04-12 18:30:52 -07003299// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3300// cause suspension if the thread is the current thread.
3301class ScopedThreadSuspension {
3302 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003303 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003304 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003305 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003306 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003307 error_(JDWP::ERR_NONE),
3308 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003309 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003310 ScopedObjectAccessUnchecked soa(self);
3311 {
3312 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003313 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003314 }
3315 if (error_ == JDWP::ERR_NONE) {
3316 if (thread_ == soa.Self()) {
3317 self_suspend_ = true;
3318 } else {
3319 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Sebastien Hertz6995c602014-09-09 12:10:13 +02003320 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003321 bool timed_out;
Ian Rogersf3d874c2014-07-17 18:52:42 -07003322 Thread* suspended_thread;
3323 {
3324 // Take suspend thread lock to avoid races with threads trying to suspend this one.
3325 MutexLock mu(soa.Self(), *Locks::thread_list_suspend_thread_lock_);
Brian Carlstromba32de42014-08-27 23:43:46 -07003326 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3327 suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true, &timed_out);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003328 }
Jeff Hao449db332013-04-12 18:30:52 -07003329 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003330 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003331 // Thread terminated from under us while suspending.
3332 error_ = JDWP::ERR_INVALID_THREAD;
3333 } else {
3334 CHECK_EQ(suspended_thread, thread_);
3335 other_suspend_ = true;
3336 }
3337 }
3338 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003339 }
Elliott Hughes86964332012-02-15 19:37:42 -08003340
Jeff Hao449db332013-04-12 18:30:52 -07003341 Thread* GetThread() const {
3342 return thread_;
3343 }
3344
3345 JDWP::JdwpError GetError() const {
3346 return error_;
3347 }
3348
3349 ~ScopedThreadSuspension() {
3350 if (other_suspend_) {
3351 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3352 }
3353 }
3354
3355 private:
3356 Thread* thread_;
3357 JDWP::JdwpError error_;
3358 bool self_suspend_;
3359 bool other_suspend_;
3360};
3361
3362JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3363 JDWP::JdwpStepDepth step_depth) {
3364 Thread* self = Thread::Current();
3365 ScopedThreadSuspension sts(self, thread_id);
3366 if (sts.GetError() != JDWP::ERR_NONE) {
3367 return sts.GetError();
3368 }
3369
Elliott Hughes2435a572012-02-17 16:07:41 -08003370 //
3371 // Work out what Method* we're in, the current line number, and how deep the stack currently
3372 // is for step-out.
3373 //
3374
Ian Rogers0399dde2012-06-06 17:09:28 -07003375 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003376 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
3377 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003378 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07003379 : StackVisitor(thread, nullptr), single_step_control_(single_step_control),
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003380 line_number_(line_number) {
3381 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
Ian Rogersc0542af2014-09-03 16:16:56 -07003382 single_step_control_->method = nullptr;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003383 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08003384 }
Ian Rogersca190662012-06-26 15:45:57 -07003385
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003386 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3387 // annotalysis.
3388 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003389 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003390 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003391 ++single_step_control_->stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -07003392 if (single_step_control_->method == nullptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003393 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003394 single_step_control_->method = m;
3395 *line_number_ = -1;
Ian Rogersc0542af2014-09-03 16:16:56 -07003396 if (dex_cache != nullptr) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003397 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003398 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003399 }
Elliott Hughes86964332012-02-15 19:37:42 -08003400 }
3401 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003402 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003403 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003404
3405 SingleStepControl* const single_step_control_;
3406 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08003407 };
Jeff Hao449db332013-04-12 18:30:52 -07003408
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003409 Thread* const thread = sts.GetThread();
3410 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
3411 DCHECK(single_step_control != nullptr);
3412 int32_t line_number = -1;
3413 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07003414 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003415
Elliott Hughes2435a572012-02-17 16:07:41 -08003416 //
3417 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
3418 //
3419
3420 struct DebugCallbackContext {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003421 explicit DebugCallbackContext(SingleStepControl* single_step_control, int32_t line_number,
3422 const DexFile::CodeItem* code_item)
3423 : single_step_control_(single_step_control), line_number_(line_number), code_item_(code_item),
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003424 last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003425 }
3426
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003427 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003428 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003429 if (static_cast<int32_t>(line_number) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003430 if (!context->last_pc_valid) {
3431 // Everything from this address until the next line change is ours.
3432 context->last_pc = address;
3433 context->last_pc_valid = true;
3434 }
3435 // Otherwise, if we're already in a valid range for this line,
3436 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003437 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003438 // Add everything from the last entry up until here to the set
3439 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003440 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003441 }
3442 context->last_pc_valid = false;
3443 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003444 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003445 }
3446
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003447 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003448 // If the line number was the last in the position table...
3449 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003450 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003451 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003452 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003453 }
3454 }
3455 }
3456
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003457 SingleStepControl* const single_step_control_;
3458 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003459 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003460 bool last_pc_valid;
3461 uint32_t last_pc;
3462 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003463 single_step_control->dex_pcs.clear();
Ian Rogersef7d42f2014-01-06 12:55:46 -08003464 mirror::ArtMethod* m = single_step_control->method;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003465 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003466 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003467 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003468 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07003469 DebugCallbackContext::Callback, nullptr, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003470 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003471
3472 //
3473 // Everything else...
3474 //
3475
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003476 single_step_control->step_size = step_size;
3477 single_step_control->step_depth = step_depth;
3478 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08003479
Elliott Hughes2435a572012-02-17 16:07:41 -08003480 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003481 VLOG(jdwp) << "Single-step thread: " << *thread;
3482 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
3483 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
3484 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
3485 VLOG(jdwp) << "Single-step current line: " << line_number;
3486 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08003487 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003488 for (uint32_t dex_pc : single_step_control->dex_pcs) {
3489 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003490 }
3491 }
3492
3493 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003494}
3495
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003496void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3497 ScopedObjectAccessUnchecked soa(Thread::Current());
3498 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003499 JDWP::JdwpError error;
3500 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003501 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003502 SingleStepControl* single_step_control = thread->GetSingleStepControl();
3503 DCHECK(single_step_control != nullptr);
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003504 single_step_control->Clear();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003505 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003506}
3507
Elliott Hughes45651fd2012-02-21 15:48:20 -08003508static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3509 switch (tag) {
3510 default:
3511 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
Ian Rogersfc787ec2014-10-09 21:56:44 -07003512 UNREACHABLE();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003513
3514 // Primitives.
3515 case JDWP::JT_BYTE: return 'B';
3516 case JDWP::JT_CHAR: return 'C';
3517 case JDWP::JT_FLOAT: return 'F';
3518 case JDWP::JT_DOUBLE: return 'D';
3519 case JDWP::JT_INT: return 'I';
3520 case JDWP::JT_LONG: return 'J';
3521 case JDWP::JT_SHORT: return 'S';
3522 case JDWP::JT_VOID: return 'V';
3523 case JDWP::JT_BOOLEAN: return 'Z';
3524
3525 // Reference types.
3526 case JDWP::JT_ARRAY:
3527 case JDWP::JT_OBJECT:
3528 case JDWP::JT_STRING:
3529 case JDWP::JT_THREAD:
3530 case JDWP::JT_THREAD_GROUP:
3531 case JDWP::JT_CLASS_LOADER:
3532 case JDWP::JT_CLASS_OBJECT:
3533 return 'L';
3534 }
3535}
3536
Elliott Hughes88d63092013-01-09 09:55:54 -08003537JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3538 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003539 uint32_t arg_count, uint64_t* arg_values,
3540 JDWP::JdwpTag* arg_types, uint32_t options,
3541 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3542 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003543 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3544
Ian Rogersc0542af2014-09-03 16:16:56 -07003545 Thread* targetThread = nullptr;
3546 DebugInvokeReq* req = nullptr;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003547 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003548 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003549 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003550 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003551 JDWP::JdwpError error;
3552 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003553 if (error != JDWP::ERR_NONE) {
3554 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3555 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003556 }
3557 req = targetThread->GetInvokeReq();
3558 if (!req->ready) {
3559 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3560 return JDWP::ERR_INVALID_THREAD;
3561 }
3562
3563 /*
3564 * We currently have a bug where we don't successfully resume the
3565 * target thread if the suspend count is too deep. We're expected to
3566 * require one "resume" for each "suspend", but when asked to execute
3567 * a method we have to resume fully and then re-suspend it back to the
3568 * same level. (The easiest way to cause this is to type "suspend"
3569 * multiple times in jdb.)
3570 *
3571 * It's unclear what this means when the event specifies "resume all"
3572 * and some threads are suspended more deeply than others. This is
3573 * a rare problem, so for now we just prevent it from hanging forever
3574 * by rejecting the method invocation request. Without this, we will
3575 * be stuck waiting on a suspended thread.
3576 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003577 int suspend_count;
3578 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003579 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003580 suspend_count = targetThread->GetSuspendCount();
3581 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003582 if (suspend_count > 1) {
3583 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003584 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003585 }
3586
Ian Rogersc0542af2014-09-03 16:16:56 -07003587 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3588 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003589 return JDWP::ERR_INVALID_OBJECT;
3590 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003591
Ian Rogersc0542af2014-09-03 16:16:56 -07003592 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id, &error);
3593 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003594 return JDWP::ERR_INVALID_OBJECT;
3595 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003596 // TODO: check that 'thread' is actually a java.lang.Thread!
3597
Ian Rogersc0542af2014-09-03 16:16:56 -07003598 mirror::Class* c = DecodeClass(class_id, &error);
3599 if (c == nullptr) {
3600 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003601 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003602
Brian Carlstromea46f952013-07-30 01:26:50 -07003603 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003604 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003605 return JDWP::ERR_INVALID_METHODID;
3606 }
3607 if (m->IsStatic()) {
3608 if (m->GetDeclaringClass() != c) {
3609 return JDWP::ERR_INVALID_METHODID;
3610 }
3611 } else {
3612 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3613 return JDWP::ERR_INVALID_METHODID;
3614 }
3615 }
3616
3617 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003618 uint32_t shorty_len = 0;
3619 const char* shorty = m->GetShorty(&shorty_len);
3620 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003621 return JDWP::ERR_ILLEGAL_ARGUMENT;
3622 }
Elliott Hughes09201632013-04-15 15:50:07 -07003623
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003624 {
3625 StackHandleScope<3> hs(soa.Self());
3626 MethodHelper mh(hs.NewHandle(m));
3627 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3628 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3629 const DexFile::TypeList* types = m->GetParameterTypeList();
3630 for (size_t i = 0; i < arg_count; ++i) {
3631 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003632 return JDWP::ERR_ILLEGAL_ARGUMENT;
3633 }
3634
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003635 if (shorty[i + 1] == 'L') {
3636 // Did we really get an argument of an appropriate reference type?
3637 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003638 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
3639 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003640 return JDWP::ERR_INVALID_OBJECT;
3641 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003642 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003643 return JDWP::ERR_ILLEGAL_ARGUMENT;
3644 }
3645
3646 // Turn the on-the-wire ObjectId into a jobject.
3647 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3648 v.l = gRegistry->GetJObject(arg_values[i]);
3649 }
Elliott Hughes09201632013-04-15 15:50:07 -07003650 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003651 // Update in case it moved.
3652 m = mh.GetMethod();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003653 }
3654
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003655 req->receiver = receiver;
3656 req->thread = thread;
3657 req->klass = c;
3658 req->method = m;
3659 req->arg_count = arg_count;
3660 req->arg_values = arg_values;
3661 req->options = options;
3662 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003663 }
3664
3665 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3666 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3667 // call, and it's unwise to hold it during WaitForSuspend.
3668
3669 {
3670 /*
3671 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003672 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003673 * run out of memory. It's also a good idea to change it before locking
3674 * the invokeReq mutex, although that should never be held for long.
3675 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003676 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003677
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003678 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003679 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003680 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003681
3682 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003683 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003684 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003685 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003686 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003687 thread_list->Resume(targetThread, true);
3688 }
3689
3690 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003691 while (req->invoke_needed) {
3692 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003693 }
3694 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003695 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003696
3697 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003698 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003699 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003700 }
3701
3702 /*
3703 * Suspend the threads. We waited for the target thread to suspend
3704 * itself, so all we need to do is suspend the others.
3705 *
3706 * The suspendAllThreads() call will double-suspend the event thread,
3707 * so we want to resume the target thread once to keep the books straight.
3708 */
3709 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003710 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003711 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003712 thread_list->SuspendAllForDebugger();
3713 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003714 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003715 thread_list->Resume(targetThread, true);
3716 }
3717
3718 // Copy the result.
3719 *pResultTag = req->result_tag;
3720 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003721 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003722 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003723 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003724 }
3725 *pExceptionId = req->exception;
3726 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003727}
3728
3729void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003730 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003731
Elliott Hughes81ff3182012-03-23 20:35:56 -07003732 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003733 // to preserve that across the method invocation.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003734 StackHandleScope<4> hs(soa.Self());
3735 auto old_throw_this_object = hs.NewHandle<mirror::Object>(nullptr);
3736 auto old_throw_method = hs.NewHandle<mirror::ArtMethod>(nullptr);
3737 auto old_exception = hs.NewHandle<mirror::Throwable>(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003738 uint32_t old_throw_dex_pc;
Sebastien Hertz9f102032014-05-23 08:59:42 +02003739 bool old_exception_report_flag;
Ian Rogers62d6c772013-02-27 08:32:07 -08003740 {
3741 ThrowLocation old_throw_location;
3742 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003743 old_throw_this_object.Assign(old_throw_location.GetThis());
3744 old_throw_method.Assign(old_throw_location.GetMethod());
3745 old_exception.Assign(old_exception_obj);
Ian Rogers62d6c772013-02-27 08:32:07 -08003746 old_throw_dex_pc = old_throw_location.GetDexPc();
Sebastien Hertz9f102032014-05-23 08:59:42 +02003747 old_exception_report_flag = soa.Self()->IsExceptionReportedToInstrumentation();
Ian Rogers62d6c772013-02-27 08:32:07 -08003748 soa.Self()->ClearException();
3749 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003750
3751 // Translate the method through the vtable, unless the debugger wants to suppress it.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003752 MutableHandle<mirror::ArtMethod> m(hs.NewHandle(pReq->method));
Ian Rogersc0542af2014-09-03 16:16:56 -07003753 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003754 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.Get());
3755 if (actual_method != m.Get()) {
3756 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get()) << " to " << PrettyMethod(actual_method);
3757 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003758 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003759 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003760 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003761 << " receiver=" << pReq->receiver
3762 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003763 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003764
3765 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3766
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003767 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.Get()),
Ian Rogers53b8b092014-03-13 23:45:53 -07003768 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003769
Ian Rogersc0542af2014-09-03 16:16:56 -07003770 mirror::Throwable* exception = soa.Self()->GetException(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003771 soa.Self()->ClearException();
3772 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003773 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003774 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003775 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3776 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003777 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003778 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3779 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003780 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003781 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003782 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003783 pReq->result_tag = new_tag;
3784 }
3785
3786 /*
3787 * Register the object. We don't actually need an ObjectId yet,
3788 * but we do need to be sure that the GC won't move or discard the
3789 * object when we switch out of RUNNING. The ObjectId conversion
3790 * will add the object to the "do not touch" list.
3791 *
3792 * We can't use the "tracked allocation" mechanism here because
3793 * the object is going to be handed off to a different thread.
3794 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003795 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003796 }
3797
Ian Rogersc0542af2014-09-03 16:16:56 -07003798 if (old_exception.Get() != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003799 ThrowLocation gc_safe_throw_location(old_throw_this_object.Get(), old_throw_method.Get(),
Ian Rogers62d6c772013-02-27 08:32:07 -08003800 old_throw_dex_pc);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003801 soa.Self()->SetException(gc_safe_throw_location, old_exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +02003802 soa.Self()->SetExceptionReportedToInstrumentation(old_exception_report_flag);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003803 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003804}
3805
Elliott Hughesd07986f2011-12-06 18:27:45 -08003806/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003807 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003808 * need to process each, accumulate the replies, and ship the whole thing
3809 * back.
3810 *
3811 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3812 * and includes the chunk type/length, followed by the data.
3813 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003814 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003815 * chunk. If this becomes inconvenient we will need to adapt.
3816 */
Ian Rogersc0542af2014-09-03 16:16:56 -07003817bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003818 Thread* self = Thread::Current();
3819 JNIEnv* env = self->GetJniEnv();
3820
Ian Rogersc0542af2014-09-03 16:16:56 -07003821 uint32_t type = request->ReadUnsigned32("type");
3822 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003823
3824 // Create a byte[] corresponding to 'request'.
Ian Rogersc0542af2014-09-03 16:16:56 -07003825 size_t request_length = request->size();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003826 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Ian Rogersc0542af2014-09-03 16:16:56 -07003827 if (dataArray.get() == nullptr) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003828 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003829 env->ExceptionClear();
3830 return false;
3831 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003832 env->SetByteArrayRegion(dataArray.get(), 0, request_length,
3833 reinterpret_cast<const jbyte*>(request->data()));
3834 request->Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003835
3836 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003837 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003838 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003839 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003840 return false;
3841 }
3842
3843 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003844 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3845 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003846 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003847 if (env->ExceptionCheck()) {
3848 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3849 env->ExceptionDescribe();
3850 env->ExceptionClear();
3851 return false;
3852 }
3853
Ian Rogersc0542af2014-09-03 16:16:56 -07003854 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003855 return false;
3856 }
3857
3858 /*
3859 * Pull the pieces out of the chunk. We copy the results into a
3860 * newly-allocated buffer that the caller can free. We don't want to
3861 * continue using the Chunk object because nothing has a reference to it.
3862 *
3863 * We could avoid this by returning type/data/offset/length and having
3864 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003865 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003866 * if we have responses for multiple chunks.
3867 *
3868 * So we're pretty much stuck with copying data around multiple times.
3869 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003870 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 -08003871 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003872 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003873 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003874
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003875 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 -07003876 if (length == 0 || replyData.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003877 return false;
3878 }
3879
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003880 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003881 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
Ian Rogersc0542af2014-09-03 16:16:56 -07003882 if (reply == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003883 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3884 return false;
3885 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003886 JDWP::Set4BE(reply + 0, type);
3887 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003888 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003889
3890 *pReplyBuf = reply;
3891 *pReplyLen = length + kChunkHdrLen;
3892
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003893 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003894 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003895}
3896
Elliott Hughesa2155262011-11-16 16:26:58 -08003897void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003898 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003899
3900 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003901 if (self->GetState() != kRunnable) {
3902 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3903 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003904 }
3905
3906 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003907 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003908 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3909 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3910 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003911 if (env->ExceptionCheck()) {
3912 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3913 env->ExceptionDescribe();
3914 env->ExceptionClear();
3915 }
3916}
3917
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003918void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003919 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003920}
3921
3922void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003923 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003924 gDdmThreadNotification = false;
3925}
3926
3927/*
Elliott Hughes82188472011-11-07 18:11:48 -08003928 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003929 *
3930 * Because we broadcast the full set of threads when the notifications are
3931 * first enabled, it's possible for "thread" to be actively executing.
3932 */
Elliott Hughes82188472011-11-07 18:11:48 -08003933void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003934 if (!gDdmThreadNotification) {
3935 return;
3936 }
3937
Elliott Hughes82188472011-11-07 18:11:48 -08003938 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003939 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003940 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003941 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003942 } else {
3943 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003944 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003945 StackHandleScope<1> hs(soa.Self());
3946 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
Ian Rogersc0542af2014-09-03 16:16:56 -07003947 size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0;
3948 const jchar* chars = (name.Get() != nullptr) ? name->GetCharArray()->GetData() : nullptr;
Elliott Hughes82188472011-11-07 18:11:48 -08003949
Elliott Hughes21f32d72011-11-09 17:44:13 -08003950 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003951 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003952 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003953 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3954 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003955 }
3956}
3957
Elliott Hughes47fce012011-10-25 18:37:19 -07003958void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003959 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003960 gDdmThreadNotification = enable;
3961 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003962 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3963 // see a suspension in progress and block until that ends. They then post their own start
3964 // notification.
3965 SuspendVM();
3966 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003967 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003968 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003969 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003970 threads = Runtime::Current()->GetThreadList()->GetList();
3971 }
3972 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003973 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003974 for (Thread* thread : threads) {
3975 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003976 }
3977 }
3978 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003979 }
3980}
3981
Elliott Hughesa2155262011-11-16 16:26:58 -08003982void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003983 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02003984 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003985 }
Elliott Hughes82188472011-11-07 18:11:48 -08003986 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003987}
3988
3989void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003990 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003991}
3992
3993void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003994 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003995}
3996
Elliott Hughes82188472011-11-07 18:11:48 -08003997void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Ian Rogersc0542af2014-09-03 16:16:56 -07003998 CHECK(buf != nullptr);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003999 iovec vec[1];
4000 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
4001 vec[0].iov_len = byte_count;
4002 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004003}
4004
Elliott Hughes21f32d72011-11-09 17:44:13 -08004005void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
4006 DdmSendChunk(type, bytes.size(), &bytes[0]);
4007}
4008
Brian Carlstromf5293522013-07-19 00:24:00 -07004009void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004010 if (gJdwpState == nullptr) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004011 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07004012 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08004013 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004014 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004015}
4016
Elliott Hughes767a1472011-10-26 18:49:02 -07004017int Dbg::DdmHandleHpifChunk(HpifWhen when) {
4018 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07004019 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07004020 return true;
4021 }
4022
4023 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4024 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4025 return false;
4026 }
4027
4028 gDdmHpifWhen = when;
4029 return true;
4030}
4031
4032bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4033 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4034 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4035 return false;
4036 }
4037
4038 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4039 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4040 return false;
4041 }
4042
4043 if (native) {
4044 gDdmNhsgWhen = when;
4045 gDdmNhsgWhat = what;
4046 } else {
4047 gDdmHpsgWhen = when;
4048 gDdmHpsgWhat = what;
4049 }
4050 return true;
4051}
4052
Elliott Hughes7162ad92011-10-27 14:08:42 -07004053void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4054 // If there's a one-shot 'when', reset it.
4055 if (reason == gDdmHpifWhen) {
4056 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4057 gDdmHpifWhen = HPIF_WHEN_NEVER;
4058 }
4059 }
4060
4061 /*
4062 * Chunk HPIF (client --> server)
4063 *
4064 * Heap Info. General information about the heap,
4065 * suitable for a summary display.
4066 *
4067 * [u4]: number of heaps
4068 *
4069 * For each heap:
4070 * [u4]: heap ID
4071 * [u8]: timestamp in ms since Unix epoch
4072 * [u1]: capture reason (same as 'when' value from server)
4073 * [u4]: max heap size in bytes (-Xmx)
4074 * [u4]: current heap size in bytes
4075 * [u4]: current number of bytes allocated
4076 * [u4]: current number of objects allocated
4077 */
4078 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004079 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004080 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004081 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004082 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004083 JDWP::Append8BE(bytes, MilliTime());
4084 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004085 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4086 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004087 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4088 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004089 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
4090 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07004091}
4092
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004093enum HpsgSolidity {
4094 SOLIDITY_FREE = 0,
4095 SOLIDITY_HARD = 1,
4096 SOLIDITY_SOFT = 2,
4097 SOLIDITY_WEAK = 3,
4098 SOLIDITY_PHANTOM = 4,
4099 SOLIDITY_FINALIZABLE = 5,
4100 SOLIDITY_SWEEP = 6,
4101};
4102
4103enum HpsgKind {
4104 KIND_OBJECT = 0,
4105 KIND_CLASS_OBJECT = 1,
4106 KIND_ARRAY_1 = 2,
4107 KIND_ARRAY_2 = 3,
4108 KIND_ARRAY_4 = 4,
4109 KIND_ARRAY_8 = 5,
4110 KIND_UNKNOWN = 6,
4111 KIND_NATIVE = 7,
4112};
4113
4114#define HPSG_PARTIAL (1<<7)
4115#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4116
Ian Rogers30fab402012-01-23 15:43:46 -08004117class HeapChunkContext {
4118 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004119 // Maximum chunk size. Obtain this from the formula:
4120 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4121 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004122 : buf_(16384 - 16),
4123 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004124 merge_(merge),
4125 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004126 Reset();
4127 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004128 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004129 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004130 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004131 }
4132 }
4133
4134 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004135 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004136 Flush();
4137 }
4138 }
4139
Mathieu Chartier36dab362014-07-30 14:59:56 -07004140 void SetChunkOverhead(size_t chunk_overhead) {
4141 chunk_overhead_ = chunk_overhead;
4142 }
4143
4144 void ResetStartOfNextChunk() {
4145 startOfNextMemoryChunk_ = nullptr;
4146 }
4147
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004148 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004149 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004150 return;
4151 }
4152
4153 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004154 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4155 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004156
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004157 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4158 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004159 // [u4]: length of piece, in allocation units
4160 // 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 -08004161 pieceLenField_ = p_;
4162 JDWP::Write4BE(&p_, 0x55555555);
4163 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004164 }
4165
Ian Rogersb726dcb2012-09-05 08:57:23 -07004166 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004167 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004168 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4169 CHECK(needHeader_);
4170 return;
4171 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004172 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004173 CHECK_LE(&buf_[0], pieceLenField_);
4174 CHECK_LE(pieceLenField_, p_);
4175 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004176
Ian Rogers30fab402012-01-23 15:43:46 -08004177 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004178 Reset();
4179 }
4180
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004181 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004182 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4183 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004184 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004185 }
4186
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004187 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004188 enum { ALLOCATION_UNIT_SIZE = 8 };
4189
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004190 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004191 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004192 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004193 totalAllocationUnits_ = 0;
4194 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004195 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004196 }
4197
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004198 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004199 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4200 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004201 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4202 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004203 if (used_bytes == 0) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004204 if (start == nullptr) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004205 // Reset for start of new heap.
Ian Rogersc0542af2014-09-03 16:16:56 -07004206 startOfNextMemoryChunk_ = nullptr;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004207 Flush();
4208 }
4209 // Only process in use memory so that free region information
4210 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08004211 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08004212 }
4213
Ian Rogers15bf2d32012-08-28 17:33:04 -07004214 /* If we're looking at the native heap, we'll just return
4215 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
4216 */
4217 bool native = type_ == CHUNK_TYPE("NHSG");
4218
Mathieu Chartier36dab362014-07-30 14:59:56 -07004219 // TODO: I'm not sure using start of next chunk works well with multiple spaces. We shouldn't
4220 // count gaps inbetween spaces as free memory.
Ian Rogersc0542af2014-09-03 16:16:56 -07004221 if (startOfNextMemoryChunk_ != nullptr) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004222 // Transmit any pending free memory. Native free memory of
4223 // over kMaxFreeLen could be because of the use of mmaps, so
4224 // don't report. If not free memory then start a new segment.
4225 bool flush = true;
4226 if (start > startOfNextMemoryChunk_) {
4227 const size_t kMaxFreeLen = 2 * kPageSize;
4228 void* freeStart = startOfNextMemoryChunk_;
4229 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07004230 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07004231 if (!native || freeLen < kMaxFreeLen) {
4232 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
4233 flush = false;
4234 }
4235 }
4236 if (flush) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004237 startOfNextMemoryChunk_ = nullptr;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004238 Flush();
4239 }
4240 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08004241 mirror::Object* obj = reinterpret_cast<mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08004242
4243 // Determine the type of this chunk.
4244 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4245 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004246 uint8_t state = ExamineObject(obj, native);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004247 AppendChunk(state, start, used_bytes + chunk_overhead_);
4248 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004249 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004250
Ian Rogers15bf2d32012-08-28 17:33:04 -07004251 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004252 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004253 // Make sure there's enough room left in the buffer.
4254 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4255 // 17 bytes for any header.
4256 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
4257 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4258 if (bytesLeft < needed) {
4259 Flush();
4260 }
4261
4262 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4263 if (bytesLeft < needed) {
4264 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4265 << needed << " bytes)";
4266 return;
4267 }
4268 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004269 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004270 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4271 totalAllocationUnits_ += length;
4272 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004273 *p_++ = state | HPSG_PARTIAL;
4274 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004275 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004276 }
Ian Rogers30fab402012-01-23 15:43:46 -08004277 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004278 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004279 }
4280
Ian Rogersef7d42f2014-01-06 12:55:46 -08004281 uint8_t ExamineObject(mirror::Object* o, bool is_native_heap)
4282 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004283 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004284 return HPSG_STATE(SOLIDITY_FREE, 0);
4285 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004286
Elliott Hughesa2155262011-11-16 16:26:58 -08004287 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004288
Elliott Hughesa2155262011-11-16 16:26:58 -08004289 // If we're looking at the native heap, we'll just return
4290 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004291 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004292 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4293 }
4294
Ian Rogers5bfa60f2012-09-02 21:17:56 -07004295 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004296 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004297 }
4298
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004299 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004300 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004301 // The object was probably just created but hasn't been initialized yet.
4302 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4303 }
4304
Mathieu Chartier590fee92013-09-13 13:46:47 -07004305 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004306 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004307 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4308 }
4309
4310 if (c->IsClassClass()) {
4311 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4312 }
4313
4314 if (c->IsArrayClass()) {
4315 if (o->IsObjectArray()) {
4316 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4317 }
4318 switch (c->GetComponentSize()) {
4319 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4320 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4321 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4322 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4323 }
4324 }
4325
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004326 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4327 }
4328
Ian Rogers30fab402012-01-23 15:43:46 -08004329 std::vector<uint8_t> buf_;
4330 uint8_t* p_;
4331 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004332 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004333 size_t totalAllocationUnits_;
4334 uint32_t type_;
4335 bool merge_;
4336 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004337 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004338
Elliott Hughesa2155262011-11-16 16:26:58 -08004339 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4340};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004341
Mathieu Chartier36dab362014-07-30 14:59:56 -07004342static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
4343 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
4344 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
4345 HeapChunkContext::HeapChunkCallback(
4346 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4347}
4348
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004349void Dbg::DdmSendHeapSegments(bool native) {
4350 Dbg::HpsgWhen when;
4351 Dbg::HpsgWhat what;
4352 if (!native) {
4353 when = gDdmHpsgWhen;
4354 what = gDdmHpsgWhat;
4355 } else {
4356 when = gDdmNhsgWhen;
4357 what = gDdmNhsgWhat;
4358 }
4359 if (when == HPSG_WHEN_NEVER) {
4360 return;
4361 }
4362
4363 // Figure out what kind of chunks we'll be sending.
4364 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
4365
4366 // First, send a heap start chunk.
4367 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004368 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004369 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
4370
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004371 Thread* self = Thread::Current();
4372
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004373 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004374
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004375 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08004376 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
4377 if (native) {
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004378#ifdef USE_DLMALLOC
Ian Rogers1d54e732013-05-02 21:10:01 -07004379 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004380#else
4381 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4382#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004383 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004384 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004385 for (const auto& space : heap->GetContinuousSpaces()) {
4386 if (space->IsDlMallocSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004387 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004388 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4389 // allocation then the first sizeof(size_t) may belong to it.
4390 context.SetChunkOverhead(sizeof(size_t));
4391 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
4392 } else if (space->IsRosAllocSpace()) {
4393 context.SetChunkOverhead(0);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004394 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4395 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
4396 self->TransitionFromRunnableToSuspended(kSuspended);
4397 ThreadList* tl = Runtime::Current()->GetThreadList();
4398 tl->SuspendAll();
4399 {
4400 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4401 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
4402 }
4403 tl->ResumeAll();
4404 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004405 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004406 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004407 context.SetChunkOverhead(0);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004408 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
4409 } else {
4410 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004411 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004412 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004413 }
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004414 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004415 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004416 context.SetChunkOverhead(0);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004417 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004418 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004419
4420 // Finally, send a heap end chunk.
4421 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004422}
4423
Elliott Hughesb1a58792013-07-11 18:10:58 -07004424static size_t GetAllocTrackerMax() {
4425#ifdef HAVE_ANDROID_OS
4426 // Check whether there's a system property overriding the number of records.
4427 const char* propertyName = "dalvik.vm.allocTrackerMax";
4428 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4429 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4430 char* end;
4431 size_t value = strtoul(allocRecordMaxString, &end, 10);
4432 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004433 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4434 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004435 return kDefaultNumAllocRecords;
4436 }
4437 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004438 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4439 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004440 return kDefaultNumAllocRecords;
4441 }
4442 return value;
4443 }
4444#endif
4445 return kDefaultNumAllocRecords;
4446}
4447
Brian Carlstrom306db812014-09-05 13:01:41 -07004448void Dbg::SetAllocTrackingEnabled(bool enable) {
4449 Thread* self = Thread::Current();
4450 if (enable) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004451 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004452 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4453 if (recent_allocation_records_ != nullptr) {
4454 return; // Already enabled, bail.
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004455 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004456 alloc_record_max_ = GetAllocTrackerMax();
4457 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4458 << kMaxAllocRecordStackDepth << " frames, taking "
4459 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4460 DCHECK_EQ(alloc_record_head_, 0U);
4461 DCHECK_EQ(alloc_record_count_, 0U);
4462 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4463 CHECK(recent_allocation_records_ != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004464 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004465 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004466 } else {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004467 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004468 ScopedObjectAccess soa(self); // For type_cache_.Clear();
4469 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4470 if (recent_allocation_records_ == nullptr) {
4471 return; // Already disabled, bail.
4472 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07004473 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004474 delete[] recent_allocation_records_;
Ian Rogersc0542af2014-09-03 16:16:56 -07004475 recent_allocation_records_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -07004476 alloc_record_head_ = 0;
4477 alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004478 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004479 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004480 // If an allocation comes in before we uninstrument, we will safely drop it on the floor.
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004481 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004482 }
4483}
4484
Ian Rogers0399dde2012-06-06 17:09:28 -07004485struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08004486 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004487 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07004488 : StackVisitor(thread, nullptr), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004489
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004490 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4491 // annotalysis.
4492 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004493 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004494 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004495 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004496 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004497 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004498 record->StackElement(depth)->SetMethod(m);
4499 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004500 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004501 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004502 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004503 }
4504
4505 ~AllocRecordStackVisitor() {
4506 // Clear out any unused stack trace elements.
4507 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004508 record->StackElement(depth)->SetMethod(nullptr);
4509 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004510 }
4511 }
4512
4513 AllocRecord* record;
4514 size_t depth;
4515};
4516
Ian Rogers844506b2014-09-12 19:59:33 -07004517void Dbg::RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004518 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004519 if (recent_allocation_records_ == nullptr) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004520 // In the process of shutting down recording, bail.
Elliott Hughes545a0642011-11-08 19:10:03 -08004521 return;
4522 }
4523
4524 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004525 if (++alloc_record_head_ == alloc_record_max_) {
4526 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004527 }
4528
4529 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004530 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004531 record->SetType(type);
4532 record->SetByteCount(byte_count);
4533 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004534
4535 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004536 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004537 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004538
Ian Rogers719d1a32014-03-06 12:13:39 -08004539 if (alloc_record_count_ < alloc_record_max_) {
4540 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004541 }
4542}
4543
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004544// Returns the index of the head element.
4545//
Brian Carlstrom306db812014-09-05 13:01:41 -07004546// We point at the most-recently-written record, so if alloc_record_count_ is 1
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004547// we want to use the current element. Take "head+1" and subtract count
4548// from it.
4549//
4550// We need to handle underflow in our circular buffer, so we add
Brian Carlstrom306db812014-09-05 13:01:41 -07004551// alloc_record_max_ and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004552size_t Dbg::HeadIndex() {
4553 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4554 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004555}
4556
4557void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004558 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004559 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004560 if (recent_allocation_records_ == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004561 LOG(INFO) << "Not recording tracked allocations";
4562 return;
4563 }
4564
4565 // "i" is the head of the list. We want to start at the end of the
4566 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004567 size_t i = HeadIndex();
Brian Carlstrom306db812014-09-05 13:01:41 -07004568 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4569 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004570
Ian Rogers719d1a32014-03-06 12:13:39 -08004571 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004572 while (count--) {
4573 AllocRecord* record = &recent_allocation_records_[i];
4574
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004575 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4576 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004577
4578 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004579 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4580 mirror::ArtMethod* m = stack_element->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004581 if (m == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004582 break;
4583 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004584 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004585 }
4586
4587 // pause periodically to help logcat catch up
4588 if ((count % 5) == 0) {
4589 usleep(40000);
4590 }
4591
Ian Rogers719d1a32014-03-06 12:13:39 -08004592 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004593 }
4594}
4595
4596class StringTable {
4597 public:
4598 StringTable() {
4599 }
4600
Mathieu Chartier4345c462014-06-27 10:20:14 -07004601 void Add(const std::string& str) {
4602 table_.insert(str);
4603 }
4604
4605 void Add(const char* str) {
4606 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004607 }
4608
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004609 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004610 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004611 if (it == table_.end()) {
4612 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4613 }
4614 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004615 }
4616
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004617 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004618 return table_.size();
4619 }
4620
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004621 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004622 for (const std::string& str : table_) {
4623 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004624 size_t s_len = CountModifiedUtf8Chars(s);
Ian Rogers700a4022014-05-19 16:49:03 -07004625 std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004626 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4627 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004628 }
4629 }
4630
4631 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004632 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004633 DISALLOW_COPY_AND_ASSIGN(StringTable);
4634};
4635
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004636static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004637 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004638 DCHECK(method != nullptr);
4639 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004640 return (source_file != nullptr) ? source_file : "";
4641}
4642
Elliott Hughes545a0642011-11-08 19:10:03 -08004643/*
4644 * The data we send to DDMS contains everything we have recorded.
4645 *
4646 * Message header (all values big-endian):
4647 * (1b) message header len (to allow future expansion); includes itself
4648 * (1b) entry header len
4649 * (1b) stack frame len
4650 * (2b) number of entries
4651 * (4b) offset to string table from start of message
4652 * (2b) number of class name strings
4653 * (2b) number of method name strings
4654 * (2b) number of source file name strings
4655 * For each entry:
4656 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004657 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004658 * (2b) allocated object's class name index
4659 * (1b) stack depth
4660 * For each stack frame:
4661 * (2b) method's class name
4662 * (2b) method name
4663 * (2b) method source file
4664 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4665 * (xb) class name strings
4666 * (xb) method name strings
4667 * (xb) source file strings
4668 *
4669 * As with other DDM traffic, strings are sent as a 4-byte length
4670 * followed by UTF-16 data.
4671 *
4672 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07004673 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004674 * each table, but in practice there should be far fewer.
4675 *
4676 * The chief reason for using a string table here is to keep the size of
4677 * the DDMS message to a minimum. This is partly to make the protocol
4678 * efficient, but also because we have to form the whole thing up all at
4679 * once in a memory buffer.
4680 *
4681 * We use separate string tables for class names, method names, and source
4682 * files to keep the indexes small. There will generally be no overlap
4683 * between the contents of these tables.
4684 */
4685jbyteArray Dbg::GetRecentAllocations() {
4686 if (false) {
4687 DumpRecentAllocations();
4688 }
4689
Ian Rogers50b35e22012-10-04 10:09:15 -07004690 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004691 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004692 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004693 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004694 //
4695 // Part 1: generate string tables.
4696 //
4697 StringTable class_names;
4698 StringTable method_names;
4699 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004700
Brian Carlstrom306db812014-09-05 13:01:41 -07004701 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4702 uint16_t count = capped_count;
4703 size_t idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004704 while (count--) {
4705 AllocRecord* record = &recent_allocation_records_[idx];
Ian Rogers1ff3c982014-08-12 02:30:58 -07004706 std::string temp;
4707 class_names.Add(record->Type()->GetDescriptor(&temp));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004708 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004709 mirror::ArtMethod* m = record->StackElement(i)->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004710 if (m != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004711 class_names.Add(m->GetDeclaringClassDescriptor());
4712 method_names.Add(m->GetName());
4713 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004714 }
4715 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004716
Ian Rogers719d1a32014-03-06 12:13:39 -08004717 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004718 }
4719
Brian Carlstrom306db812014-09-05 13:01:41 -07004720 LOG(INFO) << "allocation records: " << capped_count;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004721
4722 //
4723 // Part 2: Generate the output and store it in the buffer.
4724 //
4725
4726 // (1b) message header len (to allow future expansion); includes itself
4727 // (1b) entry header len
4728 // (1b) stack frame len
4729 const int kMessageHeaderLen = 15;
4730 const int kEntryHeaderLen = 9;
4731 const int kStackFrameLen = 8;
4732 JDWP::Append1BE(bytes, kMessageHeaderLen);
4733 JDWP::Append1BE(bytes, kEntryHeaderLen);
4734 JDWP::Append1BE(bytes, kStackFrameLen);
4735
4736 // (2b) number of entries
4737 // (4b) offset to string table from start of message
4738 // (2b) number of class name strings
4739 // (2b) number of method name strings
4740 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07004741 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004742 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004743 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004744 JDWP::Append2BE(bytes, class_names.Size());
4745 JDWP::Append2BE(bytes, method_names.Size());
4746 JDWP::Append2BE(bytes, filenames.Size());
4747
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004748 idx = HeadIndex();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004749 std::string temp;
Brian Carlstrom306db812014-09-05 13:01:41 -07004750 for (count = capped_count; count != 0; --count) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004751 // For each entry:
4752 // (4b) total allocation size
4753 // (2b) thread id
4754 // (2b) allocated object's class name index
4755 // (1b) stack depth
4756 AllocRecord* record = &recent_allocation_records_[idx];
4757 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004758 size_t allocated_object_class_name_index =
Ian Rogers1ff3c982014-08-12 02:30:58 -07004759 class_names.IndexOf(record->Type()->GetDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004760 JDWP::Append4BE(bytes, record->ByteCount());
4761 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004762 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4763 JDWP::Append1BE(bytes, stack_depth);
4764
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004765 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4766 // For each stack frame:
4767 // (2b) method's class name
4768 // (2b) method name
4769 // (2b) method source file
4770 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004771 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004772 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4773 size_t method_name_index = method_names.IndexOf(m->GetName());
4774 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004775 JDWP::Append2BE(bytes, class_name_index);
4776 JDWP::Append2BE(bytes, method_name_index);
4777 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004778 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004779 }
Ian Rogers719d1a32014-03-06 12:13:39 -08004780 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004781 }
4782
4783 // (xb) class name strings
4784 // (xb) method name strings
4785 // (xb) source file strings
4786 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4787 class_names.WriteTo(bytes);
4788 method_names.WriteTo(bytes);
4789 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004790 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004791 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004792 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07004793 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004794 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4795 }
4796 return result;
4797}
4798
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07004799mirror::ArtMethod* DeoptimizationRequest::Method() const {
4800 ScopedObjectAccessUnchecked soa(Thread::Current());
4801 return soa.DecodeMethod(method_);
4802}
4803
4804void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
4805 ScopedObjectAccessUnchecked soa(Thread::Current());
4806 method_ = soa.EncodeMethod(m);
4807}
4808
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004809} // namespace art