blob: 57487ead5c93978149aea3a534a183ec70d1bfc1 [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) {
848 DCHECK(klass != nullptr);
Ian Rogers1ff3c982014-08-12 02:30:58 -0700849 std::string temp;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200850 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700851}
852
Ian Rogersc0542af2014-09-03 16:16:56 -0700853JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800854 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700855 mirror::Class* c = DecodeClass(id, &status);
856 if (c == nullptr) {
857 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800858 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800859 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700860 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800861 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800862}
863
Ian Rogersc0542af2014-09-03 16:16:56 -0700864JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800865 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700866 mirror::Class* c = DecodeClass(id, &status);
867 if (c == nullptr) {
868 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800869 return status;
870 }
871 if (c->IsInterface()) {
872 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700873 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800874 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700875 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800876 }
877 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700878}
879
Elliott Hughes436e3722012-02-17 20:01:47 -0800880JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700881 JDWP::JdwpError error;
882 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
883 if (o == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800884 return JDWP::ERR_INVALID_OBJECT;
885 }
886 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
887 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700888}
889
Elliott Hughes436e3722012-02-17 20:01:47 -0800890JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700891 JDWP::JdwpError error;
892 mirror::Class* c = DecodeClass(id, &error);
893 if (c == nullptr) {
894 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800895 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800896
897 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
898
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700899 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
900 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800901 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700902 if ((access_flags & kAccInterface) == 0) {
903 access_flags |= kAccSuper;
904 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800905
906 expandBufAdd4BE(pReply, access_flags);
907
908 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700909}
910
Ian Rogersc0542af2014-09-03 16:16:56 -0700911JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
912 JDWP::JdwpError error;
913 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
914 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800915 return JDWP::ERR_INVALID_OBJECT;
916 }
917
918 // Ensure all threads are suspended while we read objects' lock words.
919 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100920 CHECK_EQ(self->GetState(), kRunnable);
921 self->TransitionFromRunnableToSuspended(kSuspended);
922 Runtime::Current()->GetThreadList()->SuspendAll();
Elliott Hughesf327e072013-01-09 16:01:26 -0800923
924 MonitorInfo monitor_info(o);
925
Sebastien Hertz54263242014-03-19 18:16:50 +0100926 Runtime::Current()->GetThreadList()->ResumeAll();
927 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800928
Ian Rogersc0542af2014-09-03 16:16:56 -0700929 if (monitor_info.owner_ != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700930 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800931 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700932 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800933 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700934 expandBufAdd4BE(reply, monitor_info.entry_count_);
935 expandBufAdd4BE(reply, monitor_info.waiters_.size());
936 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
937 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800938 }
939 return JDWP::ERR_NONE;
940}
941
Elliott Hughes734b8c62013-01-11 15:32:45 -0800942JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700943 std::vector<JDWP::ObjectId>* monitors,
944 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800945 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700946 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700947 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700948 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800949 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700950 : StackVisitor(thread, context), current_stack_depth(0),
951 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800952
953 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
954 // annotalysis.
955 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
956 if (!GetMethod()->IsRuntimeMethod()) {
957 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800958 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800959 }
960 return true;
961 }
962
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700963 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
964 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800965 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700966 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700967 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800968 }
969
Elliott Hughes734b8c62013-01-11 15:32:45 -0800970 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700971 std::vector<JDWP::ObjectId>* const monitors;
972 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800973 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800974
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700975 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700976 Thread* thread;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700977 {
978 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700979 JDWP::JdwpError error;
980 thread = DecodeThread(soa, thread_id, &error);
981 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700982 return error;
983 }
984 if (!IsSuspendedForDebugger(soa, thread)) {
985 return JDWP::ERR_THREAD_NOT_SUSPENDED;
986 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700987 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700988 std::unique_ptr<Context> context(Context::Create());
Ian Rogersc0542af2014-09-03 16:16:56 -0700989 OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700990 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800991 return JDWP::ERR_NONE;
992}
993
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100994JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700995 JDWP::ObjectId* contended_monitor) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700996 mirror::Object* contended_monitor_obj;
Elliott Hughesf9501702013-01-11 11:22:27 -0800997 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -0700998 *contended_monitor = 0;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700999 {
1000 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001001 JDWP::JdwpError error;
1002 Thread* thread = DecodeThread(soa, thread_id, &error);
1003 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001004 return error;
1005 }
1006 if (!IsSuspendedForDebugger(soa, thread)) {
1007 return JDWP::ERR_THREAD_NOT_SUSPENDED;
1008 }
1009 contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Elliott Hughesf9501702013-01-11 11:22:27 -08001010 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001011 // Add() requires the thread_list_lock_ not held to avoid the lock
1012 // level violation.
Ian Rogersc0542af2014-09-03 16:16:56 -07001013 *contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -08001014 return JDWP::ERR_NONE;
1015}
1016
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001017JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -07001018 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001019 gc::Heap* heap = Runtime::Current()->GetHeap();
1020 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001021 std::vector<mirror::Class*> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -07001022 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001023 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001024 JDWP::JdwpError error;
1025 mirror::Class* c = DecodeClass(class_ids[i], &error);
1026 if (c == nullptr) {
1027 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001028 }
1029 classes.push_back(c);
Ian Rogersc0542af2014-09-03 16:16:56 -07001030 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001031 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001032 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001033 return JDWP::ERR_NONE;
1034}
1035
Ian Rogersc0542af2014-09-03 16:16:56 -07001036JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
1037 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001038 gc::Heap* heap = Runtime::Current()->GetHeap();
1039 // We only want reachable instances, so do a GC.
1040 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -07001041 JDWP::JdwpError error;
1042 mirror::Class* c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001043 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001044 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001045 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001046 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001047 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
1048 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001049 instances->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes3b78c942013-01-15 17:35:41 -08001050 }
1051 return JDWP::ERR_NONE;
1052}
1053
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001054JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001055 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001056 gc::Heap* heap = Runtime::Current()->GetHeap();
1057 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -07001058 JDWP::JdwpError error;
1059 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1060 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001061 return JDWP::ERR_INVALID_OBJECT;
1062 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001063 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001064 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001065 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001066 referring_objects->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001067 }
1068 return JDWP::ERR_NONE;
1069}
1070
Ian Rogersc0542af2014-09-03 16:16:56 -07001071JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
1072 JDWP::JdwpError error;
1073 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1074 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001075 return JDWP::ERR_INVALID_OBJECT;
1076 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001077 gRegistry->DisableCollection(object_id);
1078 return JDWP::ERR_NONE;
1079}
1080
Ian Rogersc0542af2014-09-03 16:16:56 -07001081JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
1082 JDWP::JdwpError error;
1083 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +01001084 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
1085 // also ignores these cases and never return an error. However it's not obvious why this command
1086 // should behave differently from DisableCollection and IsCollected commands. So let's be more
1087 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -07001088 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001089 return JDWP::ERR_INVALID_OBJECT;
1090 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001091 gRegistry->EnableCollection(object_id);
1092 return JDWP::ERR_NONE;
1093}
1094
Ian Rogersc0542af2014-09-03 16:16:56 -07001095JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
1096 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001097 if (object_id == 0) {
1098 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +01001099 return JDWP::ERR_INVALID_OBJECT;
1100 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001101 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1102 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -07001103 JDWP::JdwpError error;
1104 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1105 if (o != nullptr) {
1106 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001107 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001108 return JDWP::ERR_NONE;
1109}
1110
Ian Rogersc0542af2014-09-03 16:16:56 -07001111void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001112 gRegistry->DisposeObject(object_id, reference_count);
1113}
1114
Sebastien Hertz6995c602014-09-09 12:10:13 +02001115JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001116 DCHECK(klass != nullptr);
1117 if (klass->IsArrayClass()) {
1118 return JDWP::TT_ARRAY;
1119 } else if (klass->IsInterface()) {
1120 return JDWP::TT_INTERFACE;
1121 } else {
1122 return JDWP::TT_CLASS;
1123 }
1124}
1125
Elliott Hughes88d63092013-01-09 09:55:54 -08001126JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001127 JDWP::JdwpError error;
1128 mirror::Class* c = DecodeClass(class_id, &error);
1129 if (c == nullptr) {
1130 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001131 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001132
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001133 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1134 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001135 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001136 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001137}
1138
Ian Rogersc0542af2014-09-03 16:16:56 -07001139void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001140 // Get the complete list of reference classes (i.e. all classes except
1141 // the primitive types).
1142 // Returns a newly-allocated buffer full of RefTypeId values.
1143 struct ClassListCreator {
Ian Rogersc0542af2014-09-03 16:16:56 -07001144 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001145 }
1146
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001147 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001148 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1149 }
1150
Elliott Hughes64f574f2013-02-20 14:57:12 -08001151 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1152 // annotalysis.
1153 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001154 if (!c->IsPrimitive()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001155 classes->push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001156 }
1157 return true;
1158 }
1159
Ian Rogersc0542af2014-09-03 16:16:56 -07001160 std::vector<JDWP::RefTypeId>* const classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001161 };
1162
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001163 ClassListCreator clc(classes);
Sebastien Hertz4537c412014-08-28 14:41:50 +02001164 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(ClassListCreator::Visit,
1165 &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001166}
1167
Ian Rogers1ff3c982014-08-12 02:30:58 -07001168JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1169 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001170 JDWP::JdwpError error;
1171 mirror::Class* c = DecodeClass(class_id, &error);
1172 if (c == nullptr) {
1173 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001174 }
1175
Elliott Hughesa2155262011-11-16 16:26:58 -08001176 if (c->IsArrayClass()) {
1177 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1178 *pTypeTag = JDWP::TT_ARRAY;
1179 } else {
1180 if (c->IsErroneous()) {
1181 *pStatus = JDWP::CS_ERROR;
1182 } else {
1183 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1184 }
1185 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1186 }
1187
Ian Rogersc0542af2014-09-03 16:16:56 -07001188 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001189 std::string temp;
1190 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001191 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001192 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001193}
1194
Ian Rogersc0542af2014-09-03 16:16:56 -07001195void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001196 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001197 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001198 ids->clear();
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001199 for (size_t i = 0; i < classes.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001200 ids->push_back(gRegistry->Add(classes[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001201 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001202}
1203
Ian Rogersc0542af2014-09-03 16:16:56 -07001204JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1205 JDWP::JdwpError error;
1206 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1207 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001208 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001209 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001210
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001211 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001212 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001213
1214 expandBufAdd1(pReply, type_tag);
1215 expandBufAddRefTypeId(pReply, type_id);
1216
1217 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001218}
1219
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001220JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001221 JDWP::JdwpError error;
1222 mirror::Class* c = DecodeClass(class_id, &error);
1223 if (c == nullptr) {
1224 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001225 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001226 std::string temp;
1227 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001228 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001229}
1230
Ian Rogersc0542af2014-09-03 16:16:56 -07001231JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1232 JDWP::JdwpError error;
1233 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001234 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001235 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001236 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001237 const char* source_file = c->GetSourceFile();
1238 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001239 return JDWP::ERR_ABSENT_INFORMATION;
1240 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001241 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001242 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001243}
1244
Ian Rogersc0542af2014-09-03 16:16:56 -07001245JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001246 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001247 JDWP::JdwpError error;
1248 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1249 if (error != JDWP::ERR_NONE) {
1250 *tag = JDWP::JT_VOID;
1251 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001252 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001253 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001254 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001255}
1256
Elliott Hughesaed4be92011-12-02 16:16:23 -08001257size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001258 switch (tag) {
1259 case JDWP::JT_VOID:
1260 return 0;
1261 case JDWP::JT_BYTE:
1262 case JDWP::JT_BOOLEAN:
1263 return 1;
1264 case JDWP::JT_CHAR:
1265 case JDWP::JT_SHORT:
1266 return 2;
1267 case JDWP::JT_FLOAT:
1268 case JDWP::JT_INT:
1269 return 4;
1270 case JDWP::JT_ARRAY:
1271 case JDWP::JT_OBJECT:
1272 case JDWP::JT_STRING:
1273 case JDWP::JT_THREAD:
1274 case JDWP::JT_THREAD_GROUP:
1275 case JDWP::JT_CLASS_LOADER:
1276 case JDWP::JT_CLASS_OBJECT:
1277 return sizeof(JDWP::ObjectId);
1278 case JDWP::JT_DOUBLE:
1279 case JDWP::JT_LONG:
1280 return 8;
1281 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001282 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001283 return -1;
1284 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001285}
1286
Ian Rogersc0542af2014-09-03 16:16:56 -07001287JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1288 JDWP::JdwpError error;
1289 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1290 if (a == nullptr) {
1291 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001292 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001293 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001294 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001295}
1296
Elliott Hughes88d63092013-01-09 09:55:54 -08001297JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001298 JDWP::JdwpError error;
1299 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001300 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001301 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001302 }
Elliott Hughes24437992011-11-30 14:49:33 -08001303
1304 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1305 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001306 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001307 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001308 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1309 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001310 expandBufAdd4BE(pReply, count);
1311
Ian Rogers1ff3c982014-08-12 02:30:58 -07001312 if (IsPrimitiveTag(element_tag)) {
1313 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001314 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1315 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001316 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001317 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1318 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001319 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001320 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1321 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001322 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001323 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1324 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001325 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001326 memcpy(dst, &src[offset * width], count * width);
1327 }
1328 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001329 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001330 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001331 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001332 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001333 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001334 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001335 expandBufAdd1(pReply, specific_tag);
1336 expandBufAddObjectId(pReply, gRegistry->Add(element));
1337 }
1338 }
1339
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001340 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001341}
1342
Ian Rogersef7d42f2014-01-06 12:55:46 -08001343template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001344static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001345 NO_THREAD_SAFETY_ANALYSIS {
1346 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001347 DCHECK(a->GetClass()->IsPrimitiveArray());
1348
Ian Rogersef7d42f2014-01-06 12:55:46 -08001349 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001350 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001351 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001352 }
1353}
1354
Elliott Hughes88d63092013-01-09 09:55:54 -08001355JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001356 JDWP::Request* request) {
1357 JDWP::JdwpError error;
1358 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1359 if (dst == nullptr) {
1360 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001361 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001362
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001363 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001364 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001365 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001366 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001367 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001368
Ian Rogers1ff3c982014-08-12 02:30:58 -07001369 if (IsPrimitiveTag(element_tag)) {
1370 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001371 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001372 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001373 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001374 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001375 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001376 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001377 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001378 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001379 }
1380 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001381 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001382 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001383 JDWP::ObjectId id = request->ReadObjectId();
1384 JDWP::JdwpError error;
1385 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1386 if (error != JDWP::ERR_NONE) {
1387 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001388 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001389 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001390 }
1391 }
1392
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001393 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001394}
1395
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001396JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001397 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001398}
1399
Ian Rogersc0542af2014-09-03 16:16:56 -07001400JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object) {
1401 JDWP::JdwpError error;
1402 mirror::Class* c = DecodeClass(class_id, &error);
1403 if (c == nullptr) {
1404 *new_object = 0;
1405 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001406 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001407 *new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001408 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001409}
1410
Elliott Hughesbf13d362011-12-08 15:51:37 -08001411/*
1412 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1413 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001414JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogersc0542af2014-09-03 16:16:56 -07001415 JDWP::ObjectId* new_array) {
1416 JDWP::JdwpError error;
1417 mirror::Class* c = DecodeClass(array_class_id, &error);
1418 if (c == nullptr) {
1419 *new_array = 0;
1420 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001421 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001422 *new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
1423 c->GetComponentSize(),
1424 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001425 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001426}
1427
Sebastien Hertz6995c602014-09-09 12:10:13 +02001428JDWP::FieldId Dbg::ToFieldId(const mirror::ArtField* f) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001429 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001430 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001431}
1432
Brian Carlstromea46f952013-07-30 01:26:50 -07001433static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001434 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001435 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001436 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001437}
1438
Brian Carlstromea46f952013-07-30 01:26:50 -07001439static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001440 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001441 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001442 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001443}
1444
Brian Carlstromea46f952013-07-30 01:26:50 -07001445static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001446 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001447 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001448 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001449}
1450
Sebastien Hertz6995c602014-09-09 12:10:13 +02001451bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1452 CHECK(event_thread != nullptr);
1453 JDWP::JdwpError error;
1454 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(expected_thread_id,
1455 &error);
1456 return expected_thread_peer == event_thread->GetPeer();
1457}
1458
1459bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1460 const JDWP::EventLocation& event_location) {
1461 if (expected_location.dex_pc != event_location.dex_pc) {
1462 return false;
1463 }
1464 mirror::ArtMethod* m = FromMethodId(expected_location.method_id);
1465 return m == event_location.method;
1466}
1467
1468bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) {
1469 JDWP::JdwpError error;
1470 mirror::Class* expected_class = DecodeClass(class_id, &error);
1471 CHECK(expected_class != nullptr);
1472 return expected_class->IsAssignableFrom(event_class);
1473}
1474
1475bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
1476 mirror::ArtField* event_field) {
1477 mirror::ArtField* expected_field = FromFieldId(expected_field_id);
1478 if (expected_field != event_field) {
1479 return false;
1480 }
1481 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1482}
1483
1484bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1485 JDWP::JdwpError error;
1486 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error);
1487 return modifier_instance == event_instance;
1488}
1489
1490void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001491 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001492 if (m == nullptr) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001493 memset(&location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001494 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001495 mirror::Class* c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001496 location->type_tag = GetTypeTag(c);
1497 location->class_id = gRegistry->AddRefType(c);
1498 location->method_id = ToMethodId(m);
1499 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001500 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001501}
1502
Ian Rogersc0542af2014-09-03 16:16:56 -07001503std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001504 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001505 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001506}
1507
Ian Rogersc0542af2014-09-03 16:16:56 -07001508std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001509 return FromFieldId(field_id)->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001510}
1511
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001512/*
1513 * Augment the access flags for synthetic methods and fields by setting
1514 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1515 * flags not specified by the Java programming language.
1516 */
1517static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1518 accessFlags &= kAccJavaFlagsMask;
1519 if ((accessFlags & kAccSynthetic) != 0) {
1520 accessFlags |= 0xf0000000;
1521 }
1522 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001523}
1524
Elliott Hughesdbb40792011-11-18 17:05:22 -08001525/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001526 * Circularly shifts registers so that arguments come first. Debuggers
1527 * expect slots to begin with arguments, but dex code places them at
1528 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001529 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001530static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1531 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001532 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001533 if (code_item == nullptr) {
1534 // We should not get here for a method without code (native, proxy or abstract). Log it and
1535 // return the slot as is since all registers are arguments.
1536 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1537 return slot;
1538 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001539 uint16_t ins_size = code_item->ins_size_;
1540 uint16_t locals_size = code_item->registers_size_ - ins_size;
1541 if (slot >= locals_size) {
1542 return slot - locals_size;
1543 } else {
1544 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001545 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001546}
1547
Jeff Haob7cefc72013-11-14 14:51:09 -08001548/*
1549 * Circularly shifts registers so that arguments come last. Reverts
1550 * slots to dex style argument placement.
1551 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001552static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001553 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001554 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001555 if (code_item == nullptr) {
1556 // We should not get here for a method without code (native, proxy or abstract). Log it and
1557 // return the slot as is since all registers are arguments.
1558 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1559 return slot;
1560 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001561 uint16_t ins_size = code_item->ins_size_;
1562 uint16_t locals_size = code_item->registers_size_ - ins_size;
1563 if (slot < ins_size) {
1564 return slot + locals_size;
1565 } else {
1566 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001567 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001568}
1569
Elliott Hughes88d63092013-01-09 09:55:54 -08001570JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001571 JDWP::JdwpError error;
1572 mirror::Class* c = DecodeClass(class_id, &error);
1573 if (c == nullptr) {
1574 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001575 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001576
1577 size_t instance_field_count = c->NumInstanceFields();
1578 size_t static_field_count = c->NumStaticFields();
1579
1580 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1581
1582 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001583 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001584 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001585 expandBufAddUtf8String(pReply, f->GetName());
1586 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001587 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001588 static const char genericSignature[1] = "";
1589 expandBufAddUtf8String(pReply, genericSignature);
1590 }
1591 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1592 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001593 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001594}
1595
Elliott Hughes88d63092013-01-09 09:55:54 -08001596JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001597 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001598 JDWP::JdwpError error;
1599 mirror::Class* c = DecodeClass(class_id, &error);
1600 if (c == nullptr) {
1601 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001602 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001603
1604 size_t direct_method_count = c->NumDirectMethods();
1605 size_t virtual_method_count = c->NumVirtualMethods();
1606
1607 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1608
1609 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001610 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001611 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001612 expandBufAddUtf8String(pReply, m->GetName());
1613 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001614 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001615 static const char genericSignature[1] = "";
1616 expandBufAddUtf8String(pReply, genericSignature);
1617 }
1618 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1619 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001620 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001621}
1622
Elliott Hughes88d63092013-01-09 09:55:54 -08001623JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001624 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001625 Thread* self = Thread::Current();
1626 StackHandleScope<1> hs(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07001627 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error)));
Mathieu Chartierf8322842014-05-16 10:59:25 -07001628 if (c.Get() == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001629 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001630 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001631 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001632 expandBufAdd4BE(pReply, interface_count);
1633 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001634 expandBufAddRefTypeId(pReply,
1635 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001636 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001637 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001638}
1639
Ian Rogersc0542af2014-09-03 16:16:56 -07001640void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001641 struct DebugCallbackContext {
1642 int numItems;
1643 JDWP::ExpandBuf* pReply;
1644
Elliott Hughes2435a572012-02-17 16:07:41 -08001645 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001646 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1647 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001648 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001649 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001650 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001651 }
1652 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001653 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001654 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001655 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001656 if (code_item == nullptr) {
1657 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001658 start = -1;
1659 end = -1;
1660 } else {
1661 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001662 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001663 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001664 }
1665
1666 expandBufAdd8BE(pReply, start);
1667 expandBufAdd8BE(pReply, end);
1668
1669 // Add numLines later
1670 size_t numLinesOffset = expandBufGetLength(pReply);
1671 expandBufAdd4BE(pReply, 0);
1672
1673 DebugCallbackContext context;
1674 context.numItems = 0;
1675 context.pReply = pReply;
1676
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001677 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001678 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001679 DebugCallbackContext::Callback, nullptr, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001680 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001681
1682 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001683}
1684
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001685void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1686 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001687 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001688 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001689 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001690 size_t variable_count;
1691 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001692
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001693 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1694 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001695 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001696 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1697
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001698 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1699 pContext->variable_count, startAddress, endAddress - startAddress,
1700 name, descriptor, signature, slot,
1701 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001702
Jeff Haob7cefc72013-11-14 14:51:09 -08001703 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001704
Elliott Hughesdbb40792011-11-18 17:05:22 -08001705 expandBufAdd8BE(pContext->pReply, startAddress);
1706 expandBufAddUtf8String(pContext->pReply, name);
1707 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001708 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001709 expandBufAddUtf8String(pContext->pReply, signature);
1710 }
1711 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1712 expandBufAdd4BE(pContext->pReply, slot);
1713
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001714 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001715 }
1716 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001717 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001718
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001719 // arg_count considers doubles and longs to take 2 units.
1720 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001721 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001722 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001723
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001724 // We don't know the total number of variables yet, so leave a blank and update it later.
1725 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001726 expandBufAdd4BE(pReply, 0);
1727
1728 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001729 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001730 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001731 context.variable_count = 0;
1732 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001733
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001734 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001735 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001736 m->GetDexFile()->DecodeDebugInfo(
Ian Rogersc0542af2014-09-03 16:16:56 -07001737 code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001738 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001739 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001740
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001741 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001742}
1743
Jeff Hao579b0242013-11-18 13:16:49 -08001744void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1745 JDWP::ExpandBuf* pReply) {
1746 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001747 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001748 OutputJValue(tag, return_value, pReply);
1749}
1750
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001751void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1752 JDWP::ExpandBuf* pReply) {
1753 mirror::ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001754 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001755 OutputJValue(tag, field_value, pReply);
1756}
1757
Elliott Hughes9777ba22013-01-17 09:04:19 -08001758JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001759 std::vector<uint8_t>* bytecodes) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001760 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001761 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001762 return JDWP::ERR_INVALID_METHODID;
1763 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001764 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001765 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1766 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1767 const uint8_t* end = begin + byte_count;
1768 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001769 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001770 }
1771 return JDWP::ERR_NONE;
1772}
1773
Elliott Hughes88d63092013-01-09 09:55:54 -08001774JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001775 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001776}
1777
Elliott Hughes88d63092013-01-09 09:55:54 -08001778JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001779 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001780}
1781
Elliott Hughes88d63092013-01-09 09:55:54 -08001782static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1783 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001784 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001785 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001786 JDWP::JdwpError error;
1787 mirror::Class* c = DecodeClass(ref_type_id, &error);
1788 if (ref_type_id != 0 && c == nullptr) {
1789 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001790 }
1791
Sebastien Hertz6995c602014-09-09 12:10:13 +02001792 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001793 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001794 return JDWP::ERR_INVALID_OBJECT;
1795 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001796 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001797
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001798 mirror::Class* receiver_class = c;
Ian Rogersc0542af2014-09-03 16:16:56 -07001799 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001800 receiver_class = o->GetClass();
1801 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001802 // TODO: should we give up now if receiver_class is nullptr?
1803 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001804 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001805 return JDWP::ERR_INVALID_FIELDID;
1806 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001807
Elliott Hughes0cf74332012-02-23 23:14:00 -08001808 // The RI only enforces the static/non-static mismatch in one direction.
1809 // TODO: should we change the tests and check both?
1810 if (is_static) {
1811 if (!f->IsStatic()) {
1812 return JDWP::ERR_INVALID_FIELDID;
1813 }
1814 } else {
1815 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001816 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field "
1817 << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001818 }
1819 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001820 if (f->IsStatic()) {
1821 o = f->GetDeclaringClass();
1822 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001823
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001824 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001825 JValue field_value;
1826 if (tag == JDWP::JT_VOID) {
1827 LOG(FATAL) << "Unknown tag: " << tag;
1828 } else if (!IsPrimitiveTag(tag)) {
1829 field_value.SetL(f->GetObject(o));
1830 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1831 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001832 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001833 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001834 }
Jeff Hao579b0242013-11-18 13:16:49 -08001835 Dbg::OutputJValue(tag, &field_value, pReply);
1836
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001837 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001838}
1839
Elliott Hughes88d63092013-01-09 09:55:54 -08001840JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001841 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001842 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001843}
1844
Ian Rogersc0542af2014-09-03 16:16:56 -07001845JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1846 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001847 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001848}
1849
Elliott Hughes88d63092013-01-09 09:55:54 -08001850static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001851 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001852 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001853 JDWP::JdwpError error;
Sebastien Hertz6995c602014-09-09 12:10:13 +02001854 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001855 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001856 return JDWP::ERR_INVALID_OBJECT;
1857 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001858 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001859
1860 // The RI only enforces the static/non-static mismatch in one direction.
1861 // TODO: should we change the tests and check both?
1862 if (is_static) {
1863 if (!f->IsStatic()) {
1864 return JDWP::ERR_INVALID_FIELDID;
1865 }
1866 } else {
1867 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001868 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001869 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001870 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001871 if (f->IsStatic()) {
1872 o = f->GetDeclaringClass();
1873 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001874
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001875 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001876
1877 if (IsPrimitiveTag(tag)) {
1878 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001879 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001880 // Debugging can't use transactional mode (runtime only).
1881 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001882 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001883 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001884 // Debugging can't use transactional mode (runtime only).
1885 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001886 }
1887 } else {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001888 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001889 if (error != JDWP::ERR_NONE) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001890 return JDWP::ERR_INVALID_OBJECT;
1891 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001892 if (v != nullptr) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001893 mirror::Class* field_type;
1894 {
1895 StackHandleScope<3> hs(Thread::Current());
1896 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1897 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
1898 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
1899 field_type = FieldHelper(h_f).GetType();
1900 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001901 if (!field_type->IsAssignableFrom(v->GetClass())) {
1902 return JDWP::ERR_INVALID_OBJECT;
1903 }
1904 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001905 // Debugging can't use transactional mode (runtime only).
1906 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001907 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001908
1909 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001910}
1911
Elliott Hughes88d63092013-01-09 09:55:54 -08001912JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001913 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001914 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001915}
1916
Elliott Hughes88d63092013-01-09 09:55:54 -08001917JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1918 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001919}
1920
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001921JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001922 JDWP::JdwpError error;
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001923 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error);
1924 if (error != JDWP::ERR_NONE) {
1925 return error;
1926 }
1927 if (obj == nullptr) {
1928 return JDWP::ERR_INVALID_OBJECT;
1929 }
1930 {
1931 ScopedObjectAccessUnchecked soa(Thread::Current());
1932 mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String);
1933 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
1934 // This isn't a string.
1935 return JDWP::ERR_INVALID_STRING;
1936 }
1937 }
1938 *str = obj->AsString()->ToModifiedUtf8();
1939 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001940}
1941
Jeff Hao579b0242013-11-18 13:16:49 -08001942void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1943 if (IsPrimitiveTag(tag)) {
1944 expandBufAdd1(pReply, tag);
1945 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1946 expandBufAdd1(pReply, return_value->GetI());
1947 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1948 expandBufAdd2BE(pReply, return_value->GetI());
1949 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1950 expandBufAdd4BE(pReply, return_value->GetI());
1951 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1952 expandBufAdd8BE(pReply, return_value->GetJ());
1953 } else {
1954 CHECK_EQ(tag, JDWP::JT_VOID);
1955 }
1956 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001957 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001958 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001959 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001960 expandBufAddObjectId(pReply, gRegistry->Add(value));
1961 }
1962}
1963
Ian Rogersc0542af2014-09-03 16:16:56 -07001964JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001965 ScopedObjectAccessUnchecked soa(Thread::Current());
1966 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001967 JDWP::JdwpError error;
1968 Thread* thread = DecodeThread(soa, thread_id, &error);
1969 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001970 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1971 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001972 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001973
1974 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07001975 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1976 CHECK(thread_object != nullptr) << error;
Brian Carlstromea46f952013-07-30 01:26:50 -07001977 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001978 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1979 mirror::String* s =
1980 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Ian Rogersc0542af2014-09-03 16:16:56 -07001981 if (s != nullptr) {
1982 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08001983 }
1984 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001985}
1986
Elliott Hughes221229c2013-01-08 18:17:50 -08001987JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02001988 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001989 JDWP::JdwpError error;
1990 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1991 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001992 return JDWP::ERR_INVALID_OBJECT;
1993 }
Ian Rogers98379392014-02-24 16:53:16 -08001994 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001995 // Okay, so it's an object, but is it actually a thread?
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001996 {
1997 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001998 Thread* thread = DecodeThread(soa, thread_id, &error);
1999 UNUSED(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002000 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002001 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2002 // Zombie threads are in the null group.
2003 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002004 error = JDWP::ERR_NONE;
2005 } else if (error == JDWP::ERR_NONE) {
2006 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
2007 CHECK(c != nullptr);
2008 mirror::ArtField* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002009 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002010 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002011 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002012 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
2013 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08002014 }
Ian Rogers98379392014-02-24 16:53:16 -08002015 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002016 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002017}
2018
Sebastien Hertza06430c2014-09-15 19:21:30 +02002019static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
2020 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
2021 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002022 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,
2023 error);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002024 if (*error != JDWP::ERR_NONE) {
2025 return nullptr;
2026 }
2027 if (thread_group == nullptr) {
2028 *error = JDWP::ERR_INVALID_OBJECT;
2029 return nullptr;
2030 }
Ian Rogers98379392014-02-24 16:53:16 -08002031 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
2032 CHECK(c != nullptr);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002033 if (!c->IsAssignableFrom(thread_group->GetClass())) {
2034 // This is not a java.lang.ThreadGroup.
2035 *error = JDWP::ERR_INVALID_THREAD_GROUP;
2036 return nullptr;
2037 }
2038 *error = JDWP::ERR_NONE;
2039 return thread_group;
2040}
2041
2042JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
2043 ScopedObjectAccessUnchecked soa(Thread::Current());
2044 JDWP::JdwpError error;
2045 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2046 if (error != JDWP::ERR_NONE) {
2047 return error;
2048 }
2049 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupName");
2050 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
Brian Carlstromea46f952013-07-30 01:26:50 -07002051 mirror::ArtField* f = c->FindInstanceField("name", "Ljava/lang/String;");
Ian Rogersc0542af2014-09-03 16:16:56 -07002052 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002053 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Ian Rogers98379392014-02-24 16:53:16 -08002054 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002055
2056 std::string thread_group_name(s->ToModifiedUtf8());
2057 expandBufAddUtf8String(pReply, thread_group_name);
2058 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002059}
2060
Sebastien Hertza06430c2014-09-15 19:21:30 +02002061JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08002062 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002063 JDWP::JdwpError error;
Sebastien Hertza06430c2014-09-15 19:21:30 +02002064 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2065 if (error != JDWP::ERR_NONE) {
2066 return error;
2067 }
Ian Rogers98379392014-02-24 16:53:16 -08002068 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupParent");
2069 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
2070 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07002071 mirror::ArtField* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
Ian Rogersc0542af2014-09-03 16:16:56 -07002072 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002073 mirror::Object* parent = f->GetObject(thread_group);
Ian Rogers98379392014-02-24 16:53:16 -08002074 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002075
2076 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
2077 expandBufAddObjectId(pReply, parent_group_id);
2078 return JDWP::ERR_NONE;
2079}
2080
2081static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
2082 std::vector<JDWP::ObjectId>* child_thread_group_ids)
2083 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2084 CHECK(thread_group != nullptr);
2085
2086 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
2087 mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
2088 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
2089
2090 // Get the array and size out of the ArrayList<ThreadGroup>...
2091 mirror::ArtField* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;");
2092 mirror::ArtField* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I");
2093 mirror::ObjectArray<mirror::Object>* groups_array =
2094 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
2095 const int32_t size = size_field->GetInt(groups_array_list);
2096
2097 // Copy the first 'size' elements out of the array into the result.
Sebastien Hertz6995c602014-09-09 12:10:13 +02002098 ObjectRegistry* registry = Dbg::GetObjectRegistry();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002099 for (int32_t i = 0; i < size; ++i) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002100 child_thread_group_ids->push_back(registry->Add(groups_array->Get(i)));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002101 }
2102}
2103
2104JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2105 JDWP::ExpandBuf* pReply) {
2106 ScopedObjectAccessUnchecked soa(Thread::Current());
2107 JDWP::JdwpError error;
2108 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2109 if (error != JDWP::ERR_NONE) {
2110 return error;
2111 }
2112
2113 // Add child threads.
2114 {
2115 std::vector<JDWP::ObjectId> child_thread_ids;
2116 GetThreads(thread_group, &child_thread_ids);
2117 expandBufAdd4BE(pReply, child_thread_ids.size());
2118 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2119 expandBufAddObjectId(pReply, child_thread_id);
2120 }
2121 }
2122
2123 // Add child thread groups.
2124 {
2125 std::vector<JDWP::ObjectId> child_thread_groups_ids;
2126 GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids);
2127 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2128 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2129 expandBufAddObjectId(pReply, child_thread_group_id);
2130 }
2131 }
2132
2133 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002134}
2135
2136JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002137 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07002138 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002139 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002140 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002141}
2142
Jeff Hao920af3e2013-08-28 15:46:38 -07002143JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2144 switch (state) {
2145 case kBlocked:
2146 return JDWP::TS_MONITOR;
2147 case kNative:
2148 case kRunnable:
2149 case kSuspended:
2150 return JDWP::TS_RUNNING;
2151 case kSleeping:
2152 return JDWP::TS_SLEEPING;
2153 case kStarting:
2154 case kTerminated:
2155 return JDWP::TS_ZOMBIE;
2156 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002157 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002158 case kWaitingForDebuggerSend:
2159 case kWaitingForDebuggerSuspension:
2160 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002161 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002162 case kWaitingForGcToComplete:
Jeff Hao920af3e2013-08-28 15:46:38 -07002163 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002164 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002165 case kWaitingForSignalCatcherOutput:
2166 case kWaitingInMainDebuggerLoop:
2167 case kWaitingInMainSignalCatcherLoop:
2168 case kWaitingPerformingGc:
2169 case kWaiting:
2170 return JDWP::TS_WAIT;
2171 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2172 }
2173 LOG(FATAL) << "Unknown thread state: " << state;
2174 return JDWP::TS_ZOMBIE;
2175}
2176
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002177JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2178 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002179 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002180
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002181 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2182
Ian Rogers50b35e22012-10-04 10:09:15 -07002183 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002184 JDWP::JdwpError error;
2185 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002186 if (error != JDWP::ERR_NONE) {
2187 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2188 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002189 return JDWP::ERR_NONE;
2190 }
2191 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002192 }
2193
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002194 if (IsSuspendedForDebugger(soa, thread)) {
2195 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002196 }
2197
Jeff Hao920af3e2013-08-28 15:46:38 -07002198 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002199 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002200}
2201
Elliott Hughes221229c2013-01-08 18:17:50 -08002202JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002203 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07002204 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002205 JDWP::JdwpError error;
2206 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002207 if (error != JDWP::ERR_NONE) {
2208 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002209 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002210 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002211 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002212 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002213}
2214
Elliott Hughesf9501702013-01-11 11:22:27 -08002215JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2216 ScopedObjectAccess soa(Thread::Current());
2217 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002218 JDWP::JdwpError error;
2219 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002220 if (error != JDWP::ERR_NONE) {
2221 return error;
2222 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002223 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002224 return JDWP::ERR_NONE;
2225}
2226
Sebastien Hertz070f7322014-09-09 12:08:49 +02002227static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa,
2228 mirror::Object* desired_thread_group, mirror::Object* peer)
2229 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2230 // Do we want threads from all thread groups?
2231 if (desired_thread_group == nullptr) {
2232 return true;
2233 }
2234 mirror::ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
2235 DCHECK(thread_group_field != nullptr);
2236 mirror::Object* group = thread_group_field->GetObject(peer);
2237 return (group == desired_thread_group);
2238}
2239
Sebastien Hertza06430c2014-09-15 19:21:30 +02002240void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002241 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz070f7322014-09-09 12:08:49 +02002242 std::list<Thread*> all_threads_list;
2243 {
2244 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2245 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2246 }
2247 for (Thread* t : all_threads_list) {
2248 if (t == Dbg::GetDebugThread()) {
2249 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2250 // query all threads, so it's easier if we just don't tell them about this thread.
2251 continue;
2252 }
2253 if (t->IsStillStarting()) {
2254 // This thread is being started (and has been registered in the thread list). However, it is
2255 // not completely started yet so we must ignore it.
2256 continue;
2257 }
2258 mirror::Object* peer = t->GetPeer();
2259 if (peer == nullptr) {
2260 // peer might be NULL if the thread is still starting up. We can't tell the debugger about
2261 // this thread yet.
2262 // TODO: if we identified threads to the debugger by their Thread*
2263 // rather than their peer's mirror::Object*, we could fix this.
2264 // Doing so might help us report ZOMBIE threads too.
2265 continue;
2266 }
2267 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
2268 thread_ids->push_back(gRegistry->Add(peer));
2269 }
2270 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002271}
Elliott Hughesa2155262011-11-16 16:26:58 -08002272
Ian Rogersc0542af2014-09-03 16:16:56 -07002273static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002274 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07002275 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogersc0542af2014-09-03 16:16:56 -07002276 : StackVisitor(thread, nullptr), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002277
Elliott Hughes64f574f2013-02-20 14:57:12 -08002278 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2279 // annotalysis.
2280 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002281 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002282 ++depth;
2283 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002284 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002285 }
2286 size_t depth;
2287 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002288
Ian Rogers7a22fa62013-01-23 12:16:16 -08002289 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002290 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002291 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002292}
2293
Ian Rogersc0542af2014-09-03 16:16:56 -07002294JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002295 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002296 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002297 JDWP::JdwpError error;
2298 *result = 0;
2299 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002300 if (error != JDWP::ERR_NONE) {
2301 return error;
2302 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002303 if (!IsSuspendedForDebugger(soa, thread)) {
2304 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2305 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002306 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002307 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002308}
2309
Ian Rogers306057f2012-11-26 12:45:53 -08002310JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2311 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002312 class GetFrameVisitor : public StackVisitor {
2313 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08002314 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002315 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07002316 : StackVisitor(thread, nullptr), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002317 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
2318 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002319 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002320
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002321 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2322 // annotalysis.
2323 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002324 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002325 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002326 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002327 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002328 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002329 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002330 if (depth_ >= start_frame_) {
2331 JDWP::FrameId frame_id(GetFrameId());
2332 JDWP::JdwpLocation location;
Sebastien Hertz6995c602014-09-09 12:10:13 +02002333 SetJdwpLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002334 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002335 expandBufAdd8BE(buf_, frame_id);
2336 expandBufAddLocation(buf_, location);
2337 }
2338 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002339 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002340 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002341
2342 private:
2343 size_t depth_;
2344 const size_t start_frame_;
2345 const size_t frame_count_;
2346 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002347 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002348
2349 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002350 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002351 JDWP::JdwpError error;
2352 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002353 if (error != JDWP::ERR_NONE) {
2354 return error;
2355 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002356 if (!IsSuspendedForDebugger(soa, thread)) {
2357 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2358 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002359 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002360 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002361 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002362}
2363
2364JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002365 return GetThreadId(Thread::Current());
2366}
2367
2368JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002369 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002370 return gRegistry->Add(thread->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002371}
2372
Elliott Hughes475fc232011-10-25 15:00:35 -07002373void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002374 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002375}
2376
2377void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07002378 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002379}
2380
Elliott Hughes221229c2013-01-08 18:17:50 -08002381JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002382 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002383 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002384 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002385 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002386 JDWP::JdwpError error;
2387 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002388 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002389 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002390 return JDWP::ERR_THREAD_NOT_ALIVE;
2391 }
Ian Rogersf3d874c2014-07-17 18:52:42 -07002392 // Suspend thread to build stack trace. Take suspend thread lock to avoid races with threads
2393 // trying to suspend this one.
2394 MutexLock mu(self, *Locks::thread_list_suspend_thread_lock_);
Elliott Hughesf327e072013-01-09 16:01:26 -08002395 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002396 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2397 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2398 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002399 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002400 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002401 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002402 return JDWP::ERR_INTERNAL;
2403 } else {
2404 return JDWP::ERR_THREAD_NOT_ALIVE;
2405 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002406}
2407
Elliott Hughes221229c2013-01-08 18:17:50 -08002408void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002409 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002410 JDWP::JdwpError error;
2411 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2412 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002413 Thread* thread;
2414 {
2415 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2416 thread = Thread::FromManagedThread(soa, peer);
2417 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002418 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002419 LOG(WARNING) << "No such thread for resume: " << peer;
2420 return;
2421 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002422 bool needs_resume;
2423 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002424 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002425 needs_resume = thread->GetSuspendCount() > 0;
2426 }
2427 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002428 Runtime::Current()->GetThreadList()->Resume(thread, true);
2429 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002430}
2431
2432void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002433 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002434}
2435
Ian Rogers0399dde2012-06-06 17:09:28 -07002436struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002437 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002438 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07002439 : StackVisitor(thread, context), this_object(nullptr), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002440
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002441 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2442 // annotalysis.
2443 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002444 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002445 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002446 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002447 this_object = GetThisObject();
2448 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002449 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002450 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002451
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002452 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002453 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002454};
2455
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002456JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2457 JDWP::ObjectId* result) {
2458 ScopedObjectAccessUnchecked soa(Thread::Current());
2459 Thread* thread;
2460 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002461 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002462 JDWP::JdwpError error;
2463 thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002464 if (error != JDWP::ERR_NONE) {
2465 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002466 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002467 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002468 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2469 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002470 }
Ian Rogers700a4022014-05-19 16:49:03 -07002471 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002472 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002473 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002474 *result = gRegistry->Add(visitor.this_object);
2475 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002476}
2477
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002478JDWP::JdwpError Dbg::GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2479 JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002480 struct GetLocalVisitor : public StackVisitor {
Ian Rogers98379392014-02-24 16:53:16 -08002481 GetLocalVisitor(const ScopedObjectAccessUnchecked& soa, Thread* thread, Context* context,
2482 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002483 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers98379392014-02-24 16:53:16 -08002484 : StackVisitor(thread, context), soa_(soa), frame_id_(frame_id), slot_(slot), tag_(tag),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002485 buf_(buf), width_(width), error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002486
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002487 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2488 // annotalysis.
2489 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002490 if (GetFrameId() != frame_id_) {
2491 return true; // Not our frame, carry on.
Elliott Hughesdbb40792011-11-18 17:05:22 -08002492 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002493 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002494 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002495 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002496 if (m->IsNative()) {
2497 // We can't read local value from native method.
2498 error_ = JDWP::ERR_OPAQUE_FRAME;
2499 return false;
2500 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002501 uint16_t reg = DemangleSlot(slot_, m);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002502 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
Ian Rogers0399dde2012-06-06 17:09:28 -07002503 switch (tag_) {
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002504 case JDWP::JT_BOOLEAN: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002505 CHECK_EQ(width_, 1U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002506 uint32_t intVal;
2507 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2508 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2509 JDWP::Set1(buf_+1, intVal != 0);
2510 } else {
2511 VLOG(jdwp) << "failed to get boolean local " << reg;
2512 error_ = kFailureErrorCode;
2513 }
2514 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002515 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002516 case JDWP::JT_BYTE: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002517 CHECK_EQ(width_, 1U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002518 uint32_t intVal;
2519 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2520 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2521 JDWP::Set1(buf_+1, intVal);
2522 } else {
2523 VLOG(jdwp) << "failed to get byte local " << reg;
2524 error_ = kFailureErrorCode;
2525 }
2526 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002527 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002528 case JDWP::JT_SHORT:
2529 case JDWP::JT_CHAR: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002530 CHECK_EQ(width_, 2U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002531 uint32_t intVal;
2532 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2533 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2534 JDWP::Set2BE(buf_+1, intVal);
2535 } else {
2536 VLOG(jdwp) << "failed to get short/char local " << reg;
2537 error_ = kFailureErrorCode;
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002538 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002539 break;
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002540 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002541 case JDWP::JT_INT: {
2542 CHECK_EQ(width_, 4U);
2543 uint32_t intVal;
2544 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2545 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2546 JDWP::Set4BE(buf_+1, intVal);
2547 } else {
2548 VLOG(jdwp) << "failed to get int local " << reg;
2549 error_ = kFailureErrorCode;
Sebastien Hertz8ebd94a2014-06-17 09:49:21 +00002550 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002551 break;
Sebastien Hertz8ebd94a2014-06-17 09:49:21 +00002552 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002553 case JDWP::JT_FLOAT: {
2554 CHECK_EQ(width_, 4U);
2555 uint32_t intVal;
2556 if (GetVReg(m, reg, kFloatVReg, &intVal)) {
2557 VLOG(jdwp) << "get float local " << reg << " = " << intVal;
2558 JDWP::Set4BE(buf_+1, intVal);
2559 } else {
2560 VLOG(jdwp) << "failed to get float local " << reg;
2561 error_ = kFailureErrorCode;
2562 }
2563 break;
2564 }
2565 case JDWP::JT_ARRAY:
2566 case JDWP::JT_CLASS_LOADER:
2567 case JDWP::JT_CLASS_OBJECT:
2568 case JDWP::JT_OBJECT:
2569 case JDWP::JT_STRING:
2570 case JDWP::JT_THREAD:
2571 case JDWP::JT_THREAD_GROUP: {
2572 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
2573 uint32_t intVal;
2574 if (GetVReg(m, reg, kReferenceVReg, &intVal)) {
2575 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2576 VLOG(jdwp) << "get " << tag_ << " object local " << reg << " = " << o;
2577 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2578 LOG(FATAL) << "Register " << reg << " expected to hold " << tag_ << " object: " << o;
2579 }
2580 tag_ = TagFromObject(soa_, o);
2581 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2582 } else {
2583 VLOG(jdwp) << "failed to get " << tag_ << " object local " << reg;
2584 error_ = kFailureErrorCode;
2585 }
2586 break;
2587 }
2588 case JDWP::JT_DOUBLE: {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002589 CHECK_EQ(width_, 8U);
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002590 uint64_t longVal;
2591 if (GetVRegPair(m, reg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2592 VLOG(jdwp) << "get double local " << reg << " = " << longVal;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002593 JDWP::Set8BE(buf_+1, longVal);
2594 } else {
2595 VLOG(jdwp) << "failed to get double local " << reg;
2596 error_ = kFailureErrorCode;
2597 }
2598 break;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002599 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002600 case JDWP::JT_LONG: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002601 CHECK_EQ(width_, 8U);
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002602 uint64_t longVal;
2603 if (GetVRegPair(m, reg, kLongLoVReg, kLongHiVReg, &longVal)) {
2604 VLOG(jdwp) << "get long local " << reg << " = " << longVal;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002605 JDWP::Set8BE(buf_+1, longVal);
2606 } else {
2607 VLOG(jdwp) << "failed to get long local " << reg;
2608 error_ = kFailureErrorCode;
2609 }
2610 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002611 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002612 default:
2613 LOG(FATAL) << "Unknown tag " << tag_;
2614 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002615 }
2616
2617 // Prepend tag, which may have been updated.
2618 JDWP::Set1(buf_, tag_);
2619 return false;
2620 }
Ian Rogers98379392014-02-24 16:53:16 -08002621 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002622 const JDWP::FrameId frame_id_;
2623 const int slot_;
2624 JDWP::JdwpTag tag_;
2625 uint8_t* const buf_;
2626 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002627 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002628 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002629
2630 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002631 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002632 JDWP::JdwpError error;
2633 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002634 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002635 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002636 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002637 // TODO check thread is suspended by the debugger ?
Ian Rogers700a4022014-05-19 16:49:03 -07002638 std::unique_ptr<Context> context(Context::Create());
Ian Rogers98379392014-02-24 16:53:16 -08002639 GetLocalVisitor visitor(soa, thread, context.get(), frame_id, slot, tag, buf, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002640 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002641 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002642}
2643
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002644JDWP::JdwpError Dbg::SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2645 JDWP::JdwpTag tag, uint64_t value, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002646 struct SetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002647 SetLocalVisitor(Thread* thread, Context* context,
Ian Rogers0399dde2012-06-06 17:09:28 -07002648 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
Ian Rogersca190662012-06-26 15:45:57 -07002649 size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002650 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002651 : StackVisitor(thread, context),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002652 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width),
2653 error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002654
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002655 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2656 // annotalysis.
2657 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002658 if (GetFrameId() != frame_id_) {
2659 return true; // Not our frame, carry on.
2660 }
2661 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002662 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002663 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002664 if (m->IsNative()) {
2665 // We can't read local value from native method.
2666 error_ = JDWP::ERR_OPAQUE_FRAME;
2667 return false;
2668 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002669 uint16_t reg = DemangleSlot(slot_, m);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002670 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
Ian Rogers0399dde2012-06-06 17:09:28 -07002671 switch (tag_) {
2672 case JDWP::JT_BOOLEAN:
2673 case JDWP::JT_BYTE:
2674 CHECK_EQ(width_, 1U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002675 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2676 VLOG(jdwp) << "failed to set boolean/byte local " << reg << " = "
2677 << static_cast<uint32_t>(value_);
2678 error_ = kFailureErrorCode;
2679 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002680 break;
2681 case JDWP::JT_SHORT:
2682 case JDWP::JT_CHAR:
2683 CHECK_EQ(width_, 2U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002684 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2685 VLOG(jdwp) << "failed to set short/char local " << reg << " = "
2686 << static_cast<uint32_t>(value_);
2687 error_ = kFailureErrorCode;
2688 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002689 break;
2690 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002691 CHECK_EQ(width_, 4U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002692 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2693 VLOG(jdwp) << "failed to set int local " << reg << " = "
2694 << static_cast<uint32_t>(value_);
2695 error_ = kFailureErrorCode;
2696 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002697 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002698 case JDWP::JT_FLOAT:
2699 CHECK_EQ(width_, 4U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002700 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kFloatVReg)) {
2701 VLOG(jdwp) << "failed to set float local " << reg << " = "
2702 << static_cast<uint32_t>(value_);
2703 error_ = kFailureErrorCode;
2704 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002705 break;
2706 case JDWP::JT_ARRAY:
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002707 case JDWP::JT_CLASS_LOADER:
2708 case JDWP::JT_CLASS_OBJECT:
Ian Rogers0399dde2012-06-06 17:09:28 -07002709 case JDWP::JT_OBJECT:
2710 case JDWP::JT_STRING:
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002711 case JDWP::JT_THREAD:
2712 case JDWP::JT_THREAD_GROUP: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002713 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogersc0542af2014-09-03 16:16:56 -07002714 JDWP::JdwpError error;
2715 mirror::Object* o =
2716 gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value_), &error);
2717 if (error != JDWP::ERR_NONE) {
2718 VLOG(jdwp) << tag_ << " object " << value_ << " is an invalid object";
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002719 error_ = JDWP::ERR_INVALID_OBJECT;
2720 } else if (!SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2721 kReferenceVReg)) {
2722 VLOG(jdwp) << "failed to set " << tag_ << " object local " << reg << " = " << o;
2723 error_ = kFailureErrorCode;
Ian Rogers0399dde2012-06-06 17:09:28 -07002724 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002725 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002726 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002727 case JDWP::JT_DOUBLE: {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002728 CHECK_EQ(width_, 8U);
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002729 bool success = SetVRegPair(m, reg, value_, kDoubleLoVReg, kDoubleHiVReg);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002730 if (!success) {
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002731 VLOG(jdwp) << "failed to set double local " << reg << " = " << value_;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002732 error_ = kFailureErrorCode;
2733 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002734 break;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002735 }
2736 case JDWP::JT_LONG: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002737 CHECK_EQ(width_, 8U);
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002738 bool success = SetVRegPair(m, reg, value_, kLongLoVReg, kLongHiVReg);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002739 if (!success) {
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002740 VLOG(jdwp) << "failed to set double local " << reg << " = " << value_;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002741 error_ = kFailureErrorCode;
2742 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002743 break;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002744 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002745 default:
2746 LOG(FATAL) << "Unknown tag " << tag_;
2747 break;
2748 }
2749 return false;
2750 }
2751
2752 const JDWP::FrameId frame_id_;
2753 const int slot_;
2754 const JDWP::JdwpTag tag_;
2755 const uint64_t value_;
2756 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002757 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002758 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002759
2760 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002761 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002762 JDWP::JdwpError error;
2763 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002764 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002765 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002766 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002767 // TODO check thread is suspended by the debugger ?
Ian Rogers700a4022014-05-19 16:49:03 -07002768 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002769 SetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, value, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002770 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002771 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002772}
2773
Sebastien Hertz6995c602014-09-09 12:10:13 +02002774static void SetEventLocation(JDWP::EventLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
2775 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2776 DCHECK(location != nullptr);
2777 if (m == nullptr) {
2778 memset(location, 0, sizeof(*location));
2779 } else {
2780 location->method = m;
2781 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002782 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002783}
2784
Ian Rogersef7d42f2014-01-06 12:55:46 -08002785void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002786 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002787 if (!IsDebuggerActive()) {
2788 return;
2789 }
2790 DCHECK(m != nullptr);
2791 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002792 JDWP::EventLocation location;
2793 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002794
Sebastien Hertz6995c602014-09-09 12:10:13 +02002795 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002796}
2797
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002798void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
2799 mirror::Object* this_object, mirror::ArtField* f) {
2800 if (!IsDebuggerActive()) {
2801 return;
2802 }
2803 DCHECK(m != nullptr);
2804 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002805 JDWP::EventLocation location;
2806 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002807
Sebastien Hertz6995c602014-09-09 12:10:13 +02002808 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002809}
2810
2811void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
2812 mirror::Object* this_object, mirror::ArtField* f,
2813 const JValue* field_value) {
2814 if (!IsDebuggerActive()) {
2815 return;
2816 }
2817 DCHECK(m != nullptr);
2818 DCHECK(f != nullptr);
2819 DCHECK(field_value != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002820 JDWP::EventLocation location;
2821 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002822
Sebastien Hertz6995c602014-09-09 12:10:13 +02002823 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002824}
2825
2826void Dbg::PostException(const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002827 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002828 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002829 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002830 return;
2831 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002832 JDWP::EventLocation exception_throw_location;
2833 SetEventLocation(&exception_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
2834 JDWP::EventLocation exception_catch_location;
2835 SetEventLocation(&exception_catch_location, catch_method, catch_dex_pc);
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002836
Sebastien Hertz6995c602014-09-09 12:10:13 +02002837 gJdwpState->PostException(&exception_throw_location, exception_object, &exception_catch_location,
2838 throw_location.GetThis());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002839}
2840
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002841void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002842 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002843 return;
2844 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002845 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002846}
2847
Ian Rogers62d6c772013-02-27 08:32:07 -08002848void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002849 mirror::ArtMethod* m, uint32_t dex_pc,
2850 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002851 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002852 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002853 }
2854
Elliott Hughes86964332012-02-15 19:37:42 -08002855 if (IsBreakpoint(m, dex_pc)) {
2856 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002857 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002858
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002859 // If the debugger is single-stepping one of our threads, check to
2860 // see if we're that thread and we've reached a step point.
2861 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2862 DCHECK(single_step_control != nullptr);
2863 if (single_step_control->is_active) {
2864 CHECK(!m->IsNative());
2865 if (single_step_control->step_depth == JDWP::SD_INTO) {
2866 // Step into method calls. We break when the line number
2867 // or method pointer changes. If we're in SS_MIN mode, we
2868 // always stop.
2869 if (single_step_control->method != m) {
2870 event_flags |= kSingleStep;
2871 VLOG(jdwp) << "SS new method";
2872 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2873 event_flags |= kSingleStep;
2874 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002875 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002876 event_flags |= kSingleStep;
2877 VLOG(jdwp) << "SS new line";
2878 }
2879 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2880 // Step over method calls. We break when the line number is
2881 // different and the frame depth is <= the original frame
2882 // depth. (We can't just compare on the method, because we
2883 // might get unrolled past it by an exception, and it's tricky
2884 // to identify recursion.)
2885
2886 int stack_depth = GetStackDepth(thread);
2887
2888 if (stack_depth < single_step_control->stack_depth) {
2889 // Popped up one or more frames, always trigger.
2890 event_flags |= kSingleStep;
2891 VLOG(jdwp) << "SS method pop";
2892 } else if (stack_depth == single_step_control->stack_depth) {
2893 // Same depth, see if we moved.
2894 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002895 event_flags |= kSingleStep;
2896 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002897 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002898 event_flags |= kSingleStep;
2899 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002900 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002901 }
2902 } else {
2903 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2904 // Return from the current method. We break when the frame
2905 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002906
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002907 // This differs from the "method exit" break in that it stops
2908 // with the PC at the next instruction in the returned-to
2909 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002910
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002911 int stack_depth = GetStackDepth(thread);
2912 if (stack_depth < single_step_control->stack_depth) {
2913 event_flags |= kSingleStep;
2914 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002915 }
2916 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002917 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002918
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002919 // If there's something interesting going on, see if it matches one
2920 // of the debugger filters.
2921 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002922 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002923 }
2924}
2925
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002926size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2927 switch (instrumentation_event) {
2928 case instrumentation::Instrumentation::kMethodEntered:
2929 return &method_enter_event_ref_count_;
2930 case instrumentation::Instrumentation::kMethodExited:
2931 return &method_exit_event_ref_count_;
2932 case instrumentation::Instrumentation::kDexPcMoved:
2933 return &dex_pc_change_event_ref_count_;
2934 case instrumentation::Instrumentation::kFieldRead:
2935 return &field_read_event_ref_count_;
2936 case instrumentation::Instrumentation::kFieldWritten:
2937 return &field_write_event_ref_count_;
2938 case instrumentation::Instrumentation::kExceptionCaught:
2939 return &exception_catch_event_ref_count_;
2940 default:
2941 return nullptr;
2942 }
2943}
2944
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002945// Process request while all mutator threads are suspended.
2946void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002947 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002948 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002949 case DeoptimizationRequest::kNothing:
2950 LOG(WARNING) << "Ignoring empty deoptimization request.";
2951 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002952 case DeoptimizationRequest::kRegisterForEvent:
2953 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002954 request.InstrumentationEvent());
2955 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
2956 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002957 break;
2958 case DeoptimizationRequest::kUnregisterForEvent:
2959 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002960 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002961 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002962 request.InstrumentationEvent());
2963 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002964 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002965 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002966 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002967 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002968 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002969 break;
2970 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002971 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002972 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002973 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002974 break;
2975 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002976 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
2977 instrumentation->Deoptimize(request.Method());
2978 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002979 break;
2980 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002981 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
2982 instrumentation->Undeoptimize(request.Method());
2983 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002984 break;
2985 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002986 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002987 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002988 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002989}
2990
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002991void Dbg::DelayFullUndeoptimization() {
Brian Carlstrom306db812014-09-05 13:01:41 -07002992 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002993 ++delayed_full_undeoptimization_count_;
2994 DCHECK_LE(delayed_full_undeoptimization_count_, full_deoptimization_event_count_);
2995}
2996
2997void Dbg::ProcessDelayedFullUndeoptimizations() {
2998 // TODO: avoid taking the lock twice (once here and once in ManageDeoptimization).
2999 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003000 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003001 while (delayed_full_undeoptimization_count_ > 0) {
3002 DeoptimizationRequest req;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003003 req.SetKind(DeoptimizationRequest::kFullUndeoptimization);
3004 req.SetMethod(nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003005 RequestDeoptimizationLocked(req);
3006 --delayed_full_undeoptimization_count_;
3007 }
3008 }
3009 ManageDeoptimization();
3010}
3011
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003012void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003013 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003014 // Nothing to do.
3015 return;
3016 }
Brian Carlstrom306db812014-09-05 13:01:41 -07003017 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003018 RequestDeoptimizationLocked(req);
3019}
3020
3021void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003022 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003023 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003024 DCHECK_NE(req.InstrumentationEvent(), 0u);
3025 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003026 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003027 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003028 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003029 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003030 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003031 deoptimization_requests_.push_back(req);
3032 }
3033 *counter = *counter + 1;
3034 break;
3035 }
3036 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003037 DCHECK_NE(req.InstrumentationEvent(), 0u);
3038 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003039 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003040 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003041 *counter = *counter - 1;
3042 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003043 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003044 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003045 deoptimization_requests_.push_back(req);
3046 }
3047 break;
3048 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003049 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003050 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003051 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003052 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3053 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003054 deoptimization_requests_.push_back(req);
3055 }
3056 ++full_deoptimization_event_count_;
3057 break;
3058 }
3059 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003060 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003061 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003062 --full_deoptimization_event_count_;
3063 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003064 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3065 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003066 deoptimization_requests_.push_back(req);
3067 }
3068 break;
3069 }
3070 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003071 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003072 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003073 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003074 deoptimization_requests_.push_back(req);
3075 break;
3076 }
3077 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003078 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003079 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003080 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003081 deoptimization_requests_.push_back(req);
3082 break;
3083 }
3084 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003085 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003086 break;
3087 }
3088 }
3089}
3090
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003091void Dbg::ManageDeoptimization() {
3092 Thread* const self = Thread::Current();
3093 {
3094 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003095 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003096 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003097 return;
3098 }
3099 }
3100 CHECK_EQ(self->GetState(), kRunnable);
3101 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3102 // We need to suspend mutator threads first.
3103 Runtime* const runtime = Runtime::Current();
3104 runtime->GetThreadList()->SuspendAll();
3105 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003106 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003107 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003108 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003109 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003110 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003111 ProcessDeoptimizationRequest(request);
3112 }
3113 deoptimization_requests_.clear();
3114 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003115 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3116 runtime->GetThreadList()->ResumeAll();
3117 self->TransitionFromSuspendedToRunnable();
3118}
3119
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003120static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3121 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003122 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003123 if (code_item == nullptr) {
3124 // TODO We should not be asked to watch location in a native or abstract method so the code item
3125 // should never be null. We could just check we never encounter this case.
3126 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003127 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003128 // Note: method verifier may cause thread suspension.
3129 self->AssertThreadSuspensionIsAllowable();
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003130 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003131 mirror::Class* declaring_class = m->GetDeclaringClass();
3132 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3133 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003134 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Ian Rogers7b078e82014-09-10 14:44:24 -07003135 verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003136 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method,
Ian Rogers46960fe2014-05-23 10:43:43 -07003137 m->GetAccessFlags(), false, true, false);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003138 // Note: we don't need to verify the method.
3139 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3140}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003141
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003142static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003143 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003144 for (Breakpoint& breakpoint : gBreakpoints) {
3145 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003146 return &breakpoint;
3147 }
3148 }
3149 return nullptr;
3150}
3151
3152// Sanity checks all existing breakpoints on the same method.
3153static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m, bool need_full_deoptimization)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003154 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003155 for (const Breakpoint& breakpoint : gBreakpoints) {
3156 CHECK_EQ(need_full_deoptimization, breakpoint.NeedFullDeoptimization());
3157 }
3158 if (need_full_deoptimization) {
3159 // We should have deoptimized everything but not "selectively" deoptimized this method.
3160 CHECK(Runtime::Current()->GetInstrumentation()->AreAllMethodsDeoptimized());
3161 CHECK(!Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3162 } else {
3163 // We should have "selectively" deoptimized this method.
3164 // Note: while we have not deoptimized everything for this method, we may have done it for
3165 // another event.
3166 CHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003167 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003168}
3169
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003170// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3171// request if we need to deoptimize.
3172void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3173 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003174 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003175 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003176
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003177 const Breakpoint* existing_breakpoint;
3178 {
3179 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3180 existing_breakpoint = FindFirstBreakpointForMethod(m);
3181 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003182 bool need_full_deoptimization;
3183 if (existing_breakpoint == nullptr) {
3184 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3185 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003186 // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension.
3187 // Therefore we must not hold any lock when we call it.
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003188 need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3189 if (need_full_deoptimization) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003190 req->SetKind(DeoptimizationRequest::kFullDeoptimization);
3191 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003192 } else {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003193 req->SetKind(DeoptimizationRequest::kSelectiveDeoptimization);
3194 req->SetMethod(m);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003195 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003196 } else {
3197 // There is at least one breakpoint for this method: we don't need to deoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003198 req->SetKind(DeoptimizationRequest::kNothing);
3199 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003200
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003201 need_full_deoptimization = existing_breakpoint->NeedFullDeoptimization();
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003202 if (kIsDebugBuild) {
3203 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3204 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
3205 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003206 }
3207
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003208 {
3209 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
3210 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, need_full_deoptimization));
3211 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3212 << gBreakpoints[gBreakpoints.size() - 1];
3213 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003214}
3215
3216// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3217// request if we need to undeoptimize.
3218void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003219 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003220 mirror::ArtMethod* m = FromMethodId(location->method_id);
3221 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003222 bool need_full_deoptimization = false;
3223 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003224 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003225 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003226 need_full_deoptimization = gBreakpoints[i].NeedFullDeoptimization();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003227 DCHECK_NE(need_full_deoptimization, Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3228 gBreakpoints.erase(gBreakpoints.begin() + i);
3229 break;
3230 }
3231 }
3232 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3233 if (existing_breakpoint == nullptr) {
3234 // There is no more breakpoint on this method: we need to undeoptimize.
3235 if (need_full_deoptimization) {
3236 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003237 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3238 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003239 } else {
3240 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003241 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3242 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003243 }
3244 } else {
3245 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003246 req->SetKind(DeoptimizationRequest::kNothing);
3247 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003248 if (kIsDebugBuild) {
3249 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
3250 }
Elliott Hughes86964332012-02-15 19:37:42 -08003251 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003252}
3253
Jeff Hao449db332013-04-12 18:30:52 -07003254// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3255// cause suspension if the thread is the current thread.
3256class ScopedThreadSuspension {
3257 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003258 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003259 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003260 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003261 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003262 error_(JDWP::ERR_NONE),
3263 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003264 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003265 ScopedObjectAccessUnchecked soa(self);
3266 {
3267 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003268 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003269 }
3270 if (error_ == JDWP::ERR_NONE) {
3271 if (thread_ == soa.Self()) {
3272 self_suspend_ = true;
3273 } else {
3274 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Sebastien Hertz6995c602014-09-09 12:10:13 +02003275 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003276 bool timed_out;
Ian Rogersf3d874c2014-07-17 18:52:42 -07003277 Thread* suspended_thread;
3278 {
3279 // Take suspend thread lock to avoid races with threads trying to suspend this one.
3280 MutexLock mu(soa.Self(), *Locks::thread_list_suspend_thread_lock_);
Brian Carlstromba32de42014-08-27 23:43:46 -07003281 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3282 suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true, &timed_out);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003283 }
Jeff Hao449db332013-04-12 18:30:52 -07003284 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003285 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003286 // Thread terminated from under us while suspending.
3287 error_ = JDWP::ERR_INVALID_THREAD;
3288 } else {
3289 CHECK_EQ(suspended_thread, thread_);
3290 other_suspend_ = true;
3291 }
3292 }
3293 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003294 }
Elliott Hughes86964332012-02-15 19:37:42 -08003295
Jeff Hao449db332013-04-12 18:30:52 -07003296 Thread* GetThread() const {
3297 return thread_;
3298 }
3299
3300 JDWP::JdwpError GetError() const {
3301 return error_;
3302 }
3303
3304 ~ScopedThreadSuspension() {
3305 if (other_suspend_) {
3306 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3307 }
3308 }
3309
3310 private:
3311 Thread* thread_;
3312 JDWP::JdwpError error_;
3313 bool self_suspend_;
3314 bool other_suspend_;
3315};
3316
3317JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3318 JDWP::JdwpStepDepth step_depth) {
3319 Thread* self = Thread::Current();
3320 ScopedThreadSuspension sts(self, thread_id);
3321 if (sts.GetError() != JDWP::ERR_NONE) {
3322 return sts.GetError();
3323 }
3324
Elliott Hughes2435a572012-02-17 16:07:41 -08003325 //
3326 // Work out what Method* we're in, the current line number, and how deep the stack currently
3327 // is for step-out.
3328 //
3329
Ian Rogers0399dde2012-06-06 17:09:28 -07003330 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003331 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
3332 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003333 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07003334 : StackVisitor(thread, nullptr), single_step_control_(single_step_control),
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003335 line_number_(line_number) {
3336 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
Ian Rogersc0542af2014-09-03 16:16:56 -07003337 single_step_control_->method = nullptr;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003338 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08003339 }
Ian Rogersca190662012-06-26 15:45:57 -07003340
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003341 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3342 // annotalysis.
3343 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003344 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003345 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003346 ++single_step_control_->stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -07003347 if (single_step_control_->method == nullptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003348 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003349 single_step_control_->method = m;
3350 *line_number_ = -1;
Ian Rogersc0542af2014-09-03 16:16:56 -07003351 if (dex_cache != nullptr) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003352 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003353 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003354 }
Elliott Hughes86964332012-02-15 19:37:42 -08003355 }
3356 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003357 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003358 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003359
3360 SingleStepControl* const single_step_control_;
3361 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08003362 };
Jeff Hao449db332013-04-12 18:30:52 -07003363
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003364 Thread* const thread = sts.GetThread();
3365 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
3366 DCHECK(single_step_control != nullptr);
3367 int32_t line_number = -1;
3368 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07003369 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003370
Elliott Hughes2435a572012-02-17 16:07:41 -08003371 //
3372 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
3373 //
3374
3375 struct DebugCallbackContext {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003376 explicit DebugCallbackContext(SingleStepControl* single_step_control, int32_t line_number,
3377 const DexFile::CodeItem* code_item)
3378 : single_step_control_(single_step_control), line_number_(line_number), code_item_(code_item),
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003379 last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003380 }
3381
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003382 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003383 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003384 if (static_cast<int32_t>(line_number) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003385 if (!context->last_pc_valid) {
3386 // Everything from this address until the next line change is ours.
3387 context->last_pc = address;
3388 context->last_pc_valid = true;
3389 }
3390 // Otherwise, if we're already in a valid range for this line,
3391 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003392 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003393 // Add everything from the last entry up until here to the set
3394 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003395 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003396 }
3397 context->last_pc_valid = false;
3398 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003399 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003400 }
3401
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003402 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003403 // If the line number was the last in the position table...
3404 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003405 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003406 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003407 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003408 }
3409 }
3410 }
3411
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003412 SingleStepControl* const single_step_control_;
3413 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003414 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003415 bool last_pc_valid;
3416 uint32_t last_pc;
3417 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003418 single_step_control->dex_pcs.clear();
Ian Rogersef7d42f2014-01-06 12:55:46 -08003419 mirror::ArtMethod* m = single_step_control->method;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003420 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003421 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003422 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003423 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07003424 DebugCallbackContext::Callback, nullptr, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003425 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003426
3427 //
3428 // Everything else...
3429 //
3430
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003431 single_step_control->step_size = step_size;
3432 single_step_control->step_depth = step_depth;
3433 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08003434
Elliott Hughes2435a572012-02-17 16:07:41 -08003435 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003436 VLOG(jdwp) << "Single-step thread: " << *thread;
3437 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
3438 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
3439 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
3440 VLOG(jdwp) << "Single-step current line: " << line_number;
3441 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08003442 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003443 for (uint32_t dex_pc : single_step_control->dex_pcs) {
3444 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003445 }
3446 }
3447
3448 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003449}
3450
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003451void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3452 ScopedObjectAccessUnchecked soa(Thread::Current());
3453 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003454 JDWP::JdwpError error;
3455 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003456 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003457 SingleStepControl* single_step_control = thread->GetSingleStepControl();
3458 DCHECK(single_step_control != nullptr);
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003459 single_step_control->Clear();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003460 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003461}
3462
Elliott Hughes45651fd2012-02-21 15:48:20 -08003463static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3464 switch (tag) {
3465 default:
3466 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
3467
3468 // Primitives.
3469 case JDWP::JT_BYTE: return 'B';
3470 case JDWP::JT_CHAR: return 'C';
3471 case JDWP::JT_FLOAT: return 'F';
3472 case JDWP::JT_DOUBLE: return 'D';
3473 case JDWP::JT_INT: return 'I';
3474 case JDWP::JT_LONG: return 'J';
3475 case JDWP::JT_SHORT: return 'S';
3476 case JDWP::JT_VOID: return 'V';
3477 case JDWP::JT_BOOLEAN: return 'Z';
3478
3479 // Reference types.
3480 case JDWP::JT_ARRAY:
3481 case JDWP::JT_OBJECT:
3482 case JDWP::JT_STRING:
3483 case JDWP::JT_THREAD:
3484 case JDWP::JT_THREAD_GROUP:
3485 case JDWP::JT_CLASS_LOADER:
3486 case JDWP::JT_CLASS_OBJECT:
3487 return 'L';
3488 }
3489}
3490
Elliott Hughes88d63092013-01-09 09:55:54 -08003491JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3492 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003493 uint32_t arg_count, uint64_t* arg_values,
3494 JDWP::JdwpTag* arg_types, uint32_t options,
3495 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3496 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003497 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3498
Ian Rogersc0542af2014-09-03 16:16:56 -07003499 Thread* targetThread = nullptr;
3500 DebugInvokeReq* req = nullptr;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003501 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003502 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003503 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003504 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003505 JDWP::JdwpError error;
3506 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003507 if (error != JDWP::ERR_NONE) {
3508 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3509 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003510 }
3511 req = targetThread->GetInvokeReq();
3512 if (!req->ready) {
3513 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3514 return JDWP::ERR_INVALID_THREAD;
3515 }
3516
3517 /*
3518 * We currently have a bug where we don't successfully resume the
3519 * target thread if the suspend count is too deep. We're expected to
3520 * require one "resume" for each "suspend", but when asked to execute
3521 * a method we have to resume fully and then re-suspend it back to the
3522 * same level. (The easiest way to cause this is to type "suspend"
3523 * multiple times in jdb.)
3524 *
3525 * It's unclear what this means when the event specifies "resume all"
3526 * and some threads are suspended more deeply than others. This is
3527 * a rare problem, so for now we just prevent it from hanging forever
3528 * by rejecting the method invocation request. Without this, we will
3529 * be stuck waiting on a suspended thread.
3530 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003531 int suspend_count;
3532 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003533 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003534 suspend_count = targetThread->GetSuspendCount();
3535 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003536 if (suspend_count > 1) {
3537 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003538 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003539 }
3540
Ian Rogersc0542af2014-09-03 16:16:56 -07003541 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3542 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003543 return JDWP::ERR_INVALID_OBJECT;
3544 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003545
Ian Rogersc0542af2014-09-03 16:16:56 -07003546 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id, &error);
3547 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003548 return JDWP::ERR_INVALID_OBJECT;
3549 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003550 // TODO: check that 'thread' is actually a java.lang.Thread!
3551
Ian Rogersc0542af2014-09-03 16:16:56 -07003552 mirror::Class* c = DecodeClass(class_id, &error);
3553 if (c == nullptr) {
3554 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003555 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003556
Brian Carlstromea46f952013-07-30 01:26:50 -07003557 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003558 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003559 return JDWP::ERR_INVALID_METHODID;
3560 }
3561 if (m->IsStatic()) {
3562 if (m->GetDeclaringClass() != c) {
3563 return JDWP::ERR_INVALID_METHODID;
3564 }
3565 } else {
3566 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3567 return JDWP::ERR_INVALID_METHODID;
3568 }
3569 }
3570
3571 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003572 uint32_t shorty_len = 0;
3573 const char* shorty = m->GetShorty(&shorty_len);
3574 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003575 return JDWP::ERR_ILLEGAL_ARGUMENT;
3576 }
Elliott Hughes09201632013-04-15 15:50:07 -07003577
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003578 {
3579 StackHandleScope<3> hs(soa.Self());
3580 MethodHelper mh(hs.NewHandle(m));
3581 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3582 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3583 const DexFile::TypeList* types = m->GetParameterTypeList();
3584 for (size_t i = 0; i < arg_count; ++i) {
3585 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003586 return JDWP::ERR_ILLEGAL_ARGUMENT;
3587 }
3588
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003589 if (shorty[i + 1] == 'L') {
3590 // Did we really get an argument of an appropriate reference type?
3591 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003592 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
3593 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003594 return JDWP::ERR_INVALID_OBJECT;
3595 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003596 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003597 return JDWP::ERR_ILLEGAL_ARGUMENT;
3598 }
3599
3600 // Turn the on-the-wire ObjectId into a jobject.
3601 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3602 v.l = gRegistry->GetJObject(arg_values[i]);
3603 }
Elliott Hughes09201632013-04-15 15:50:07 -07003604 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003605 // Update in case it moved.
3606 m = mh.GetMethod();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003607 }
3608
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003609 req->receiver = receiver;
3610 req->thread = thread;
3611 req->klass = c;
3612 req->method = m;
3613 req->arg_count = arg_count;
3614 req->arg_values = arg_values;
3615 req->options = options;
3616 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003617 }
3618
3619 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3620 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3621 // call, and it's unwise to hold it during WaitForSuspend.
3622
3623 {
3624 /*
3625 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003626 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003627 * run out of memory. It's also a good idea to change it before locking
3628 * the invokeReq mutex, although that should never be held for long.
3629 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003630 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003631
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003632 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003633 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003634 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003635
3636 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003637 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003638 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003639 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003640 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003641 thread_list->Resume(targetThread, true);
3642 }
3643
3644 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003645 while (req->invoke_needed) {
3646 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003647 }
3648 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003649 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003650
3651 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003652 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003653 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003654 }
3655
3656 /*
3657 * Suspend the threads. We waited for the target thread to suspend
3658 * itself, so all we need to do is suspend the others.
3659 *
3660 * The suspendAllThreads() call will double-suspend the event thread,
3661 * so we want to resume the target thread once to keep the books straight.
3662 */
3663 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003664 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003665 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003666 thread_list->SuspendAllForDebugger();
3667 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003668 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003669 thread_list->Resume(targetThread, true);
3670 }
3671
3672 // Copy the result.
3673 *pResultTag = req->result_tag;
3674 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003675 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003676 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003677 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003678 }
3679 *pExceptionId = req->exception;
3680 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003681}
3682
3683void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003684 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003685
Elliott Hughes81ff3182012-03-23 20:35:56 -07003686 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003687 // to preserve that across the method invocation.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003688 StackHandleScope<4> hs(soa.Self());
3689 auto old_throw_this_object = hs.NewHandle<mirror::Object>(nullptr);
3690 auto old_throw_method = hs.NewHandle<mirror::ArtMethod>(nullptr);
3691 auto old_exception = hs.NewHandle<mirror::Throwable>(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003692 uint32_t old_throw_dex_pc;
Sebastien Hertz9f102032014-05-23 08:59:42 +02003693 bool old_exception_report_flag;
Ian Rogers62d6c772013-02-27 08:32:07 -08003694 {
3695 ThrowLocation old_throw_location;
3696 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003697 old_throw_this_object.Assign(old_throw_location.GetThis());
3698 old_throw_method.Assign(old_throw_location.GetMethod());
3699 old_exception.Assign(old_exception_obj);
Ian Rogers62d6c772013-02-27 08:32:07 -08003700 old_throw_dex_pc = old_throw_location.GetDexPc();
Sebastien Hertz9f102032014-05-23 08:59:42 +02003701 old_exception_report_flag = soa.Self()->IsExceptionReportedToInstrumentation();
Ian Rogers62d6c772013-02-27 08:32:07 -08003702 soa.Self()->ClearException();
3703 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003704
3705 // Translate the method through the vtable, unless the debugger wants to suppress it.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003706 MutableHandle<mirror::ArtMethod> m(hs.NewHandle(pReq->method));
Ian Rogersc0542af2014-09-03 16:16:56 -07003707 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003708 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.Get());
3709 if (actual_method != m.Get()) {
3710 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get()) << " to " << PrettyMethod(actual_method);
3711 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003712 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003713 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003714 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003715 << " receiver=" << pReq->receiver
3716 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003717 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003718
3719 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3720
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003721 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.Get()),
Ian Rogers53b8b092014-03-13 23:45:53 -07003722 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003723
Ian Rogersc0542af2014-09-03 16:16:56 -07003724 mirror::Throwable* exception = soa.Self()->GetException(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003725 soa.Self()->ClearException();
3726 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003727 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003728 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003729 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3730 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003731 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003732 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3733 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003734 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003735 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003736 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003737 pReq->result_tag = new_tag;
3738 }
3739
3740 /*
3741 * Register the object. We don't actually need an ObjectId yet,
3742 * but we do need to be sure that the GC won't move or discard the
3743 * object when we switch out of RUNNING. The ObjectId conversion
3744 * will add the object to the "do not touch" list.
3745 *
3746 * We can't use the "tracked allocation" mechanism here because
3747 * the object is going to be handed off to a different thread.
3748 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003749 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003750 }
3751
Ian Rogersc0542af2014-09-03 16:16:56 -07003752 if (old_exception.Get() != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003753 ThrowLocation gc_safe_throw_location(old_throw_this_object.Get(), old_throw_method.Get(),
Ian Rogers62d6c772013-02-27 08:32:07 -08003754 old_throw_dex_pc);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003755 soa.Self()->SetException(gc_safe_throw_location, old_exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +02003756 soa.Self()->SetExceptionReportedToInstrumentation(old_exception_report_flag);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003757 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003758}
3759
Elliott Hughesd07986f2011-12-06 18:27:45 -08003760/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003761 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003762 * need to process each, accumulate the replies, and ship the whole thing
3763 * back.
3764 *
3765 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3766 * and includes the chunk type/length, followed by the data.
3767 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003768 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003769 * chunk. If this becomes inconvenient we will need to adapt.
3770 */
Ian Rogersc0542af2014-09-03 16:16:56 -07003771bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003772 Thread* self = Thread::Current();
3773 JNIEnv* env = self->GetJniEnv();
3774
Ian Rogersc0542af2014-09-03 16:16:56 -07003775 uint32_t type = request->ReadUnsigned32("type");
3776 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003777
3778 // Create a byte[] corresponding to 'request'.
Ian Rogersc0542af2014-09-03 16:16:56 -07003779 size_t request_length = request->size();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003780 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Ian Rogersc0542af2014-09-03 16:16:56 -07003781 if (dataArray.get() == nullptr) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003782 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003783 env->ExceptionClear();
3784 return false;
3785 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003786 env->SetByteArrayRegion(dataArray.get(), 0, request_length,
3787 reinterpret_cast<const jbyte*>(request->data()));
3788 request->Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003789
3790 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003791 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003792 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003793 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003794 return false;
3795 }
3796
3797 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003798 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3799 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003800 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003801 if (env->ExceptionCheck()) {
3802 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3803 env->ExceptionDescribe();
3804 env->ExceptionClear();
3805 return false;
3806 }
3807
Ian Rogersc0542af2014-09-03 16:16:56 -07003808 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003809 return false;
3810 }
3811
3812 /*
3813 * Pull the pieces out of the chunk. We copy the results into a
3814 * newly-allocated buffer that the caller can free. We don't want to
3815 * continue using the Chunk object because nothing has a reference to it.
3816 *
3817 * We could avoid this by returning type/data/offset/length and having
3818 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003819 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003820 * if we have responses for multiple chunks.
3821 *
3822 * So we're pretty much stuck with copying data around multiple times.
3823 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003824 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 -08003825 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003826 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003827 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003828
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003829 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 -07003830 if (length == 0 || replyData.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003831 return false;
3832 }
3833
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003834 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003835 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
Ian Rogersc0542af2014-09-03 16:16:56 -07003836 if (reply == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003837 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3838 return false;
3839 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003840 JDWP::Set4BE(reply + 0, type);
3841 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003842 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003843
3844 *pReplyBuf = reply;
3845 *pReplyLen = length + kChunkHdrLen;
3846
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003847 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003848 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003849}
3850
Elliott Hughesa2155262011-11-16 16:26:58 -08003851void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003852 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003853
3854 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003855 if (self->GetState() != kRunnable) {
3856 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3857 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003858 }
3859
3860 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003861 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003862 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3863 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3864 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003865 if (env->ExceptionCheck()) {
3866 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3867 env->ExceptionDescribe();
3868 env->ExceptionClear();
3869 }
3870}
3871
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003872void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003873 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003874}
3875
3876void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003877 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003878 gDdmThreadNotification = false;
3879}
3880
3881/*
Elliott Hughes82188472011-11-07 18:11:48 -08003882 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003883 *
3884 * Because we broadcast the full set of threads when the notifications are
3885 * first enabled, it's possible for "thread" to be actively executing.
3886 */
Elliott Hughes82188472011-11-07 18:11:48 -08003887void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003888 if (!gDdmThreadNotification) {
3889 return;
3890 }
3891
Elliott Hughes82188472011-11-07 18:11:48 -08003892 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003893 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003894 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003895 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003896 } else {
3897 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003898 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003899 StackHandleScope<1> hs(soa.Self());
3900 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
Ian Rogersc0542af2014-09-03 16:16:56 -07003901 size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0;
3902 const jchar* chars = (name.Get() != nullptr) ? name->GetCharArray()->GetData() : nullptr;
Elliott Hughes82188472011-11-07 18:11:48 -08003903
Elliott Hughes21f32d72011-11-09 17:44:13 -08003904 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003905 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003906 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003907 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3908 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003909 }
3910}
3911
Elliott Hughes47fce012011-10-25 18:37:19 -07003912void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003913 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003914 gDdmThreadNotification = enable;
3915 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003916 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3917 // see a suspension in progress and block until that ends. They then post their own start
3918 // notification.
3919 SuspendVM();
3920 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003921 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003922 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003923 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003924 threads = Runtime::Current()->GetThreadList()->GetList();
3925 }
3926 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003927 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003928 for (Thread* thread : threads) {
3929 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003930 }
3931 }
3932 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003933 }
3934}
3935
Elliott Hughesa2155262011-11-16 16:26:58 -08003936void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003937 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02003938 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003939 }
Elliott Hughes82188472011-11-07 18:11:48 -08003940 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003941}
3942
3943void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003944 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003945}
3946
3947void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003948 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003949}
3950
Elliott Hughes82188472011-11-07 18:11:48 -08003951void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Ian Rogersc0542af2014-09-03 16:16:56 -07003952 CHECK(buf != nullptr);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003953 iovec vec[1];
3954 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3955 vec[0].iov_len = byte_count;
3956 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003957}
3958
Elliott Hughes21f32d72011-11-09 17:44:13 -08003959void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3960 DdmSendChunk(type, bytes.size(), &bytes[0]);
3961}
3962
Brian Carlstromf5293522013-07-19 00:24:00 -07003963void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Ian Rogersc0542af2014-09-03 16:16:56 -07003964 if (gJdwpState == nullptr) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003965 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003966 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003967 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003968 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003969}
3970
Elliott Hughes767a1472011-10-26 18:49:02 -07003971int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3972 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003973 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003974 return true;
3975 }
3976
3977 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
3978 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
3979 return false;
3980 }
3981
3982 gDdmHpifWhen = when;
3983 return true;
3984}
3985
3986bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
3987 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
3988 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
3989 return false;
3990 }
3991
3992 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
3993 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
3994 return false;
3995 }
3996
3997 if (native) {
3998 gDdmNhsgWhen = when;
3999 gDdmNhsgWhat = what;
4000 } else {
4001 gDdmHpsgWhen = when;
4002 gDdmHpsgWhat = what;
4003 }
4004 return true;
4005}
4006
Elliott Hughes7162ad92011-10-27 14:08:42 -07004007void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4008 // If there's a one-shot 'when', reset it.
4009 if (reason == gDdmHpifWhen) {
4010 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4011 gDdmHpifWhen = HPIF_WHEN_NEVER;
4012 }
4013 }
4014
4015 /*
4016 * Chunk HPIF (client --> server)
4017 *
4018 * Heap Info. General information about the heap,
4019 * suitable for a summary display.
4020 *
4021 * [u4]: number of heaps
4022 *
4023 * For each heap:
4024 * [u4]: heap ID
4025 * [u8]: timestamp in ms since Unix epoch
4026 * [u1]: capture reason (same as 'when' value from server)
4027 * [u4]: max heap size in bytes (-Xmx)
4028 * [u4]: current heap size in bytes
4029 * [u4]: current number of bytes allocated
4030 * [u4]: current number of objects allocated
4031 */
4032 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004033 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004034 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004035 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004036 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004037 JDWP::Append8BE(bytes, MilliTime());
4038 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004039 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4040 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004041 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4042 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004043 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
4044 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07004045}
4046
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004047enum HpsgSolidity {
4048 SOLIDITY_FREE = 0,
4049 SOLIDITY_HARD = 1,
4050 SOLIDITY_SOFT = 2,
4051 SOLIDITY_WEAK = 3,
4052 SOLIDITY_PHANTOM = 4,
4053 SOLIDITY_FINALIZABLE = 5,
4054 SOLIDITY_SWEEP = 6,
4055};
4056
4057enum HpsgKind {
4058 KIND_OBJECT = 0,
4059 KIND_CLASS_OBJECT = 1,
4060 KIND_ARRAY_1 = 2,
4061 KIND_ARRAY_2 = 3,
4062 KIND_ARRAY_4 = 4,
4063 KIND_ARRAY_8 = 5,
4064 KIND_UNKNOWN = 6,
4065 KIND_NATIVE = 7,
4066};
4067
4068#define HPSG_PARTIAL (1<<7)
4069#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4070
Ian Rogers30fab402012-01-23 15:43:46 -08004071class HeapChunkContext {
4072 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004073 // Maximum chunk size. Obtain this from the formula:
4074 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4075 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004076 : buf_(16384 - 16),
4077 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004078 merge_(merge),
4079 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004080 Reset();
4081 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004082 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004083 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004084 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004085 }
4086 }
4087
4088 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004089 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004090 Flush();
4091 }
4092 }
4093
Mathieu Chartier36dab362014-07-30 14:59:56 -07004094 void SetChunkOverhead(size_t chunk_overhead) {
4095 chunk_overhead_ = chunk_overhead;
4096 }
4097
4098 void ResetStartOfNextChunk() {
4099 startOfNextMemoryChunk_ = nullptr;
4100 }
4101
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004102 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004103 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004104 return;
4105 }
4106
4107 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004108 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4109 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004110
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004111 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4112 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004113 // [u4]: length of piece, in allocation units
4114 // 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 -08004115 pieceLenField_ = p_;
4116 JDWP::Write4BE(&p_, 0x55555555);
4117 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004118 }
4119
Ian Rogersb726dcb2012-09-05 08:57:23 -07004120 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004121 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004122 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4123 CHECK(needHeader_);
4124 return;
4125 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004126 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004127 CHECK_LE(&buf_[0], pieceLenField_);
4128 CHECK_LE(pieceLenField_, p_);
4129 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004130
Ian Rogers30fab402012-01-23 15:43:46 -08004131 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004132 Reset();
4133 }
4134
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004135 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004136 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4137 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004138 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004139 }
4140
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004141 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004142 enum { ALLOCATION_UNIT_SIZE = 8 };
4143
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004144 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004145 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004146 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004147 totalAllocationUnits_ = 0;
4148 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004149 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004150 }
4151
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004152 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004153 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4154 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004155 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4156 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004157 if (used_bytes == 0) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004158 if (start == nullptr) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004159 // Reset for start of new heap.
Ian Rogersc0542af2014-09-03 16:16:56 -07004160 startOfNextMemoryChunk_ = nullptr;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004161 Flush();
4162 }
4163 // Only process in use memory so that free region information
4164 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08004165 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08004166 }
4167
Ian Rogers15bf2d32012-08-28 17:33:04 -07004168 /* If we're looking at the native heap, we'll just return
4169 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
4170 */
4171 bool native = type_ == CHUNK_TYPE("NHSG");
4172
Mathieu Chartier36dab362014-07-30 14:59:56 -07004173 // TODO: I'm not sure using start of next chunk works well with multiple spaces. We shouldn't
4174 // count gaps inbetween spaces as free memory.
Ian Rogersc0542af2014-09-03 16:16:56 -07004175 if (startOfNextMemoryChunk_ != nullptr) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004176 // Transmit any pending free memory. Native free memory of
4177 // over kMaxFreeLen could be because of the use of mmaps, so
4178 // don't report. If not free memory then start a new segment.
4179 bool flush = true;
4180 if (start > startOfNextMemoryChunk_) {
4181 const size_t kMaxFreeLen = 2 * kPageSize;
4182 void* freeStart = startOfNextMemoryChunk_;
4183 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07004184 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07004185 if (!native || freeLen < kMaxFreeLen) {
4186 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
4187 flush = false;
4188 }
4189 }
4190 if (flush) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004191 startOfNextMemoryChunk_ = nullptr;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004192 Flush();
4193 }
4194 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08004195 mirror::Object* obj = reinterpret_cast<mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08004196
4197 // Determine the type of this chunk.
4198 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4199 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004200 uint8_t state = ExamineObject(obj, native);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004201 AppendChunk(state, start, used_bytes + chunk_overhead_);
4202 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004203 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004204
Ian Rogers15bf2d32012-08-28 17:33:04 -07004205 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004206 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004207 // Make sure there's enough room left in the buffer.
4208 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4209 // 17 bytes for any header.
4210 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
4211 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4212 if (bytesLeft < needed) {
4213 Flush();
4214 }
4215
4216 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4217 if (bytesLeft < needed) {
4218 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4219 << needed << " bytes)";
4220 return;
4221 }
4222 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004223 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004224 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4225 totalAllocationUnits_ += length;
4226 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004227 *p_++ = state | HPSG_PARTIAL;
4228 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004229 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004230 }
Ian Rogers30fab402012-01-23 15:43:46 -08004231 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004232 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004233 }
4234
Ian Rogersef7d42f2014-01-06 12:55:46 -08004235 uint8_t ExamineObject(mirror::Object* o, bool is_native_heap)
4236 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004237 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004238 return HPSG_STATE(SOLIDITY_FREE, 0);
4239 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004240
Elliott Hughesa2155262011-11-16 16:26:58 -08004241 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004242
Elliott Hughesa2155262011-11-16 16:26:58 -08004243 // If we're looking at the native heap, we'll just return
4244 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004245 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004246 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4247 }
4248
Ian Rogers5bfa60f2012-09-02 21:17:56 -07004249 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004250 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004251 }
4252
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004253 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004254 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004255 // The object was probably just created but hasn't been initialized yet.
4256 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4257 }
4258
Mathieu Chartier590fee92013-09-13 13:46:47 -07004259 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004260 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004261 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4262 }
4263
4264 if (c->IsClassClass()) {
4265 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4266 }
4267
4268 if (c->IsArrayClass()) {
4269 if (o->IsObjectArray()) {
4270 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4271 }
4272 switch (c->GetComponentSize()) {
4273 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4274 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4275 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4276 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4277 }
4278 }
4279
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004280 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4281 }
4282
Ian Rogers30fab402012-01-23 15:43:46 -08004283 std::vector<uint8_t> buf_;
4284 uint8_t* p_;
4285 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004286 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004287 size_t totalAllocationUnits_;
4288 uint32_t type_;
4289 bool merge_;
4290 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004291 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004292
Elliott Hughesa2155262011-11-16 16:26:58 -08004293 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4294};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004295
Mathieu Chartier36dab362014-07-30 14:59:56 -07004296static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
4297 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
4298 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
4299 HeapChunkContext::HeapChunkCallback(
4300 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4301}
4302
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004303void Dbg::DdmSendHeapSegments(bool native) {
4304 Dbg::HpsgWhen when;
4305 Dbg::HpsgWhat what;
4306 if (!native) {
4307 when = gDdmHpsgWhen;
4308 what = gDdmHpsgWhat;
4309 } else {
4310 when = gDdmNhsgWhen;
4311 what = gDdmNhsgWhat;
4312 }
4313 if (when == HPSG_WHEN_NEVER) {
4314 return;
4315 }
4316
4317 // Figure out what kind of chunks we'll be sending.
4318 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
4319
4320 // First, send a heap start chunk.
4321 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004322 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004323 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
4324
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004325 Thread* self = Thread::Current();
4326
4327 // To allow the Walk/InspectAll() below to exclusively-lock the
4328 // mutator lock, temporarily release the shared access to the
4329 // mutator lock here by transitioning to the suspended state.
4330 Locks::mutator_lock_->AssertSharedHeld(self);
4331 self->TransitionFromRunnableToSuspended(kSuspended);
4332
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004333 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08004334 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
4335 if (native) {
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004336#ifdef USE_DLMALLOC
Ian Rogers1d54e732013-05-02 21:10:01 -07004337 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004338#else
4339 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4340#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004341 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004342 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004343 for (const auto& space : heap->GetContinuousSpaces()) {
4344 if (space->IsDlMallocSpace()) {
4345 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4346 // allocation then the first sizeof(size_t) may belong to it.
4347 context.SetChunkOverhead(sizeof(size_t));
4348 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
4349 } else if (space->IsRosAllocSpace()) {
4350 context.SetChunkOverhead(0);
4351 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
4352 } else if (space->IsBumpPointerSpace()) {
4353 context.SetChunkOverhead(0);
4354 ReaderMutexLock mu(self, *Locks::mutator_lock_);
4355 WriterMutexLock mu2(self, *Locks::heap_bitmap_lock_);
4356 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
4357 } else {
4358 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004359 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004360 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004361 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004362 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004363 context.SetChunkOverhead(0);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004364 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004365 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004366
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004367 // Shared-lock the mutator lock back.
4368 self->TransitionFromSuspendedToRunnable();
4369 Locks::mutator_lock_->AssertSharedHeld(self);
4370
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004371 // Finally, send a heap end chunk.
4372 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004373}
4374
Elliott Hughesb1a58792013-07-11 18:10:58 -07004375static size_t GetAllocTrackerMax() {
4376#ifdef HAVE_ANDROID_OS
4377 // Check whether there's a system property overriding the number of records.
4378 const char* propertyName = "dalvik.vm.allocTrackerMax";
4379 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4380 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4381 char* end;
4382 size_t value = strtoul(allocRecordMaxString, &end, 10);
4383 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004384 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4385 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004386 return kDefaultNumAllocRecords;
4387 }
4388 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004389 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4390 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004391 return kDefaultNumAllocRecords;
4392 }
4393 return value;
4394 }
4395#endif
4396 return kDefaultNumAllocRecords;
4397}
4398
Brian Carlstrom306db812014-09-05 13:01:41 -07004399void Dbg::SetAllocTrackingEnabled(bool enable) {
4400 Thread* self = Thread::Current();
4401 if (enable) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004402 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004403 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4404 if (recent_allocation_records_ != nullptr) {
4405 return; // Already enabled, bail.
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004406 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004407 alloc_record_max_ = GetAllocTrackerMax();
4408 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4409 << kMaxAllocRecordStackDepth << " frames, taking "
4410 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4411 DCHECK_EQ(alloc_record_head_, 0U);
4412 DCHECK_EQ(alloc_record_count_, 0U);
4413 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4414 CHECK(recent_allocation_records_ != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004415 }
Jeff Hao69dbec62014-09-15 18:03:41 -07004416 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints(false);
Elliott Hughes545a0642011-11-08 19:10:03 -08004417 } else {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004418 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004419 ScopedObjectAccess soa(self); // For type_cache_.Clear();
4420 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4421 if (recent_allocation_records_ == nullptr) {
4422 return; // Already disabled, bail.
4423 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07004424 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004425 delete[] recent_allocation_records_;
Ian Rogersc0542af2014-09-03 16:16:56 -07004426 recent_allocation_records_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -07004427 alloc_record_head_ = 0;
4428 alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004429 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004430 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004431 // If an allocation comes in before we uninstrument, we will safely drop it on the floor.
Jeff Hao69dbec62014-09-15 18:03:41 -07004432 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints(false);
Elliott Hughes545a0642011-11-08 19:10:03 -08004433 }
4434}
4435
Ian Rogers0399dde2012-06-06 17:09:28 -07004436struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08004437 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004438 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07004439 : StackVisitor(thread, nullptr), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004440
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004441 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4442 // annotalysis.
4443 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004444 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004445 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004446 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004447 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004448 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004449 record->StackElement(depth)->SetMethod(m);
4450 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004451 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004452 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004453 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004454 }
4455
4456 ~AllocRecordStackVisitor() {
4457 // Clear out any unused stack trace elements.
4458 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004459 record->StackElement(depth)->SetMethod(nullptr);
4460 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004461 }
4462 }
4463
4464 AllocRecord* record;
4465 size_t depth;
4466};
4467
Ian Rogers844506b2014-09-12 19:59:33 -07004468void Dbg::RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004469 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004470 if (recent_allocation_records_ == nullptr) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004471 // In the process of shutting down recording, bail.
Elliott Hughes545a0642011-11-08 19:10:03 -08004472 return;
4473 }
4474
4475 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004476 if (++alloc_record_head_ == alloc_record_max_) {
4477 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004478 }
4479
4480 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004481 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004482 record->SetType(type);
4483 record->SetByteCount(byte_count);
4484 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004485
4486 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004487 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004488 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004489
Ian Rogers719d1a32014-03-06 12:13:39 -08004490 if (alloc_record_count_ < alloc_record_max_) {
4491 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004492 }
4493}
4494
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004495// Returns the index of the head element.
4496//
Brian Carlstrom306db812014-09-05 13:01:41 -07004497// We point at the most-recently-written record, so if alloc_record_count_ is 1
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004498// we want to use the current element. Take "head+1" and subtract count
4499// from it.
4500//
4501// We need to handle underflow in our circular buffer, so we add
Brian Carlstrom306db812014-09-05 13:01:41 -07004502// alloc_record_max_ and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004503size_t Dbg::HeadIndex() {
4504 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4505 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004506}
4507
4508void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004509 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004510 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004511 if (recent_allocation_records_ == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004512 LOG(INFO) << "Not recording tracked allocations";
4513 return;
4514 }
4515
4516 // "i" is the head of the list. We want to start at the end of the
4517 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004518 size_t i = HeadIndex();
Brian Carlstrom306db812014-09-05 13:01:41 -07004519 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4520 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004521
Ian Rogers719d1a32014-03-06 12:13:39 -08004522 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004523 while (count--) {
4524 AllocRecord* record = &recent_allocation_records_[i];
4525
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004526 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4527 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004528
4529 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004530 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4531 mirror::ArtMethod* m = stack_element->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004532 if (m == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004533 break;
4534 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004535 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004536 }
4537
4538 // pause periodically to help logcat catch up
4539 if ((count % 5) == 0) {
4540 usleep(40000);
4541 }
4542
Ian Rogers719d1a32014-03-06 12:13:39 -08004543 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004544 }
4545}
4546
4547class StringTable {
4548 public:
4549 StringTable() {
4550 }
4551
Mathieu Chartier4345c462014-06-27 10:20:14 -07004552 void Add(const std::string& str) {
4553 table_.insert(str);
4554 }
4555
4556 void Add(const char* str) {
4557 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004558 }
4559
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004560 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004561 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004562 if (it == table_.end()) {
4563 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4564 }
4565 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004566 }
4567
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004568 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004569 return table_.size();
4570 }
4571
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004572 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004573 for (const std::string& str : table_) {
4574 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004575 size_t s_len = CountModifiedUtf8Chars(s);
Ian Rogers700a4022014-05-19 16:49:03 -07004576 std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004577 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4578 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004579 }
4580 }
4581
4582 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004583 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004584 DISALLOW_COPY_AND_ASSIGN(StringTable);
4585};
4586
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004587static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004588 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004589 DCHECK(method != nullptr);
4590 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004591 return (source_file != nullptr) ? source_file : "";
4592}
4593
Elliott Hughes545a0642011-11-08 19:10:03 -08004594/*
4595 * The data we send to DDMS contains everything we have recorded.
4596 *
4597 * Message header (all values big-endian):
4598 * (1b) message header len (to allow future expansion); includes itself
4599 * (1b) entry header len
4600 * (1b) stack frame len
4601 * (2b) number of entries
4602 * (4b) offset to string table from start of message
4603 * (2b) number of class name strings
4604 * (2b) number of method name strings
4605 * (2b) number of source file name strings
4606 * For each entry:
4607 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004608 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004609 * (2b) allocated object's class name index
4610 * (1b) stack depth
4611 * For each stack frame:
4612 * (2b) method's class name
4613 * (2b) method name
4614 * (2b) method source file
4615 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4616 * (xb) class name strings
4617 * (xb) method name strings
4618 * (xb) source file strings
4619 *
4620 * As with other DDM traffic, strings are sent as a 4-byte length
4621 * followed by UTF-16 data.
4622 *
4623 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07004624 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004625 * each table, but in practice there should be far fewer.
4626 *
4627 * The chief reason for using a string table here is to keep the size of
4628 * the DDMS message to a minimum. This is partly to make the protocol
4629 * efficient, but also because we have to form the whole thing up all at
4630 * once in a memory buffer.
4631 *
4632 * We use separate string tables for class names, method names, and source
4633 * files to keep the indexes small. There will generally be no overlap
4634 * between the contents of these tables.
4635 */
4636jbyteArray Dbg::GetRecentAllocations() {
4637 if (false) {
4638 DumpRecentAllocations();
4639 }
4640
Ian Rogers50b35e22012-10-04 10:09:15 -07004641 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004642 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004643 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004644 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004645 //
4646 // Part 1: generate string tables.
4647 //
4648 StringTable class_names;
4649 StringTable method_names;
4650 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004651
Brian Carlstrom306db812014-09-05 13:01:41 -07004652 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4653 uint16_t count = capped_count;
4654 size_t idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004655 while (count--) {
4656 AllocRecord* record = &recent_allocation_records_[idx];
Ian Rogers1ff3c982014-08-12 02:30:58 -07004657 std::string temp;
4658 class_names.Add(record->Type()->GetDescriptor(&temp));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004659 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004660 mirror::ArtMethod* m = record->StackElement(i)->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004661 if (m != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004662 class_names.Add(m->GetDeclaringClassDescriptor());
4663 method_names.Add(m->GetName());
4664 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004665 }
4666 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004667
Ian Rogers719d1a32014-03-06 12:13:39 -08004668 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004669 }
4670
Brian Carlstrom306db812014-09-05 13:01:41 -07004671 LOG(INFO) << "allocation records: " << capped_count;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004672
4673 //
4674 // Part 2: Generate the output and store it in the buffer.
4675 //
4676
4677 // (1b) message header len (to allow future expansion); includes itself
4678 // (1b) entry header len
4679 // (1b) stack frame len
4680 const int kMessageHeaderLen = 15;
4681 const int kEntryHeaderLen = 9;
4682 const int kStackFrameLen = 8;
4683 JDWP::Append1BE(bytes, kMessageHeaderLen);
4684 JDWP::Append1BE(bytes, kEntryHeaderLen);
4685 JDWP::Append1BE(bytes, kStackFrameLen);
4686
4687 // (2b) number of entries
4688 // (4b) offset to string table from start of message
4689 // (2b) number of class name strings
4690 // (2b) number of method name strings
4691 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07004692 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004693 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004694 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004695 JDWP::Append2BE(bytes, class_names.Size());
4696 JDWP::Append2BE(bytes, method_names.Size());
4697 JDWP::Append2BE(bytes, filenames.Size());
4698
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004699 idx = HeadIndex();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004700 std::string temp;
Brian Carlstrom306db812014-09-05 13:01:41 -07004701 for (count = capped_count; count != 0; --count) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004702 // For each entry:
4703 // (4b) total allocation size
4704 // (2b) thread id
4705 // (2b) allocated object's class name index
4706 // (1b) stack depth
4707 AllocRecord* record = &recent_allocation_records_[idx];
4708 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004709 size_t allocated_object_class_name_index =
Ian Rogers1ff3c982014-08-12 02:30:58 -07004710 class_names.IndexOf(record->Type()->GetDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004711 JDWP::Append4BE(bytes, record->ByteCount());
4712 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004713 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4714 JDWP::Append1BE(bytes, stack_depth);
4715
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004716 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4717 // For each stack frame:
4718 // (2b) method's class name
4719 // (2b) method name
4720 // (2b) method source file
4721 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004722 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004723 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4724 size_t method_name_index = method_names.IndexOf(m->GetName());
4725 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004726 JDWP::Append2BE(bytes, class_name_index);
4727 JDWP::Append2BE(bytes, method_name_index);
4728 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004729 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004730 }
Ian Rogers719d1a32014-03-06 12:13:39 -08004731 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004732 }
4733
4734 // (xb) class name strings
4735 // (xb) method name strings
4736 // (xb) source file strings
4737 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4738 class_names.WriteTo(bytes);
4739 method_names.WriteTo(bytes);
4740 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004741 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004742 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004743 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07004744 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004745 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4746 }
4747 return result;
4748}
4749
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07004750mirror::ArtMethod* DeoptimizationRequest::Method() const {
4751 ScopedObjectAccessUnchecked soa(Thread::Current());
4752 return soa.DecodeMethod(method_);
4753}
4754
4755void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
4756 ScopedObjectAccessUnchecked soa(Thread::Current());
4757 method_ = soa.EncodeMethod(m);
4758}
4759
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004760} // namespace art