blob: a3d3b470ccc57bbdfb0de5c7e03bc837d873e671 [file] [log] [blame]
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "debugger.h"
18
Elliott Hughes3bb81562011-10-21 18:52:59 -070019#include <sys/uio.h>
20
Elliott Hughes545a0642011-11-08 19:10:03 -080021#include <set>
22
Ian Rogers166db042013-07-26 12:05:57 -070023#include "arch/context.h"
Elliott Hughes545a0642011-11-08 19:10:03 -080024#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070026#include "dex_file-inl.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070027#include "dex_instruction.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070028#include "gc/accounting/card_table-inl.h"
29#include "gc/space/large_object_space.h"
30#include "gc/space/space-inl.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070031#include "handle_scope.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080032#include "jdwp/object_registry.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070033#include "mirror/art_field-inl.h"
34#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035#include "mirror/class.h"
36#include "mirror/class-inl.h"
37#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038#include "mirror/object-inl.h"
39#include "mirror/object_array-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070040#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080041#include "mirror/throwable.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010042#include "quick/inline_method_analyser.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070043#include "reflection.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070044#include "safe_map.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080045#include "scoped_thread_state_change.h"
Elliott Hughes6a5bd492011-10-28 14:33:57 -070046#include "ScopedLocalRef.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070047#include "ScopedPrimitiveArray.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070048#include "handle_scope-inl.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070049#include "thread_list.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080050#include "throw_location.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051#include "utf.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010052#include "verifier/method_verifier-inl.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070053#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070054
Brian Carlstrom3d92d522013-07-12 09:03:08 -070055#ifdef HAVE_ANDROID_OS
56#include "cutils/properties.h"
57#endif
58
Elliott Hughes872d4ec2011-10-21 17:07:15 -070059namespace art {
60
Brian Carlstrom7934ac22013-07-26 10:54:15 -070061static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
Brian Carlstrom306db812014-09-05 13:01:41 -070062static const size_t kDefaultNumAllocRecords = 64*1024; // Must be a power of 2. 2BE can hold 64k-1.
63
64// Limit alloc_record_count to the 2BE value that is the limit of the current protocol.
65static uint16_t CappedAllocRecordCount(size_t alloc_record_count) {
66 if (alloc_record_count > 0xffff) {
67 return 0xffff;
68 }
69 return alloc_record_count;
70}
Elliott Hughes475fc232011-10-25 15:00:35 -070071
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070072class AllocRecordStackTraceElement {
73 public:
74 AllocRecordStackTraceElement() : method_(nullptr), dex_pc_(0) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080075 }
76
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070077 int32_t LineNumber() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
78 mirror::ArtMethod* method = Method();
79 DCHECK(method != nullptr);
80 return method->GetLineNumFromDexPC(DexPc());
Elliott Hughes545a0642011-11-08 19:10:03 -080081 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070082
83 mirror::ArtMethod* Method() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -070084 ScopedObjectAccessUnchecked soa(Thread::Current());
85 return soa.DecodeMethod(method_);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070086 }
87
88 void SetMethod(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
89 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4345c462014-06-27 10:20:14 -070090 method_ = soa.EncodeMethod(m);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070091 }
92
93 uint32_t DexPc() const {
94 return dex_pc_;
95 }
96
97 void SetDexPc(uint32_t pc) {
98 dex_pc_ = pc;
99 }
100
101 private:
Mathieu Chartier4345c462014-06-27 10:20:14 -0700102 jmethodID method_;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700103 uint32_t dex_pc_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800104};
105
Mathieu Chartier4345c462014-06-27 10:20:14 -0700106jobject Dbg::TypeCache::Add(mirror::Class* t) {
107 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800108 JNIEnv* const env = soa.Env();
109 ScopedLocalRef<jobject> local_ref(soa.Env(), soa.AddLocalReference<jobject>(t));
110 const int32_t hash_code = soa.Decode<mirror::Class*>(local_ref.get())->IdentityHashCode();
Mathieu Chartier4345c462014-06-27 10:20:14 -0700111 auto range = objects_.equal_range(hash_code);
112 for (auto it = range.first; it != range.second; ++it) {
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800113 if (soa.Decode<mirror::Class*>(it->second) == soa.Decode<mirror::Class*>(local_ref.get())) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700114 // Found a matching weak global, return it.
115 return it->second;
116 }
117 }
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800118 const jobject weak_global = env->NewWeakGlobalRef(local_ref.get());
Mathieu Chartier4345c462014-06-27 10:20:14 -0700119 objects_.insert(std::make_pair(hash_code, weak_global));
120 return weak_global;
121}
122
123void Dbg::TypeCache::Clear() {
Brian Carlstrom306db812014-09-05 13:01:41 -0700124 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
125 Thread* self = Thread::Current();
Mathieu Chartier4345c462014-06-27 10:20:14 -0700126 for (const auto& p : objects_) {
Brian Carlstrom306db812014-09-05 13:01:41 -0700127 vm->DeleteWeakGlobalRef(self, p.second);
Mathieu Chartier4345c462014-06-27 10:20:14 -0700128 }
129 objects_.clear();
130}
131
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700132class AllocRecord {
133 public:
134 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -0800135
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700136 mirror::Class* Type() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700137 return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700138 }
139
Brian Carlstrom306db812014-09-05 13:01:41 -0700140 void SetType(mirror::Class* t) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
141 Locks::alloc_tracker_lock_) {
142 type_ = Dbg::type_cache_.Add(t);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700143 }
144
145 size_t GetDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800146 size_t depth = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -0700147 while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800148 ++depth;
149 }
150 return depth;
151 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800152
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700153 size_t ByteCount() const {
154 return byte_count_;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800155 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700156
157 void SetByteCount(size_t count) {
158 byte_count_ = count;
159 }
160
161 uint16_t ThinLockId() const {
162 return thin_lock_id_;
163 }
164
165 void SetThinLockId(uint16_t id) {
166 thin_lock_id_ = id;
167 }
168
169 AllocRecordStackTraceElement* StackElement(size_t index) {
170 DCHECK_LT(index, kMaxAllocRecordStackDepth);
171 return &stack_[index];
172 }
173
174 private:
175 jobject type_; // This is a weak global.
176 size_t byte_count_;
177 uint16_t thin_lock_id_;
Ian Rogersc0542af2014-09-03 16:16:56 -0700178 AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth]; // Unused entries have nullptr method.
Elliott Hughes545a0642011-11-08 19:10:03 -0800179};
180
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700181class Breakpoint {
182 public:
Sebastien Hertzf3928792014-11-17 19:00:37 +0100183 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc,
184 DeoptimizationRequest::Kind deoptimization_kind)
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700185 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertzf3928792014-11-17 19:00:37 +0100186 : method_(nullptr), dex_pc_(dex_pc), deoptimization_kind_(deoptimization_kind) {
187 CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing ||
188 deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization ||
189 deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700190 ScopedObjectAccessUnchecked soa(Thread::Current());
191 method_ = soa.EncodeMethod(method);
192 }
193
194 Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
195 : method_(nullptr), dex_pc_(other.dex_pc_),
Sebastien Hertzf3928792014-11-17 19:00:37 +0100196 deoptimization_kind_(other.deoptimization_kind_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700197 ScopedObjectAccessUnchecked soa(Thread::Current());
198 method_ = soa.EncodeMethod(other.Method());
199 }
200
201 mirror::ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
202 ScopedObjectAccessUnchecked soa(Thread::Current());
203 return soa.DecodeMethod(method_);
204 }
205
206 uint32_t DexPc() const {
207 return dex_pc_;
208 }
209
Sebastien Hertzf3928792014-11-17 19:00:37 +0100210 DeoptimizationRequest::Kind GetDeoptimizationKind() const {
211 return deoptimization_kind_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700212 }
213
214 private:
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100215 // The location of this breakpoint.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700216 jmethodID method_;
217 uint32_t dex_pc_;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100218
219 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
Sebastien Hertzf3928792014-11-17 19:00:37 +0100220 DeoptimizationRequest::Kind deoptimization_kind_;
Elliott Hughes86964332012-02-15 19:37:42 -0800221};
222
Sebastien Hertzed2be172014-08-19 15:33:43 +0200223static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700224 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700225 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
Elliott Hughes86964332012-02-15 19:37:42 -0800226 return os;
227}
228
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200229class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800230 public:
231 DebugInstrumentationListener() {}
232 virtual ~DebugInstrumentationListener() {}
233
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200234 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700235 uint32_t dex_pc ATTRIBUTE_UNUSED)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200236 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800237 if (method->IsNative()) {
238 // TODO: post location events is a suspension point and native method entry stubs aren't.
239 return;
240 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100241 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800242 }
243
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200244 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
245 uint32_t dex_pc, const JValue& return_value)
246 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800247 if (method->IsNative()) {
248 // TODO: post location events is a suspension point and native method entry stubs aren't.
249 return;
250 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100251 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800252 }
253
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200254 void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
255 uint32_t dex_pc)
256 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800257 // We're not recorded to listen to this kind of event, so complain.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700258 UNUSED(thread, this_object, method, dex_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800259 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100260 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800261 }
262
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200263 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
264 uint32_t new_dex_pc)
265 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz8379b222014-02-24 17:38:15 +0100266 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800267 }
268
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200269 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
270 uint32_t dex_pc, mirror::ArtField* field)
271 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700272 UNUSED(thread);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200273 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800274 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200275
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700276 void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object,
277 mirror::ArtMethod* method, uint32_t dex_pc, mirror::ArtField* field,
278 const JValue& field_value)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200279 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
280 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
281 }
282
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700283 void ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED, const ThrowLocation& throw_location,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200284 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
285 mirror::Throwable* exception_object)
286 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
287 Dbg::PostException(throw_location, catch_method, catch_dex_pc, exception_object);
288 }
289
290 private:
291 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800292} gDebugInstrumentationListener;
293
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700294// JDWP is allowed unless the Zygote forbids it.
295static bool gJdwpAllowed = true;
296
Elliott Hughesc0f09332012-03-26 13:27:06 -0700297// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700298static bool gJdwpConfigured = false;
299
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100300// JDWP options for debugging. Only valid if IsJdwpConfigured() is true.
301static JDWP::JdwpOptions gJdwpOptions;
302
Elliott Hughes3bb81562011-10-21 18:52:59 -0700303// Runtime JDWP state.
Ian Rogersc0542af2014-09-03 16:16:56 -0700304static JDWP::JdwpState* gJdwpState = nullptr;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700305static bool gDebuggerConnected; // debugger or DDMS is connected.
306static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800307static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700308
Elliott Hughes47fce012011-10-25 18:37:19 -0700309static bool gDdmThreadNotification = false;
310
Elliott Hughes767a1472011-10-26 18:49:02 -0700311// DDMS GC-related settings.
312static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
313static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
314static Dbg::HpsgWhat gDdmHpsgWhat;
315static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
316static Dbg::HpsgWhat gDdmNhsgWhat;
317
Sebastien Hertz6995c602014-09-09 12:10:13 +0200318ObjectRegistry* Dbg::gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700319
Elliott Hughes545a0642011-11-08 19:10:03 -0800320// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800321AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
322size_t Dbg::alloc_record_max_ = 0;
323size_t Dbg::alloc_record_head_ = 0;
324size_t Dbg::alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -0700325Dbg::TypeCache Dbg::type_cache_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800326
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100327// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100328std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
329size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100330size_t Dbg::delayed_full_undeoptimization_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100331
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200332// Instrumentation event reference counters.
333size_t Dbg::dex_pc_change_event_ref_count_ = 0;
334size_t Dbg::method_enter_event_ref_count_ = 0;
335size_t Dbg::method_exit_event_ref_count_ = 0;
336size_t Dbg::field_read_event_ref_count_ = 0;
337size_t Dbg::field_write_event_ref_count_ = 0;
338size_t Dbg::exception_catch_event_ref_count_ = 0;
339uint32_t Dbg::instrumentation_events_ = 0;
340
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100341// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800342static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800343
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800344void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700345 if (receiver != nullptr) {
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800346 callback(&receiver, arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700347 }
348 if (thread != nullptr) {
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800349 callback(&thread, arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700350 }
351 if (klass != nullptr) {
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800352 callback(reinterpret_cast<mirror::Object**>(&klass), arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700353 }
354 if (method != nullptr) {
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800355 callback(reinterpret_cast<mirror::Object**>(&method), arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700356 }
357}
358
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200359void DebugInvokeReq::Clear() {
360 invoke_needed = false;
361 receiver = nullptr;
362 thread = nullptr;
363 klass = nullptr;
364 method = nullptr;
365}
366
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800367void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100368 if (method_ != nullptr) {
369 callback(reinterpret_cast<mirror::Object**>(&method_), arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700370 }
371}
372
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100373void SingleStepControl::AddDexPc(uint32_t dex_pc) {
374 dex_pcs_.insert(dex_pc);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200375}
376
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100377bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
378 return dex_pcs_.find(dex_pc) == dex_pcs_.end();
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200379}
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
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100535void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700536 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700537 // No JDWP for you!
538 return;
539 }
540
Ian Rogers719d1a32014-03-06 12:13:39 -0800541 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700542 gRegistry = new ObjectRegistry;
543
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700544 // Init JDWP if the debugger is enabled. This may connect out to a
545 // debugger, passively listen for a debugger, or block waiting for a
546 // debugger.
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100547 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
Ian Rogersc0542af2014-09-03 16:16:56 -0700548 if (gJdwpState == nullptr) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800549 // We probably failed because some other process has the port already, which means that
550 // if we don't abort the user is likely to think they're talking to us when they're actually
551 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800552 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700553 }
554
555 // If a debugger has already attached, send the "welcome" message.
556 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700557 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700558 ScopedObjectAccess soa(Thread::Current());
Sebastien Hertz7d955652014-10-22 10:57:10 +0200559 gJdwpState->PostVMStart();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700560 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700561}
562
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700563void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200564 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
565 // destruction of gJdwpState).
566 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
567 gJdwpState->PostVMDeath();
568 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100569 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
570 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700571 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800572 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700573 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800574 gRegistry = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700575}
576
Elliott Hughes767a1472011-10-26 18:49:02 -0700577void Dbg::GcDidFinish() {
578 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700579 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700580 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700581 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700582 }
583 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700584 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700585 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700586 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700587 }
588 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700589 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700590 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700591 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700592 }
593}
594
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700595void Dbg::SetJdwpAllowed(bool allowed) {
596 gJdwpAllowed = allowed;
597}
598
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700599DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700600 return Thread::Current()->GetInvokeReq();
601}
602
603Thread* Dbg::GetDebugThread() {
Ian Rogersc0542af2014-09-03 16:16:56 -0700604 return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700605}
606
607void Dbg::ClearWaitForEventThread() {
608 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700609}
610
611void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700612 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800613 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700614 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800615 gDisposed = false;
616}
617
618void Dbg::Disposed() {
619 gDisposed = true;
620}
621
622bool Dbg::IsDisposed() {
623 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700624}
625
Sebastien Hertzf3928792014-11-17 19:00:37 +0100626bool Dbg::RequiresDeoptimization() {
627 // We don't need deoptimization if everything runs with interpreter after
628 // enabling -Xint mode.
629 return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly();
630}
631
Elliott Hughesa2155262011-11-16 16:26:58 -0800632void Dbg::GoActive() {
633 // Enable all debugging features, including scans for breakpoints.
634 // This is a no-op if we're already active.
635 // Only called from the JDWP handler thread.
636 if (gDebuggerActive) {
637 return;
638 }
639
Elliott Hughesc0f09332012-03-26 13:27:06 -0700640 {
641 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Sebastien Hertzed2be172014-08-19 15:33:43 +0200642 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700643 CHECK_EQ(gBreakpoints.size(), 0U);
644 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800645
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100646 {
Brian Carlstrom306db812014-09-05 13:01:41 -0700647 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100648 CHECK_EQ(deoptimization_requests_.size(), 0U);
649 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100650 CHECK_EQ(delayed_full_undeoptimization_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200651 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
652 CHECK_EQ(method_enter_event_ref_count_, 0U);
653 CHECK_EQ(method_exit_event_ref_count_, 0U);
654 CHECK_EQ(field_read_event_ref_count_, 0U);
655 CHECK_EQ(field_write_event_ref_count_, 0U);
656 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100657 }
658
Ian Rogers62d6c772013-02-27 08:32:07 -0800659 Runtime* runtime = Runtime::Current();
660 runtime->GetThreadList()->SuspendAll();
661 Thread* self = Thread::Current();
662 ThreadState old_state = self->SetStateUnsafe(kRunnable);
663 CHECK_NE(old_state, kRunnable);
Sebastien Hertzf3928792014-11-17 19:00:37 +0100664 if (RequiresDeoptimization()) {
665 runtime->GetInstrumentation()->EnableDeoptimization();
666 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200667 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800668 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800669 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
670 runtime->GetThreadList()->ResumeAll();
671
672 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700673}
674
675void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700676 CHECK(gDebuggerConnected);
677
Elliott Hughesc0f09332012-03-26 13:27:06 -0700678 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700679
Ian Rogers62d6c772013-02-27 08:32:07 -0800680 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
681 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
682 // and clear the object registry.
683 Runtime* runtime = Runtime::Current();
684 runtime->GetThreadList()->SuspendAll();
685 Thread* self = Thread::Current();
686 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100687
688 // Debugger may not be active at this point.
689 if (gDebuggerActive) {
690 {
691 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
692 // This prevents us from having any pending deoptimization request when the debugger attaches
693 // to us again while no event has been requested yet.
Brian Carlstrom306db812014-09-05 13:01:41 -0700694 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100695 deoptimization_requests_.clear();
696 full_deoptimization_event_count_ = 0U;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100697 delayed_full_undeoptimization_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100698 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200699 if (instrumentation_events_ != 0) {
700 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
701 instrumentation_events_);
702 instrumentation_events_ = 0;
703 }
Sebastien Hertzf3928792014-11-17 19:00:37 +0100704 if (RequiresDeoptimization()) {
705 runtime->GetInstrumentation()->DisableDeoptimization();
706 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100707 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100708 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800709 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
710 runtime->GetThreadList()->ResumeAll();
Sebastien Hertz55f65342015-01-13 22:48:34 +0100711
712 {
713 ScopedObjectAccess soa(self);
714 gRegistry->Clear();
715 }
716
717 gDebuggerConnected = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700718}
719
Elliott Hughesc0f09332012-03-26 13:27:06 -0700720bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700721 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700722}
723
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100724void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) {
725 CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown);
726 gJdwpOptions = jdwp_options;
727 gJdwpConfigured = true;
728}
729
Elliott Hughesc0f09332012-03-26 13:27:06 -0700730bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700731 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700732}
733
734int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800735 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700736}
737
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700738void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700739 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700740}
741
Elliott Hughes88d63092013-01-09 09:55:54 -0800742std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700743 JDWP::JdwpError error;
744 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error);
745 if (o == nullptr) {
746 if (error == JDWP::ERR_NONE) {
747 return "NULL";
748 } else {
749 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
750 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800751 }
752 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700753 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800754 }
Sebastien Hertz6995c602014-09-09 12:10:13 +0200755 return GetClassName(o->AsClass());
756}
757
758std::string Dbg::GetClassName(mirror::Class* klass) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200759 if (klass == nullptr) {
760 return "NULL";
761 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700762 std::string temp;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200763 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700764}
765
Ian Rogersc0542af2014-09-03 16:16:56 -0700766JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800767 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700768 mirror::Class* c = DecodeClass(id, &status);
769 if (c == nullptr) {
770 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800771 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800772 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700773 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800774 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800775}
776
Ian Rogersc0542af2014-09-03 16:16:56 -0700777JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800778 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700779 mirror::Class* c = DecodeClass(id, &status);
780 if (c == nullptr) {
781 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800782 return status;
783 }
784 if (c->IsInterface()) {
785 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700786 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800787 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700788 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800789 }
790 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700791}
792
Elliott Hughes436e3722012-02-17 20:01:47 -0800793JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700794 JDWP::JdwpError error;
795 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
796 if (o == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800797 return JDWP::ERR_INVALID_OBJECT;
798 }
799 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
800 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700801}
802
Elliott Hughes436e3722012-02-17 20:01:47 -0800803JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700804 JDWP::JdwpError error;
805 mirror::Class* c = DecodeClass(id, &error);
806 if (c == nullptr) {
807 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800808 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800809
810 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
811
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700812 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
813 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800814 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700815 if ((access_flags & kAccInterface) == 0) {
816 access_flags |= kAccSuper;
817 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800818
819 expandBufAdd4BE(pReply, access_flags);
820
821 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700822}
823
Ian Rogersc0542af2014-09-03 16:16:56 -0700824JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
825 JDWP::JdwpError error;
826 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
827 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800828 return JDWP::ERR_INVALID_OBJECT;
829 }
830
831 // Ensure all threads are suspended while we read objects' lock words.
832 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100833 CHECK_EQ(self->GetState(), kRunnable);
834 self->TransitionFromRunnableToSuspended(kSuspended);
835 Runtime::Current()->GetThreadList()->SuspendAll();
Elliott Hughesf327e072013-01-09 16:01:26 -0800836
837 MonitorInfo monitor_info(o);
838
Sebastien Hertz54263242014-03-19 18:16:50 +0100839 Runtime::Current()->GetThreadList()->ResumeAll();
840 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800841
Ian Rogersc0542af2014-09-03 16:16:56 -0700842 if (monitor_info.owner_ != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700843 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800844 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700845 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800846 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700847 expandBufAdd4BE(reply, monitor_info.entry_count_);
848 expandBufAdd4BE(reply, monitor_info.waiters_.size());
849 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
850 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800851 }
852 return JDWP::ERR_NONE;
853}
854
Elliott Hughes734b8c62013-01-11 15:32:45 -0800855JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700856 std::vector<JDWP::ObjectId>* monitors,
857 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800858 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700859 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700860 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700861 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800862 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700863 : StackVisitor(thread, context), current_stack_depth(0),
864 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800865
866 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
867 // annotalysis.
868 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
869 if (!GetMethod()->IsRuntimeMethod()) {
870 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800871 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800872 }
873 return true;
874 }
875
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700876 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
877 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800878 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700879 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700880 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800881 }
882
Elliott Hughes734b8c62013-01-11 15:32:45 -0800883 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700884 std::vector<JDWP::ObjectId>* const monitors;
885 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800886 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800887
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700888 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700889 Thread* thread;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700890 {
891 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700892 JDWP::JdwpError error;
893 thread = DecodeThread(soa, thread_id, &error);
894 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700895 return error;
896 }
897 if (!IsSuspendedForDebugger(soa, thread)) {
898 return JDWP::ERR_THREAD_NOT_SUSPENDED;
899 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700900 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700901 std::unique_ptr<Context> context(Context::Create());
Ian Rogersc0542af2014-09-03 16:16:56 -0700902 OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700903 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800904 return JDWP::ERR_NONE;
905}
906
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100907JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700908 JDWP::ObjectId* contended_monitor) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700909 mirror::Object* contended_monitor_obj;
Elliott Hughesf9501702013-01-11 11:22:27 -0800910 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -0700911 *contended_monitor = 0;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700912 {
913 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700914 JDWP::JdwpError error;
915 Thread* thread = DecodeThread(soa, thread_id, &error);
916 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700917 return error;
918 }
919 if (!IsSuspendedForDebugger(soa, thread)) {
920 return JDWP::ERR_THREAD_NOT_SUSPENDED;
921 }
922 contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Elliott Hughesf9501702013-01-11 11:22:27 -0800923 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700924 // Add() requires the thread_list_lock_ not held to avoid the lock
925 // level violation.
Ian Rogersc0542af2014-09-03 16:16:56 -0700926 *contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -0800927 return JDWP::ERR_NONE;
928}
929
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800930JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -0700931 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800932 gc::Heap* heap = Runtime::Current()->GetHeap();
933 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800934 std::vector<mirror::Class*> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700935 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800936 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700937 JDWP::JdwpError error;
938 mirror::Class* c = DecodeClass(class_ids[i], &error);
939 if (c == nullptr) {
940 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800941 }
942 classes.push_back(c);
Ian Rogersc0542af2014-09-03 16:16:56 -0700943 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800944 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700945 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800946 return JDWP::ERR_NONE;
947}
948
Ian Rogersc0542af2014-09-03 16:16:56 -0700949JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
950 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800951 gc::Heap* heap = Runtime::Current()->GetHeap();
952 // We only want reachable instances, so do a GC.
953 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700954 JDWP::JdwpError error;
955 mirror::Class* c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800956 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700957 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800958 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800959 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800960 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
961 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700962 instances->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes3b78c942013-01-15 17:35:41 -0800963 }
964 return JDWP::ERR_NONE;
965}
966
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800967JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700968 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800969 gc::Heap* heap = Runtime::Current()->GetHeap();
970 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700971 JDWP::JdwpError error;
972 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
973 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800974 return JDWP::ERR_INVALID_OBJECT;
975 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800976 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800977 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800978 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700979 referring_objects->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800980 }
981 return JDWP::ERR_NONE;
982}
983
Ian Rogersc0542af2014-09-03 16:16:56 -0700984JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
985 JDWP::JdwpError error;
986 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
987 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100988 return JDWP::ERR_INVALID_OBJECT;
989 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800990 gRegistry->DisableCollection(object_id);
991 return JDWP::ERR_NONE;
992}
993
Ian Rogersc0542af2014-09-03 16:16:56 -0700994JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
995 JDWP::JdwpError error;
996 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +0100997 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
998 // also ignores these cases and never return an error. However it's not obvious why this command
999 // should behave differently from DisableCollection and IsCollected commands. So let's be more
1000 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -07001001 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001002 return JDWP::ERR_INVALID_OBJECT;
1003 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001004 gRegistry->EnableCollection(object_id);
1005 return JDWP::ERR_NONE;
1006}
1007
Ian Rogersc0542af2014-09-03 16:16:56 -07001008JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
1009 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001010 if (object_id == 0) {
1011 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +01001012 return JDWP::ERR_INVALID_OBJECT;
1013 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001014 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1015 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -07001016 JDWP::JdwpError error;
1017 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1018 if (o != nullptr) {
1019 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001020 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001021 return JDWP::ERR_NONE;
1022}
1023
Ian Rogersc0542af2014-09-03 16:16:56 -07001024void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001025 gRegistry->DisposeObject(object_id, reference_count);
1026}
1027
Sebastien Hertz6995c602014-09-09 12:10:13 +02001028JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001029 DCHECK(klass != nullptr);
1030 if (klass->IsArrayClass()) {
1031 return JDWP::TT_ARRAY;
1032 } else if (klass->IsInterface()) {
1033 return JDWP::TT_INTERFACE;
1034 } else {
1035 return JDWP::TT_CLASS;
1036 }
1037}
1038
Elliott Hughes88d63092013-01-09 09:55:54 -08001039JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001040 JDWP::JdwpError error;
1041 mirror::Class* c = DecodeClass(class_id, &error);
1042 if (c == nullptr) {
1043 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001044 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001045
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001046 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1047 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001048 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001049 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001050}
1051
Ian Rogersc0542af2014-09-03 16:16:56 -07001052void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001053 // Get the complete list of reference classes (i.e. all classes except
1054 // the primitive types).
1055 // Returns a newly-allocated buffer full of RefTypeId values.
1056 struct ClassListCreator {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001057 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes_in) : classes(classes_in) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001058 }
1059
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001060 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001061 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1062 }
1063
Elliott Hughes64f574f2013-02-20 14:57:12 -08001064 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1065 // annotalysis.
1066 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001067 if (!c->IsPrimitive()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001068 classes->push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001069 }
1070 return true;
1071 }
1072
Ian Rogersc0542af2014-09-03 16:16:56 -07001073 std::vector<JDWP::RefTypeId>* const classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001074 };
1075
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001076 ClassListCreator clc(classes);
Sebastien Hertz4537c412014-08-28 14:41:50 +02001077 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(ClassListCreator::Visit,
1078 &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001079}
1080
Ian Rogers1ff3c982014-08-12 02:30:58 -07001081JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1082 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001083 JDWP::JdwpError error;
1084 mirror::Class* c = DecodeClass(class_id, &error);
1085 if (c == nullptr) {
1086 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001087 }
1088
Elliott Hughesa2155262011-11-16 16:26:58 -08001089 if (c->IsArrayClass()) {
1090 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1091 *pTypeTag = JDWP::TT_ARRAY;
1092 } else {
1093 if (c->IsErroneous()) {
1094 *pStatus = JDWP::CS_ERROR;
1095 } else {
1096 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1097 }
1098 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1099 }
1100
Ian Rogersc0542af2014-09-03 16:16:56 -07001101 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001102 std::string temp;
1103 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001104 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001105 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001106}
1107
Ian Rogersc0542af2014-09-03 16:16:56 -07001108void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001109 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001110 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001111 ids->clear();
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001112 for (size_t i = 0; i < classes.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001113 ids->push_back(gRegistry->Add(classes[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001114 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001115}
1116
Ian Rogersc0542af2014-09-03 16:16:56 -07001117JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1118 JDWP::JdwpError error;
1119 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1120 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001121 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001122 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001123
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001124 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001125 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001126
1127 expandBufAdd1(pReply, type_tag);
1128 expandBufAddRefTypeId(pReply, type_id);
1129
1130 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001131}
1132
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001133JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001134 JDWP::JdwpError error;
1135 mirror::Class* c = DecodeClass(class_id, &error);
1136 if (c == nullptr) {
1137 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001138 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001139 std::string temp;
1140 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001141 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001142}
1143
Ian Rogersc0542af2014-09-03 16:16:56 -07001144JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1145 JDWP::JdwpError error;
1146 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001147 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001148 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001149 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001150 const char* source_file = c->GetSourceFile();
1151 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001152 return JDWP::ERR_ABSENT_INFORMATION;
1153 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001154 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001155 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001156}
1157
Ian Rogersc0542af2014-09-03 16:16:56 -07001158JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001159 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001160 JDWP::JdwpError error;
1161 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1162 if (error != JDWP::ERR_NONE) {
1163 *tag = JDWP::JT_VOID;
1164 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001165 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001166 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001167 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001168}
1169
Elliott Hughesaed4be92011-12-02 16:16:23 -08001170size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001171 switch (tag) {
1172 case JDWP::JT_VOID:
1173 return 0;
1174 case JDWP::JT_BYTE:
1175 case JDWP::JT_BOOLEAN:
1176 return 1;
1177 case JDWP::JT_CHAR:
1178 case JDWP::JT_SHORT:
1179 return 2;
1180 case JDWP::JT_FLOAT:
1181 case JDWP::JT_INT:
1182 return 4;
1183 case JDWP::JT_ARRAY:
1184 case JDWP::JT_OBJECT:
1185 case JDWP::JT_STRING:
1186 case JDWP::JT_THREAD:
1187 case JDWP::JT_THREAD_GROUP:
1188 case JDWP::JT_CLASS_LOADER:
1189 case JDWP::JT_CLASS_OBJECT:
1190 return sizeof(JDWP::ObjectId);
1191 case JDWP::JT_DOUBLE:
1192 case JDWP::JT_LONG:
1193 return 8;
1194 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001195 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001196 return -1;
1197 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001198}
1199
Ian Rogersc0542af2014-09-03 16:16:56 -07001200JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1201 JDWP::JdwpError error;
1202 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1203 if (a == nullptr) {
1204 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001205 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001206 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001207 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001208}
1209
Elliott Hughes88d63092013-01-09 09:55:54 -08001210JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001211 JDWP::JdwpError error;
1212 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001213 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001214 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001215 }
Elliott Hughes24437992011-11-30 14:49:33 -08001216
1217 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1218 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001219 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001220 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001221 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1222 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001223 expandBufAdd4BE(pReply, count);
1224
Ian Rogers1ff3c982014-08-12 02:30:58 -07001225 if (IsPrimitiveTag(element_tag)) {
1226 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001227 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1228 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001229 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001230 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1231 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001232 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001233 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1234 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001235 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001236 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1237 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001238 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001239 memcpy(dst, &src[offset * width], count * width);
1240 }
1241 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001242 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001243 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001244 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001245 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001246 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001247 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001248 expandBufAdd1(pReply, specific_tag);
1249 expandBufAddObjectId(pReply, gRegistry->Add(element));
1250 }
1251 }
1252
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001253 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001254}
1255
Ian Rogersef7d42f2014-01-06 12:55:46 -08001256template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001257static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001258 NO_THREAD_SAFETY_ANALYSIS {
1259 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001260 DCHECK(a->GetClass()->IsPrimitiveArray());
1261
Ian Rogersef7d42f2014-01-06 12:55:46 -08001262 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001263 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001264 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001265 }
1266}
1267
Elliott Hughes88d63092013-01-09 09:55:54 -08001268JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001269 JDWP::Request* request) {
1270 JDWP::JdwpError error;
1271 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1272 if (dst == nullptr) {
1273 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001274 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001275
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001276 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001277 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001278 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001279 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001280 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001281
Ian Rogers1ff3c982014-08-12 02:30:58 -07001282 if (IsPrimitiveTag(element_tag)) {
1283 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001284 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001285 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001286 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001287 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001288 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001289 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001290 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001291 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001292 }
1293 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001294 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001295 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001296 JDWP::ObjectId id = request->ReadObjectId();
Ian Rogersc0542af2014-09-03 16:16:56 -07001297 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1298 if (error != JDWP::ERR_NONE) {
1299 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001300 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001301 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001302 }
1303 }
1304
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001305 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001306}
1307
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001308JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001309 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001310}
1311
Ian Rogersc0542af2014-09-03 16:16:56 -07001312JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object) {
1313 JDWP::JdwpError error;
1314 mirror::Class* c = DecodeClass(class_id, &error);
1315 if (c == nullptr) {
1316 *new_object = 0;
1317 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001318 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001319 *new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001320 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001321}
1322
Elliott Hughesbf13d362011-12-08 15:51:37 -08001323/*
1324 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1325 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001326JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogersc0542af2014-09-03 16:16:56 -07001327 JDWP::ObjectId* new_array) {
1328 JDWP::JdwpError error;
1329 mirror::Class* c = DecodeClass(array_class_id, &error);
1330 if (c == nullptr) {
1331 *new_array = 0;
1332 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001333 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001334 *new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -07001335 c->GetComponentSizeShift(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001336 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001337 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001338}
1339
Sebastien Hertz6995c602014-09-09 12:10:13 +02001340JDWP::FieldId Dbg::ToFieldId(const mirror::ArtField* f) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001341 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001342 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001343}
1344
Brian Carlstromea46f952013-07-30 01:26:50 -07001345static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001346 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001347 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001348 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001349}
1350
Brian Carlstromea46f952013-07-30 01:26:50 -07001351static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001352 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001353 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001354 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001355}
1356
Brian Carlstromea46f952013-07-30 01:26:50 -07001357static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001358 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001359 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001360 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001361}
1362
Sebastien Hertz6995c602014-09-09 12:10:13 +02001363bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1364 CHECK(event_thread != nullptr);
1365 JDWP::JdwpError error;
1366 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(expected_thread_id,
1367 &error);
1368 return expected_thread_peer == event_thread->GetPeer();
1369}
1370
1371bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1372 const JDWP::EventLocation& event_location) {
1373 if (expected_location.dex_pc != event_location.dex_pc) {
1374 return false;
1375 }
1376 mirror::ArtMethod* m = FromMethodId(expected_location.method_id);
1377 return m == event_location.method;
1378}
1379
1380bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001381 if (event_class == nullptr) {
1382 return false;
1383 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02001384 JDWP::JdwpError error;
1385 mirror::Class* expected_class = DecodeClass(class_id, &error);
1386 CHECK(expected_class != nullptr);
1387 return expected_class->IsAssignableFrom(event_class);
1388}
1389
1390bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
1391 mirror::ArtField* event_field) {
1392 mirror::ArtField* expected_field = FromFieldId(expected_field_id);
1393 if (expected_field != event_field) {
1394 return false;
1395 }
1396 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1397}
1398
1399bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1400 JDWP::JdwpError error;
1401 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error);
1402 return modifier_instance == event_instance;
1403}
1404
1405void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001406 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001407 if (m == nullptr) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001408 memset(location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001409 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001410 mirror::Class* c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001411 location->type_tag = GetTypeTag(c);
1412 location->class_id = gRegistry->AddRefType(c);
1413 location->method_id = ToMethodId(m);
1414 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001415 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001416}
1417
Ian Rogersc0542af2014-09-03 16:16:56 -07001418std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001419 mirror::ArtMethod* m = FromMethodId(method_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001420 if (m == nullptr) {
1421 return "NULL";
1422 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001423 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001424}
1425
Ian Rogersc0542af2014-09-03 16:16:56 -07001426std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001427 mirror::ArtField* f = FromFieldId(field_id);
1428 if (f == nullptr) {
1429 return "NULL";
1430 }
1431 return f->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001432}
1433
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001434/*
1435 * Augment the access flags for synthetic methods and fields by setting
1436 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1437 * flags not specified by the Java programming language.
1438 */
1439static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1440 accessFlags &= kAccJavaFlagsMask;
1441 if ((accessFlags & kAccSynthetic) != 0) {
1442 accessFlags |= 0xf0000000;
1443 }
1444 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001445}
1446
Elliott Hughesdbb40792011-11-18 17:05:22 -08001447/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001448 * Circularly shifts registers so that arguments come first. Debuggers
1449 * expect slots to begin with arguments, but dex code places them at
1450 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001451 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001452static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1453 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001454 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001455 if (code_item == nullptr) {
1456 // We should not get here for a method without code (native, proxy or abstract). Log it and
1457 // return the slot as is since all registers are arguments.
1458 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1459 return slot;
1460 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001461 uint16_t ins_size = code_item->ins_size_;
1462 uint16_t locals_size = code_item->registers_size_ - ins_size;
1463 if (slot >= locals_size) {
1464 return slot - locals_size;
1465 } else {
1466 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001467 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001468}
1469
Jeff Haob7cefc72013-11-14 14:51:09 -08001470/*
1471 * Circularly shifts registers so that arguments come last. Reverts
1472 * slots to dex style argument placement.
1473 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001474static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001475 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001476 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001477 if (code_item == nullptr) {
1478 // We should not get here for a method without code (native, proxy or abstract). Log it and
1479 // return the slot as is since all registers are arguments.
1480 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1481 return slot;
1482 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001483 uint16_t ins_size = code_item->ins_size_;
1484 uint16_t locals_size = code_item->registers_size_ - ins_size;
1485 if (slot < ins_size) {
1486 return slot + locals_size;
1487 } else {
1488 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001489 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001490}
1491
Elliott Hughes88d63092013-01-09 09:55:54 -08001492JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001493 JDWP::JdwpError error;
1494 mirror::Class* c = DecodeClass(class_id, &error);
1495 if (c == nullptr) {
1496 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001497 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001498
1499 size_t instance_field_count = c->NumInstanceFields();
1500 size_t static_field_count = c->NumStaticFields();
1501
1502 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1503
1504 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001505 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001506 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001507 expandBufAddUtf8String(pReply, f->GetName());
1508 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001509 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001510 static const char genericSignature[1] = "";
1511 expandBufAddUtf8String(pReply, genericSignature);
1512 }
1513 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1514 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001515 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001516}
1517
Elliott Hughes88d63092013-01-09 09:55:54 -08001518JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001519 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001520 JDWP::JdwpError error;
1521 mirror::Class* c = DecodeClass(class_id, &error);
1522 if (c == nullptr) {
1523 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001524 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001525
1526 size_t direct_method_count = c->NumDirectMethods();
1527 size_t virtual_method_count = c->NumVirtualMethods();
1528
1529 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1530
1531 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001532 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001533 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001534 expandBufAddUtf8String(pReply, m->GetName());
1535 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001536 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001537 static const char genericSignature[1] = "";
1538 expandBufAddUtf8String(pReply, genericSignature);
1539 }
1540 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1541 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001542 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001543}
1544
Elliott Hughes88d63092013-01-09 09:55:54 -08001545JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001546 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001547 Thread* self = Thread::Current();
1548 StackHandleScope<1> hs(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07001549 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error)));
Mathieu Chartierf8322842014-05-16 10:59:25 -07001550 if (c.Get() == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001551 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001552 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001553 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001554 expandBufAdd4BE(pReply, interface_count);
1555 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001556 expandBufAddRefTypeId(pReply,
1557 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001558 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001559 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001560}
1561
Ian Rogersc0542af2014-09-03 16:16:56 -07001562void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001563 struct DebugCallbackContext {
1564 int numItems;
1565 JDWP::ExpandBuf* pReply;
1566
Elliott Hughes2435a572012-02-17 16:07:41 -08001567 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001568 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1569 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001570 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001571 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001572 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001573 }
1574 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001575 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001576 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001577 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001578 if (code_item == nullptr) {
1579 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001580 start = -1;
1581 end = -1;
1582 } else {
1583 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001584 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001585 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001586 }
1587
1588 expandBufAdd8BE(pReply, start);
1589 expandBufAdd8BE(pReply, end);
1590
1591 // Add numLines later
1592 size_t numLinesOffset = expandBufGetLength(pReply);
1593 expandBufAdd4BE(pReply, 0);
1594
1595 DebugCallbackContext context;
1596 context.numItems = 0;
1597 context.pReply = pReply;
1598
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001599 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001600 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001601 DebugCallbackContext::Callback, nullptr, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001602 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001603
1604 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001605}
1606
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001607void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1608 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001609 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001610 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001611 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001612 size_t variable_count;
1613 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001614
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001615 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1616 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001617 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001618 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1619
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001620 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1621 pContext->variable_count, startAddress, endAddress - startAddress,
1622 name, descriptor, signature, slot,
1623 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001624
Jeff Haob7cefc72013-11-14 14:51:09 -08001625 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001626
Elliott Hughesdbb40792011-11-18 17:05:22 -08001627 expandBufAdd8BE(pContext->pReply, startAddress);
1628 expandBufAddUtf8String(pContext->pReply, name);
1629 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001630 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001631 expandBufAddUtf8String(pContext->pReply, signature);
1632 }
1633 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1634 expandBufAdd4BE(pContext->pReply, slot);
1635
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001636 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001637 }
1638 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001639 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001640
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001641 // arg_count considers doubles and longs to take 2 units.
1642 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001643 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001644 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001645
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001646 // We don't know the total number of variables yet, so leave a blank and update it later.
1647 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001648 expandBufAdd4BE(pReply, 0);
1649
1650 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001651 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001652 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001653 context.variable_count = 0;
1654 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001655
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001656 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001657 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001658 m->GetDexFile()->DecodeDebugInfo(
Ian Rogersc0542af2014-09-03 16:16:56 -07001659 code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001660 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001661 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001662
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001663 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001664}
1665
Jeff Hao579b0242013-11-18 13:16:49 -08001666void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1667 JDWP::ExpandBuf* pReply) {
1668 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001669 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001670 OutputJValue(tag, return_value, pReply);
1671}
1672
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001673void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1674 JDWP::ExpandBuf* pReply) {
1675 mirror::ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001676 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001677 OutputJValue(tag, field_value, pReply);
1678}
1679
Elliott Hughes9777ba22013-01-17 09:04:19 -08001680JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001681 std::vector<uint8_t>* bytecodes) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001682 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001683 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001684 return JDWP::ERR_INVALID_METHODID;
1685 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001686 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001687 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1688 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1689 const uint8_t* end = begin + byte_count;
1690 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001691 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001692 }
1693 return JDWP::ERR_NONE;
1694}
1695
Elliott Hughes88d63092013-01-09 09:55:54 -08001696JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001697 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001698}
1699
Elliott Hughes88d63092013-01-09 09:55:54 -08001700JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001701 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001702}
1703
Elliott Hughes88d63092013-01-09 09:55:54 -08001704static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1705 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001706 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001707 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001708 JDWP::JdwpError error;
1709 mirror::Class* c = DecodeClass(ref_type_id, &error);
1710 if (ref_type_id != 0 && c == nullptr) {
1711 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001712 }
1713
Sebastien Hertz6995c602014-09-09 12:10:13 +02001714 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001715 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001716 return JDWP::ERR_INVALID_OBJECT;
1717 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001718 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001719
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001720 mirror::Class* receiver_class = c;
Ian Rogersc0542af2014-09-03 16:16:56 -07001721 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001722 receiver_class = o->GetClass();
1723 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001724 // TODO: should we give up now if receiver_class is nullptr?
1725 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001726 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001727 return JDWP::ERR_INVALID_FIELDID;
1728 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001729
Elliott Hughes0cf74332012-02-23 23:14:00 -08001730 // The RI only enforces the static/non-static mismatch in one direction.
1731 // TODO: should we change the tests and check both?
1732 if (is_static) {
1733 if (!f->IsStatic()) {
1734 return JDWP::ERR_INVALID_FIELDID;
1735 }
1736 } else {
1737 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001738 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field "
1739 << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001740 }
1741 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001742 if (f->IsStatic()) {
1743 o = f->GetDeclaringClass();
1744 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001745
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001746 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001747 JValue field_value;
1748 if (tag == JDWP::JT_VOID) {
1749 LOG(FATAL) << "Unknown tag: " << tag;
1750 } else if (!IsPrimitiveTag(tag)) {
1751 field_value.SetL(f->GetObject(o));
1752 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1753 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001754 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001755 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001756 }
Jeff Hao579b0242013-11-18 13:16:49 -08001757 Dbg::OutputJValue(tag, &field_value, pReply);
1758
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001759 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001760}
1761
Elliott Hughes88d63092013-01-09 09:55:54 -08001762JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001763 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001764 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001765}
1766
Ian Rogersc0542af2014-09-03 16:16:56 -07001767JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1768 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001769 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001770}
1771
Elliott Hughes88d63092013-01-09 09:55:54 -08001772static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001773 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001774 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001775 JDWP::JdwpError error;
Sebastien Hertz6995c602014-09-09 12:10:13 +02001776 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001777 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001778 return JDWP::ERR_INVALID_OBJECT;
1779 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001780 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001781
1782 // The RI only enforces the static/non-static mismatch in one direction.
1783 // TODO: should we change the tests and check both?
1784 if (is_static) {
1785 if (!f->IsStatic()) {
1786 return JDWP::ERR_INVALID_FIELDID;
1787 }
1788 } else {
1789 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001790 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001791 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001792 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001793 if (f->IsStatic()) {
1794 o = f->GetDeclaringClass();
1795 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001796
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001797 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001798
1799 if (IsPrimitiveTag(tag)) {
1800 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001801 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001802 // Debugging can't use transactional mode (runtime only).
1803 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001804 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001805 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001806 // Debugging can't use transactional mode (runtime only).
1807 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001808 }
1809 } else {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001810 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001811 if (error != JDWP::ERR_NONE) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001812 return JDWP::ERR_INVALID_OBJECT;
1813 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001814 if (v != nullptr) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001815 mirror::Class* field_type;
1816 {
1817 StackHandleScope<3> hs(Thread::Current());
1818 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1819 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
1820 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
Ian Rogers08f1f502014-12-02 15:04:37 -08001821 field_type = h_f->GetType(true);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001822 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001823 if (!field_type->IsAssignableFrom(v->GetClass())) {
1824 return JDWP::ERR_INVALID_OBJECT;
1825 }
1826 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001827 // Debugging can't use transactional mode (runtime only).
1828 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001829 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001830
1831 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001832}
1833
Elliott Hughes88d63092013-01-09 09:55:54 -08001834JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001835 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001836 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001837}
1838
Elliott Hughes88d63092013-01-09 09:55:54 -08001839JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1840 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001841}
1842
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001843JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001844 JDWP::JdwpError error;
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001845 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error);
1846 if (error != JDWP::ERR_NONE) {
1847 return error;
1848 }
1849 if (obj == nullptr) {
1850 return JDWP::ERR_INVALID_OBJECT;
1851 }
1852 {
1853 ScopedObjectAccessUnchecked soa(Thread::Current());
1854 mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String);
1855 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
1856 // This isn't a string.
1857 return JDWP::ERR_INVALID_STRING;
1858 }
1859 }
1860 *str = obj->AsString()->ToModifiedUtf8();
1861 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001862}
1863
Jeff Hao579b0242013-11-18 13:16:49 -08001864void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1865 if (IsPrimitiveTag(tag)) {
1866 expandBufAdd1(pReply, tag);
1867 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1868 expandBufAdd1(pReply, return_value->GetI());
1869 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1870 expandBufAdd2BE(pReply, return_value->GetI());
1871 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1872 expandBufAdd4BE(pReply, return_value->GetI());
1873 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1874 expandBufAdd8BE(pReply, return_value->GetJ());
1875 } else {
1876 CHECK_EQ(tag, JDWP::JT_VOID);
1877 }
1878 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001879 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001880 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001881 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001882 expandBufAddObjectId(pReply, gRegistry->Add(value));
1883 }
1884}
1885
Ian Rogersc0542af2014-09-03 16:16:56 -07001886JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001887 ScopedObjectAccessUnchecked soa(Thread::Current());
1888 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001889 JDWP::JdwpError error;
1890 Thread* thread = DecodeThread(soa, thread_id, &error);
1891 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001892 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1893 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001894 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001895
1896 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07001897 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1898 CHECK(thread_object != nullptr) << error;
Brian Carlstromea46f952013-07-30 01:26:50 -07001899 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001900 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1901 mirror::String* s =
1902 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Ian Rogersc0542af2014-09-03 16:16:56 -07001903 if (s != nullptr) {
1904 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08001905 }
1906 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001907}
1908
Elliott Hughes221229c2013-01-08 18:17:50 -08001909JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02001910 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001911 JDWP::JdwpError error;
1912 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1913 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001914 return JDWP::ERR_INVALID_OBJECT;
1915 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001916 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001917 // Okay, so it's an object, but is it actually a thread?
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001918 {
1919 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001920 Thread* thread = DecodeThread(soa, thread_id, &error);
1921 UNUSED(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001922 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001923 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1924 // Zombie threads are in the null group.
1925 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001926 error = JDWP::ERR_NONE;
1927 } else if (error == JDWP::ERR_NONE) {
1928 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1929 CHECK(c != nullptr);
Sebastien Hertze49e1952014-10-13 11:27:13 +02001930 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001931 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001932 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001933 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001934 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1935 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001936 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001937 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001938}
1939
Sebastien Hertza06430c2014-09-15 19:21:30 +02001940static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
1941 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
1942 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001943 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,
1944 error);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001945 if (*error != JDWP::ERR_NONE) {
1946 return nullptr;
1947 }
1948 if (thread_group == nullptr) {
1949 *error = JDWP::ERR_INVALID_OBJECT;
1950 return nullptr;
1951 }
Ian Rogers98379392014-02-24 16:53:16 -08001952 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1953 CHECK(c != nullptr);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001954 if (!c->IsAssignableFrom(thread_group->GetClass())) {
1955 // This is not a java.lang.ThreadGroup.
1956 *error = JDWP::ERR_INVALID_THREAD_GROUP;
1957 return nullptr;
1958 }
1959 *error = JDWP::ERR_NONE;
1960 return thread_group;
1961}
1962
1963JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
1964 ScopedObjectAccessUnchecked soa(Thread::Current());
1965 JDWP::JdwpError error;
1966 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
1967 if (error != JDWP::ERR_NONE) {
1968 return error;
1969 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001970 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupName");
Sebastien Hertze49e1952014-10-13 11:27:13 +02001971 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_name);
Ian Rogersc0542af2014-09-03 16:16:56 -07001972 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001973 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Sebastien Hertza06430c2014-09-15 19:21:30 +02001974
1975 std::string thread_group_name(s->ToModifiedUtf8());
1976 expandBufAddUtf8String(pReply, thread_group_name);
1977 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001978}
1979
Sebastien Hertza06430c2014-09-15 19:21:30 +02001980JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08001981 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001982 JDWP::JdwpError error;
Sebastien Hertza06430c2014-09-15 19:21:30 +02001983 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
1984 if (error != JDWP::ERR_NONE) {
1985 return error;
1986 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001987 mirror::Object* parent;
1988 {
1989 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupParent");
Sebastien Hertze49e1952014-10-13 11:27:13 +02001990 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_parent);
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001991 CHECK(f != nullptr);
1992 parent = f->GetObject(thread_group);
1993 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02001994 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
1995 expandBufAddObjectId(pReply, parent_group_id);
1996 return JDWP::ERR_NONE;
1997}
1998
1999static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
2000 std::vector<JDWP::ObjectId>* child_thread_group_ids)
2001 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2002 CHECK(thread_group != nullptr);
2003
2004 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Sebastien Hertze49e1952014-10-13 11:27:13 +02002005 mirror::ArtField* groups_field = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_groups);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002006 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Sebastien Hertze49e1952014-10-13 11:27:13 +02002007 {
2008 // The "groups" field is declared as a java.util.List: check it really is
2009 // an instance of java.util.ArrayList.
2010 CHECK(groups_array_list != nullptr);
2011 mirror::Class* java_util_ArrayList_class =
2012 soa.Decode<mirror::Class*>(WellKnownClasses::java_util_ArrayList);
2013 CHECK(groups_array_list->InstanceOf(java_util_ArrayList_class));
2014 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002015
2016 // Get the array and size out of the ArrayList<ThreadGroup>...
Sebastien Hertze49e1952014-10-13 11:27:13 +02002017 mirror::ArtField* array_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_array);
2018 mirror::ArtField* size_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_size);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002019 mirror::ObjectArray<mirror::Object>* groups_array =
2020 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
2021 const int32_t size = size_field->GetInt(groups_array_list);
2022
2023 // Copy the first 'size' elements out of the array into the result.
Sebastien Hertz6995c602014-09-09 12:10:13 +02002024 ObjectRegistry* registry = Dbg::GetObjectRegistry();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002025 for (int32_t i = 0; i < size; ++i) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002026 child_thread_group_ids->push_back(registry->Add(groups_array->Get(i)));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002027 }
2028}
2029
2030JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2031 JDWP::ExpandBuf* pReply) {
2032 ScopedObjectAccessUnchecked soa(Thread::Current());
2033 JDWP::JdwpError error;
2034 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2035 if (error != JDWP::ERR_NONE) {
2036 return error;
2037 }
2038
2039 // Add child threads.
2040 {
2041 std::vector<JDWP::ObjectId> child_thread_ids;
2042 GetThreads(thread_group, &child_thread_ids);
2043 expandBufAdd4BE(pReply, child_thread_ids.size());
2044 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2045 expandBufAddObjectId(pReply, child_thread_id);
2046 }
2047 }
2048
2049 // Add child thread groups.
2050 {
2051 std::vector<JDWP::ObjectId> child_thread_groups_ids;
2052 GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids);
2053 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2054 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2055 expandBufAddObjectId(pReply, child_thread_group_id);
2056 }
2057 }
2058
2059 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002060}
2061
2062JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002063 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07002064 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002065 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002066 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002067}
2068
Jeff Hao920af3e2013-08-28 15:46:38 -07002069JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2070 switch (state) {
2071 case kBlocked:
2072 return JDWP::TS_MONITOR;
2073 case kNative:
2074 case kRunnable:
2075 case kSuspended:
2076 return JDWP::TS_RUNNING;
2077 case kSleeping:
2078 return JDWP::TS_SLEEPING;
2079 case kStarting:
2080 case kTerminated:
2081 return JDWP::TS_ZOMBIE;
2082 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002083 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002084 case kWaitingForDebuggerSend:
2085 case kWaitingForDebuggerSuspension:
2086 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002087 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002088 case kWaitingForGcToComplete:
Jeff Hao920af3e2013-08-28 15:46:38 -07002089 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002090 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002091 case kWaitingForSignalCatcherOutput:
Hiroshi Yamauchi0c8c3032015-01-16 16:54:35 -08002092 case kWaitingForVisitObjects:
Jeff Hao920af3e2013-08-28 15:46:38 -07002093 case kWaitingInMainDebuggerLoop:
2094 case kWaitingInMainSignalCatcherLoop:
2095 case kWaitingPerformingGc:
2096 case kWaiting:
2097 return JDWP::TS_WAIT;
2098 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2099 }
2100 LOG(FATAL) << "Unknown thread state: " << state;
2101 return JDWP::TS_ZOMBIE;
2102}
2103
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002104JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2105 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002106 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002107
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002108 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2109
Ian Rogers50b35e22012-10-04 10:09:15 -07002110 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002111 JDWP::JdwpError error;
2112 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002113 if (error != JDWP::ERR_NONE) {
2114 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2115 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002116 return JDWP::ERR_NONE;
2117 }
2118 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002119 }
2120
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002121 if (IsSuspendedForDebugger(soa, thread)) {
2122 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002123 }
2124
Jeff Hao920af3e2013-08-28 15:46:38 -07002125 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002126 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002127}
2128
Elliott Hughes221229c2013-01-08 18:17:50 -08002129JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002130 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07002131 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002132 JDWP::JdwpError error;
2133 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002134 if (error != JDWP::ERR_NONE) {
2135 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002136 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002137 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002138 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002139 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002140}
2141
Elliott Hughesf9501702013-01-11 11:22:27 -08002142JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2143 ScopedObjectAccess soa(Thread::Current());
2144 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002145 JDWP::JdwpError error;
2146 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002147 if (error != JDWP::ERR_NONE) {
2148 return error;
2149 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002150 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002151 return JDWP::ERR_NONE;
2152}
2153
Sebastien Hertz070f7322014-09-09 12:08:49 +02002154static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa,
2155 mirror::Object* desired_thread_group, mirror::Object* peer)
2156 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2157 // Do we want threads from all thread groups?
2158 if (desired_thread_group == nullptr) {
2159 return true;
2160 }
2161 mirror::ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
2162 DCHECK(thread_group_field != nullptr);
2163 mirror::Object* group = thread_group_field->GetObject(peer);
2164 return (group == desired_thread_group);
2165}
2166
Sebastien Hertza06430c2014-09-15 19:21:30 +02002167void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002168 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz070f7322014-09-09 12:08:49 +02002169 std::list<Thread*> all_threads_list;
2170 {
2171 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2172 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2173 }
2174 for (Thread* t : all_threads_list) {
2175 if (t == Dbg::GetDebugThread()) {
2176 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2177 // query all threads, so it's easier if we just don't tell them about this thread.
2178 continue;
2179 }
2180 if (t->IsStillStarting()) {
2181 // This thread is being started (and has been registered in the thread list). However, it is
2182 // not completely started yet so we must ignore it.
2183 continue;
2184 }
2185 mirror::Object* peer = t->GetPeer();
2186 if (peer == nullptr) {
2187 // peer might be NULL if the thread is still starting up. We can't tell the debugger about
2188 // this thread yet.
2189 // TODO: if we identified threads to the debugger by their Thread*
2190 // rather than their peer's mirror::Object*, we could fix this.
2191 // Doing so might help us report ZOMBIE threads too.
2192 continue;
2193 }
2194 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
2195 thread_ids->push_back(gRegistry->Add(peer));
2196 }
2197 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002198}
Elliott Hughesa2155262011-11-16 16:26:58 -08002199
Ian Rogersc0542af2014-09-03 16:16:56 -07002200static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002201 struct CountStackDepthVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002202 explicit CountStackDepthVisitor(Thread* thread_in)
2203 : StackVisitor(thread_in, nullptr), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002204
Elliott Hughes64f574f2013-02-20 14:57:12 -08002205 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2206 // annotalysis.
2207 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002208 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002209 ++depth;
2210 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002211 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002212 }
2213 size_t depth;
2214 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002215
Ian Rogers7a22fa62013-01-23 12:16:16 -08002216 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002217 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002218 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002219}
2220
Ian Rogersc0542af2014-09-03 16:16:56 -07002221JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002222 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002223 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002224 JDWP::JdwpError error;
2225 *result = 0;
2226 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002227 if (error != JDWP::ERR_NONE) {
2228 return error;
2229 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002230 if (!IsSuspendedForDebugger(soa, thread)) {
2231 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2232 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002233 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002234 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002235}
2236
Ian Rogers306057f2012-11-26 12:45:53 -08002237JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2238 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002239 class GetFrameVisitor : public StackVisitor {
2240 public:
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002241 GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in,
2242 JDWP::ExpandBuf* buf_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002243 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07002244 : StackVisitor(thread, nullptr), depth_(0),
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002245 start_frame_(start_frame_in), frame_count_(frame_count_in), buf_(buf_in) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002246 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002247 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002248
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002249 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2250 // annotalysis.
2251 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002252 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002253 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002254 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002255 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002256 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002257 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002258 if (depth_ >= start_frame_) {
2259 JDWP::FrameId frame_id(GetFrameId());
2260 JDWP::JdwpLocation location;
Sebastien Hertz6995c602014-09-09 12:10:13 +02002261 SetJdwpLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002262 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002263 expandBufAdd8BE(buf_, frame_id);
2264 expandBufAddLocation(buf_, location);
2265 }
2266 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002267 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002268 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002269
2270 private:
2271 size_t depth_;
2272 const size_t start_frame_;
2273 const size_t frame_count_;
2274 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002275 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002276
2277 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002278 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002279 JDWP::JdwpError error;
2280 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002281 if (error != JDWP::ERR_NONE) {
2282 return error;
2283 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002284 if (!IsSuspendedForDebugger(soa, thread)) {
2285 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2286 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002287 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002288 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002289 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002290}
2291
2292JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002293 return GetThreadId(Thread::Current());
2294}
2295
2296JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002297 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002298 return gRegistry->Add(thread->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002299}
2300
Elliott Hughes475fc232011-10-25 15:00:35 -07002301void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002302 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002303}
2304
2305void Dbg::ResumeVM() {
Sebastien Hertz253fa552014-10-14 17:27:15 +02002306 Runtime::Current()->GetThreadList()->ResumeAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002307}
2308
Elliott Hughes221229c2013-01-08 18:17:50 -08002309JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002310 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002311 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002312 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002313 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002314 JDWP::JdwpError error;
2315 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002316 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002317 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002318 return JDWP::ERR_THREAD_NOT_ALIVE;
2319 }
Ian Rogers4ad5cd32014-11-11 23:08:07 -08002320 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002321 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002322 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2323 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2324 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002325 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002326 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002327 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002328 return JDWP::ERR_INTERNAL;
2329 } else {
2330 return JDWP::ERR_THREAD_NOT_ALIVE;
2331 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002332}
2333
Elliott Hughes221229c2013-01-08 18:17:50 -08002334void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002335 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002336 JDWP::JdwpError error;
2337 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2338 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002339 Thread* thread;
2340 {
2341 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2342 thread = Thread::FromManagedThread(soa, peer);
2343 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002344 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002345 LOG(WARNING) << "No such thread for resume: " << peer;
2346 return;
2347 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002348 bool needs_resume;
2349 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002350 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002351 needs_resume = thread->GetSuspendCount() > 0;
2352 }
2353 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002354 Runtime::Current()->GetThreadList()->Resume(thread, true);
2355 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002356}
2357
2358void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002359 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002360}
2361
Ian Rogers0399dde2012-06-06 17:09:28 -07002362struct GetThisVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002363 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002364 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002365 : StackVisitor(thread, context), this_object(nullptr), frame_id(frame_id_in) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002366
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002367 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2368 // annotalysis.
2369 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002370 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002371 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002372 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002373 this_object = GetThisObject();
2374 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002375 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002376 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002377
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002378 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002379 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002380};
2381
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002382JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2383 JDWP::ObjectId* result) {
2384 ScopedObjectAccessUnchecked soa(Thread::Current());
2385 Thread* thread;
2386 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002387 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002388 JDWP::JdwpError error;
2389 thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002390 if (error != JDWP::ERR_NONE) {
2391 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002392 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002393 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002394 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2395 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002396 }
Ian Rogers700a4022014-05-19 16:49:03 -07002397 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002398 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002399 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002400 *result = gRegistry->Add(visitor.this_object);
2401 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002402}
2403
Sebastien Hertz8009f392014-09-01 17:07:11 +02002404// Walks the stack until we find the frame with the given FrameId.
2405class FindFrameVisitor FINAL : public StackVisitor {
2406 public:
2407 FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
2408 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2409 : StackVisitor(thread, context), frame_id_(frame_id), error_(JDWP::ERR_INVALID_FRAMEID) {}
Ian Rogersca190662012-06-26 15:45:57 -07002410
Sebastien Hertz8009f392014-09-01 17:07:11 +02002411 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2412 // annotalysis.
2413 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
2414 if (GetFrameId() != frame_id_) {
2415 return true; // Not our frame, carry on.
Ian Rogers0399dde2012-06-06 17:09:28 -07002416 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002417 mirror::ArtMethod* m = GetMethod();
2418 if (m->IsNative()) {
2419 // We can't read/write local value from/into native method.
2420 error_ = JDWP::ERR_OPAQUE_FRAME;
2421 } else {
2422 // We found our frame.
2423 error_ = JDWP::ERR_NONE;
2424 }
2425 return false;
2426 }
2427
2428 JDWP::JdwpError GetError() const {
2429 return error_;
2430 }
2431
2432 private:
2433 const JDWP::FrameId frame_id_;
2434 JDWP::JdwpError error_;
2435};
2436
2437JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2438 JDWP::ObjectId thread_id = request->ReadThreadId();
2439 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002440
2441 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002442 Thread* thread;
2443 {
2444 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2445 JDWP::JdwpError error;
2446 thread = DecodeThread(soa, thread_id, &error);
2447 if (error != JDWP::ERR_NONE) {
2448 return error;
2449 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002450 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002451 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002452 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002453 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002454 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002455 if (visitor.GetError() != JDWP::ERR_NONE) {
2456 return visitor.GetError();
2457 }
2458
2459 // Read the values from visitor's context.
2460 int32_t slot_count = request->ReadSigned32("slot count");
2461 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2462 for (int32_t i = 0; i < slot_count; ++i) {
2463 uint32_t slot = request->ReadUnsigned32("slot");
2464 JDWP::JdwpTag reqSigByte = request->ReadTag();
2465
2466 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
2467
2468 size_t width = Dbg::GetTagWidth(reqSigByte);
Sebastien Hertz7d955652014-10-22 10:57:10 +02002469 uint8_t* ptr = expandBufAddSpace(pReply, width + 1);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002470 JDWP::JdwpError error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width);
2471 if (error != JDWP::ERR_NONE) {
2472 return error;
2473 }
2474 }
2475 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002476}
2477
Sebastien Hertz8009f392014-09-01 17:07:11 +02002478JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2479 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
2480 mirror::ArtMethod* m = visitor.GetMethod();
2481 uint16_t reg = DemangleSlot(slot, m);
2482 // TODO: check that the tag is compatible with the actual type of the slot!
2483 // TODO: check slot is valid for this method or return INVALID_SLOT error.
2484 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
2485 switch (tag) {
2486 case JDWP::JT_BOOLEAN: {
2487 CHECK_EQ(width, 1U);
2488 uint32_t intVal;
2489 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2490 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2491 JDWP::Set1(buf + 1, intVal != 0);
2492 } else {
2493 VLOG(jdwp) << "failed to get boolean local " << reg;
2494 return kFailureErrorCode;
Ian Rogers0399dde2012-06-06 17:09:28 -07002495 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002496 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002497 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002498 case JDWP::JT_BYTE: {
2499 CHECK_EQ(width, 1U);
2500 uint32_t intVal;
2501 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2502 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2503 JDWP::Set1(buf + 1, intVal);
2504 } else {
2505 VLOG(jdwp) << "failed to get byte local " << reg;
2506 return kFailureErrorCode;
2507 }
2508 break;
2509 }
2510 case JDWP::JT_SHORT:
2511 case JDWP::JT_CHAR: {
2512 CHECK_EQ(width, 2U);
2513 uint32_t intVal;
2514 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2515 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2516 JDWP::Set2BE(buf + 1, intVal);
2517 } else {
2518 VLOG(jdwp) << "failed to get short/char local " << reg;
2519 return kFailureErrorCode;
2520 }
2521 break;
2522 }
2523 case JDWP::JT_INT: {
2524 CHECK_EQ(width, 4U);
2525 uint32_t intVal;
2526 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2527 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2528 JDWP::Set4BE(buf + 1, intVal);
2529 } else {
2530 VLOG(jdwp) << "failed to get int local " << reg;
2531 return kFailureErrorCode;
2532 }
2533 break;
2534 }
2535 case JDWP::JT_FLOAT: {
2536 CHECK_EQ(width, 4U);
2537 uint32_t intVal;
2538 if (visitor.GetVReg(m, reg, kFloatVReg, &intVal)) {
2539 VLOG(jdwp) << "get float local " << reg << " = " << intVal;
2540 JDWP::Set4BE(buf + 1, intVal);
2541 } else {
2542 VLOG(jdwp) << "failed to get float local " << reg;
2543 return kFailureErrorCode;
2544 }
2545 break;
2546 }
2547 case JDWP::JT_ARRAY:
2548 case JDWP::JT_CLASS_LOADER:
2549 case JDWP::JT_CLASS_OBJECT:
2550 case JDWP::JT_OBJECT:
2551 case JDWP::JT_STRING:
2552 case JDWP::JT_THREAD:
2553 case JDWP::JT_THREAD_GROUP: {
2554 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2555 uint32_t intVal;
2556 if (visitor.GetVReg(m, reg, kReferenceVReg, &intVal)) {
2557 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2558 VLOG(jdwp) << "get " << tag << " object local " << reg << " = " << o;
2559 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2560 LOG(FATAL) << "Register " << reg << " expected to hold " << tag << " object: " << o;
2561 }
2562 tag = TagFromObject(soa, o);
2563 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
2564 } else {
2565 VLOG(jdwp) << "failed to get " << tag << " object local " << reg;
2566 return kFailureErrorCode;
2567 }
2568 break;
2569 }
2570 case JDWP::JT_DOUBLE: {
2571 CHECK_EQ(width, 8U);
2572 uint64_t longVal;
2573 if (visitor.GetVRegPair(m, reg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2574 VLOG(jdwp) << "get double local " << reg << " = " << longVal;
2575 JDWP::Set8BE(buf + 1, longVal);
2576 } else {
2577 VLOG(jdwp) << "failed to get double local " << reg;
2578 return kFailureErrorCode;
2579 }
2580 break;
2581 }
2582 case JDWP::JT_LONG: {
2583 CHECK_EQ(width, 8U);
2584 uint64_t longVal;
2585 if (visitor.GetVRegPair(m, reg, kLongLoVReg, kLongHiVReg, &longVal)) {
2586 VLOG(jdwp) << "get long local " << reg << " = " << longVal;
2587 JDWP::Set8BE(buf + 1, longVal);
2588 } else {
2589 VLOG(jdwp) << "failed to get long local " << reg;
2590 return kFailureErrorCode;
2591 }
2592 break;
2593 }
2594 default:
2595 LOG(FATAL) << "Unknown tag " << tag;
2596 break;
2597 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002598
Sebastien Hertz8009f392014-09-01 17:07:11 +02002599 // Prepend tag, which may have been updated.
2600 JDWP::Set1(buf, tag);
2601 return JDWP::ERR_NONE;
2602}
2603
2604JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2605 JDWP::ObjectId thread_id = request->ReadThreadId();
2606 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002607
2608 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002609 Thread* thread;
2610 {
2611 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2612 JDWP::JdwpError error;
2613 thread = DecodeThread(soa, thread_id, &error);
2614 if (error != JDWP::ERR_NONE) {
2615 return error;
2616 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002617 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002618 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002619 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002620 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002621 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002622 if (visitor.GetError() != JDWP::ERR_NONE) {
2623 return visitor.GetError();
2624 }
2625
2626 // Writes the values into visitor's context.
2627 int32_t slot_count = request->ReadSigned32("slot count");
2628 for (int32_t i = 0; i < slot_count; ++i) {
2629 uint32_t slot = request->ReadUnsigned32("slot");
2630 JDWP::JdwpTag sigByte = request->ReadTag();
2631 size_t width = Dbg::GetTagWidth(sigByte);
2632 uint64_t value = request->ReadValue(width);
2633
2634 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
2635 JDWP::JdwpError error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width);
2636 if (error != JDWP::ERR_NONE) {
2637 return error;
2638 }
2639 }
2640 return JDWP::ERR_NONE;
2641}
2642
2643JDWP::JdwpError Dbg::SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
2644 uint64_t value, size_t width) {
2645 mirror::ArtMethod* m = visitor.GetMethod();
2646 uint16_t reg = DemangleSlot(slot, m);
2647 // TODO: check that the tag is compatible with the actual type of the slot!
2648 // TODO: check slot is valid for this method or return INVALID_SLOT error.
2649 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
2650 switch (tag) {
2651 case JDWP::JT_BOOLEAN:
2652 case JDWP::JT_BYTE:
2653 CHECK_EQ(width, 1U);
2654 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2655 VLOG(jdwp) << "failed to set boolean/byte local " << reg << " = "
2656 << static_cast<uint32_t>(value);
2657 return kFailureErrorCode;
2658 }
2659 break;
2660 case JDWP::JT_SHORT:
2661 case JDWP::JT_CHAR:
2662 CHECK_EQ(width, 2U);
2663 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2664 VLOG(jdwp) << "failed to set short/char local " << reg << " = "
2665 << static_cast<uint32_t>(value);
2666 return kFailureErrorCode;
2667 }
2668 break;
2669 case JDWP::JT_INT:
2670 CHECK_EQ(width, 4U);
2671 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2672 VLOG(jdwp) << "failed to set int local " << reg << " = "
2673 << static_cast<uint32_t>(value);
2674 return kFailureErrorCode;
2675 }
2676 break;
2677 case JDWP::JT_FLOAT:
2678 CHECK_EQ(width, 4U);
2679 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kFloatVReg)) {
2680 VLOG(jdwp) << "failed to set float local " << reg << " = "
2681 << static_cast<uint32_t>(value);
2682 return kFailureErrorCode;
2683 }
2684 break;
2685 case JDWP::JT_ARRAY:
2686 case JDWP::JT_CLASS_LOADER:
2687 case JDWP::JT_CLASS_OBJECT:
2688 case JDWP::JT_OBJECT:
2689 case JDWP::JT_STRING:
2690 case JDWP::JT_THREAD:
2691 case JDWP::JT_THREAD_GROUP: {
2692 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2693 JDWP::JdwpError error;
2694 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value),
2695 &error);
2696 if (error != JDWP::ERR_NONE) {
2697 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2698 return JDWP::ERR_INVALID_OBJECT;
2699 } else if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2700 kReferenceVReg)) {
2701 VLOG(jdwp) << "failed to set " << tag << " object local " << reg << " = " << o;
2702 return kFailureErrorCode;
2703 }
2704 break;
2705 }
2706 case JDWP::JT_DOUBLE: {
2707 CHECK_EQ(width, 8U);
2708 if (!visitor.SetVRegPair(m, reg, value, kDoubleLoVReg, kDoubleHiVReg)) {
2709 VLOG(jdwp) << "failed to set double local " << reg << " = " << value;
2710 return kFailureErrorCode;
2711 }
2712 break;
2713 }
2714 case JDWP::JT_LONG: {
2715 CHECK_EQ(width, 8U);
2716 if (!visitor.SetVRegPair(m, reg, value, kLongLoVReg, kLongHiVReg)) {
2717 VLOG(jdwp) << "failed to set double local " << reg << " = " << value;
2718 return kFailureErrorCode;
2719 }
2720 break;
2721 }
2722 default:
2723 LOG(FATAL) << "Unknown tag " << tag;
2724 break;
2725 }
2726 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002727}
2728
Sebastien Hertz6995c602014-09-09 12:10:13 +02002729static void SetEventLocation(JDWP::EventLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
2730 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2731 DCHECK(location != nullptr);
2732 if (m == nullptr) {
2733 memset(location, 0, sizeof(*location));
2734 } else {
2735 location->method = m;
2736 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002737 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002738}
2739
Ian Rogersef7d42f2014-01-06 12:55:46 -08002740void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002741 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002742 if (!IsDebuggerActive()) {
2743 return;
2744 }
2745 DCHECK(m != nullptr);
2746 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002747 JDWP::EventLocation location;
2748 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002749
Sebastien Hertz6995c602014-09-09 12:10:13 +02002750 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002751}
2752
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002753void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
2754 mirror::Object* this_object, mirror::ArtField* f) {
2755 if (!IsDebuggerActive()) {
2756 return;
2757 }
2758 DCHECK(m != nullptr);
2759 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002760 JDWP::EventLocation location;
2761 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002762
Sebastien Hertz6995c602014-09-09 12:10:13 +02002763 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002764}
2765
2766void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
2767 mirror::Object* this_object, mirror::ArtField* f,
2768 const JValue* field_value) {
2769 if (!IsDebuggerActive()) {
2770 return;
2771 }
2772 DCHECK(m != nullptr);
2773 DCHECK(f != nullptr);
2774 DCHECK(field_value != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002775 JDWP::EventLocation location;
2776 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002777
Sebastien Hertz6995c602014-09-09 12:10:13 +02002778 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002779}
2780
2781void Dbg::PostException(const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002782 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002783 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002784 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002785 return;
2786 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002787 JDWP::EventLocation exception_throw_location;
2788 SetEventLocation(&exception_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
2789 JDWP::EventLocation exception_catch_location;
2790 SetEventLocation(&exception_catch_location, catch_method, catch_dex_pc);
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002791
Sebastien Hertz6995c602014-09-09 12:10:13 +02002792 gJdwpState->PostException(&exception_throw_location, exception_object, &exception_catch_location,
2793 throw_location.GetThis());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002794}
2795
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002796void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002797 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002798 return;
2799 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002800 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002801}
2802
Ian Rogers62d6c772013-02-27 08:32:07 -08002803void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002804 mirror::ArtMethod* m, uint32_t dex_pc,
2805 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002806 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002807 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002808 }
2809
Elliott Hughes86964332012-02-15 19:37:42 -08002810 if (IsBreakpoint(m, dex_pc)) {
2811 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002812 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002813
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002814 // If the debugger is single-stepping one of our threads, check to
2815 // see if we're that thread and we've reached a step point.
2816 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002817 if (single_step_control != nullptr) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002818 CHECK(!m->IsNative());
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002819 if (single_step_control->GetStepDepth() == JDWP::SD_INTO) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002820 // Step into method calls. We break when the line number
2821 // or method pointer changes. If we're in SS_MIN mode, we
2822 // always stop.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002823 if (single_step_control->GetMethod() != m) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002824 event_flags |= kSingleStep;
2825 VLOG(jdwp) << "SS new method";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002826 } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002827 event_flags |= kSingleStep;
2828 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002829 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002830 event_flags |= kSingleStep;
2831 VLOG(jdwp) << "SS new line";
2832 }
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002833 } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002834 // Step over method calls. We break when the line number is
2835 // different and the frame depth is <= the original frame
2836 // depth. (We can't just compare on the method, because we
2837 // might get unrolled past it by an exception, and it's tricky
2838 // to identify recursion.)
2839
2840 int stack_depth = GetStackDepth(thread);
2841
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002842 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002843 // Popped up one or more frames, always trigger.
2844 event_flags |= kSingleStep;
2845 VLOG(jdwp) << "SS method pop";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002846 } else if (stack_depth == single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002847 // Same depth, see if we moved.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002848 if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002849 event_flags |= kSingleStep;
2850 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002851 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002852 event_flags |= kSingleStep;
2853 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002854 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002855 }
2856 } else {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002857 CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002858 // Return from the current method. We break when the frame
2859 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002860
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002861 // This differs from the "method exit" break in that it stops
2862 // with the PC at the next instruction in the returned-to
2863 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002864
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002865 int stack_depth = GetStackDepth(thread);
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002866 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002867 event_flags |= kSingleStep;
2868 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002869 }
2870 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002871 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002872
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002873 // If there's something interesting going on, see if it matches one
2874 // of the debugger filters.
2875 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002876 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002877 }
2878}
2879
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002880size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2881 switch (instrumentation_event) {
2882 case instrumentation::Instrumentation::kMethodEntered:
2883 return &method_enter_event_ref_count_;
2884 case instrumentation::Instrumentation::kMethodExited:
2885 return &method_exit_event_ref_count_;
2886 case instrumentation::Instrumentation::kDexPcMoved:
2887 return &dex_pc_change_event_ref_count_;
2888 case instrumentation::Instrumentation::kFieldRead:
2889 return &field_read_event_ref_count_;
2890 case instrumentation::Instrumentation::kFieldWritten:
2891 return &field_write_event_ref_count_;
2892 case instrumentation::Instrumentation::kExceptionCaught:
2893 return &exception_catch_event_ref_count_;
2894 default:
2895 return nullptr;
2896 }
2897}
2898
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002899// Process request while all mutator threads are suspended.
2900void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002901 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002902 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002903 case DeoptimizationRequest::kNothing:
2904 LOG(WARNING) << "Ignoring empty deoptimization request.";
2905 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002906 case DeoptimizationRequest::kRegisterForEvent:
2907 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002908 request.InstrumentationEvent());
2909 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
2910 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002911 break;
2912 case DeoptimizationRequest::kUnregisterForEvent:
2913 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002914 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002915 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002916 request.InstrumentationEvent());
2917 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002918 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002919 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002920 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002921 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002922 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002923 break;
2924 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002925 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002926 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002927 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002928 break;
2929 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002930 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
2931 instrumentation->Deoptimize(request.Method());
2932 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002933 break;
2934 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002935 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
2936 instrumentation->Undeoptimize(request.Method());
2937 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002938 break;
2939 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002940 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002941 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002942 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002943}
2944
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002945void Dbg::DelayFullUndeoptimization() {
Sebastien Hertzf3928792014-11-17 19:00:37 +01002946 if (RequiresDeoptimization()) {
2947 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2948 ++delayed_full_undeoptimization_count_;
2949 DCHECK_LE(delayed_full_undeoptimization_count_, full_deoptimization_event_count_);
2950 }
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002951}
2952
2953void Dbg::ProcessDelayedFullUndeoptimizations() {
2954 // TODO: avoid taking the lock twice (once here and once in ManageDeoptimization).
2955 {
Brian Carlstrom306db812014-09-05 13:01:41 -07002956 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002957 while (delayed_full_undeoptimization_count_ > 0) {
2958 DeoptimizationRequest req;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002959 req.SetKind(DeoptimizationRequest::kFullUndeoptimization);
2960 req.SetMethod(nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002961 RequestDeoptimizationLocked(req);
2962 --delayed_full_undeoptimization_count_;
2963 }
2964 }
2965 ManageDeoptimization();
2966}
2967
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002968void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002969 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002970 // Nothing to do.
2971 return;
2972 }
Brian Carlstrom306db812014-09-05 13:01:41 -07002973 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002974 RequestDeoptimizationLocked(req);
2975}
2976
2977void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002978 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002979 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002980 DCHECK_NE(req.InstrumentationEvent(), 0u);
2981 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002982 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002983 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002984 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02002985 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002986 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002987 deoptimization_requests_.push_back(req);
2988 }
2989 *counter = *counter + 1;
2990 break;
2991 }
2992 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002993 DCHECK_NE(req.InstrumentationEvent(), 0u);
2994 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002995 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002996 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002997 *counter = *counter - 1;
2998 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02002999 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003000 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003001 deoptimization_requests_.push_back(req);
3002 }
3003 break;
3004 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003005 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003006 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003007 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003008 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3009 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003010 deoptimization_requests_.push_back(req);
3011 }
3012 ++full_deoptimization_event_count_;
3013 break;
3014 }
3015 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003016 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003017 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003018 --full_deoptimization_event_count_;
3019 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003020 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3021 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003022 deoptimization_requests_.push_back(req);
3023 }
3024 break;
3025 }
3026 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003027 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003028 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003029 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003030 deoptimization_requests_.push_back(req);
3031 break;
3032 }
3033 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003034 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003035 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003036 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003037 deoptimization_requests_.push_back(req);
3038 break;
3039 }
3040 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003041 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003042 break;
3043 }
3044 }
3045}
3046
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003047void Dbg::ManageDeoptimization() {
3048 Thread* const self = Thread::Current();
3049 {
3050 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003051 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003052 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003053 return;
3054 }
3055 }
3056 CHECK_EQ(self->GetState(), kRunnable);
3057 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3058 // We need to suspend mutator threads first.
3059 Runtime* const runtime = Runtime::Current();
3060 runtime->GetThreadList()->SuspendAll();
3061 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003062 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003063 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003064 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003065 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003066 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003067 ProcessDeoptimizationRequest(request);
3068 }
3069 deoptimization_requests_.clear();
3070 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003071 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3072 runtime->GetThreadList()->ResumeAll();
3073 self->TransitionFromSuspendedToRunnable();
3074}
3075
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003076static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3077 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003078 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003079 if (code_item == nullptr) {
3080 // TODO We should not be asked to watch location in a native or abstract method so the code item
3081 // should never be null. We could just check we never encounter this case.
3082 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003083 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003084 // Note: method verifier may cause thread suspension.
3085 self->AssertThreadSuspensionIsAllowable();
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003086 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003087 mirror::Class* declaring_class = m->GetDeclaringClass();
3088 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3089 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003090 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Ian Rogers7b078e82014-09-10 14:44:24 -07003091 verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003092 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method,
Mathieu Chartier4306ef82014-12-19 18:41:47 -08003093 m->GetAccessFlags(), false, true, false, true);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003094 // Note: we don't need to verify the method.
3095 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3096}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003097
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003098static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003099 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003100 for (Breakpoint& breakpoint : gBreakpoints) {
3101 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003102 return &breakpoint;
3103 }
3104 }
3105 return nullptr;
3106}
3107
3108// Sanity checks all existing breakpoints on the same method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003109static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m,
3110 DeoptimizationRequest::Kind deoptimization_kind)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003111 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003112 for (const Breakpoint& breakpoint : gBreakpoints) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003113 if (breakpoint.Method() == m) {
3114 CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind());
3115 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003116 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003117 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
3118 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003119 // We should have deoptimized everything but not "selectively" deoptimized this method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003120 CHECK(instrumentation->AreAllMethodsDeoptimized());
3121 CHECK(!instrumentation->IsDeoptimized(m));
3122 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003123 // We should have "selectively" deoptimized this method.
3124 // Note: while we have not deoptimized everything for this method, we may have done it for
3125 // another event.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003126 CHECK(instrumentation->IsDeoptimized(m));
3127 } else {
3128 // This method does not require deoptimization.
3129 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3130 CHECK(!instrumentation->IsDeoptimized(m));
3131 }
3132}
3133
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003134// Returns the deoptimization kind required to set a breakpoint in a method.
3135// If a breakpoint has already been set, we also return the first breakpoint
3136// through the given 'existing_brkpt' pointer.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003137static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self,
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003138 mirror::ArtMethod* m,
3139 const Breakpoint** existing_brkpt)
Sebastien Hertzf3928792014-11-17 19:00:37 +01003140 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
3141 if (!Dbg::RequiresDeoptimization()) {
3142 // We already run in interpreter-only mode so we don't need to deoptimize anything.
3143 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method "
3144 << PrettyMethod(m);
3145 return DeoptimizationRequest::kNothing;
3146 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003147 const Breakpoint* first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003148 {
3149 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003150 first_breakpoint = FindFirstBreakpointForMethod(m);
3151 *existing_brkpt = first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003152 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003153
3154 if (first_breakpoint == nullptr) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003155 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3156 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3157 // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension.
3158 // Therefore we must not hold any lock when we call it.
3159 bool need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3160 if (need_full_deoptimization) {
3161 VLOG(jdwp) << "Need full deoptimization because of possible inlining of method "
3162 << PrettyMethod(m);
3163 return DeoptimizationRequest::kFullDeoptimization;
3164 } else {
3165 // We don't need to deoptimize if the method has not been compiled.
3166 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
3167 const bool is_compiled = class_linker->GetOatMethodQuickCodeFor(m) != nullptr;
3168 if (is_compiled) {
Sebastien Hertz6963e442014-11-26 22:11:27 +01003169 // If the method may be called through its direct code pointer (without loading
3170 // its updated entrypoint), we need full deoptimization to not miss the breakpoint.
3171 if (class_linker->MayBeCalledWithDirectCodePointer(m)) {
3172 VLOG(jdwp) << "Need full deoptimization because of possible direct code call "
3173 << "into image for compiled method " << PrettyMethod(m);
3174 return DeoptimizationRequest::kFullDeoptimization;
3175 } else {
3176 VLOG(jdwp) << "Need selective deoptimization for compiled method " << PrettyMethod(m);
3177 return DeoptimizationRequest::kSelectiveDeoptimization;
3178 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003179 } else {
3180 // Method is not compiled: we don't need to deoptimize.
3181 VLOG(jdwp) << "No need for deoptimization for non-compiled method " << PrettyMethod(m);
3182 return DeoptimizationRequest::kNothing;
3183 }
3184 }
3185 } else {
3186 // There is at least one breakpoint for this method: we don't need to deoptimize.
3187 // Let's check that all breakpoints are configured the same way for deoptimization.
3188 VLOG(jdwp) << "Breakpoint already set: no deoptimization is required";
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003189 DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003190 if (kIsDebugBuild) {
3191 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3192 SanityCheckExistingBreakpoints(m, deoptimization_kind);
3193 }
3194 return DeoptimizationRequest::kNothing;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003195 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003196}
3197
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003198// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3199// request if we need to deoptimize.
3200void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3201 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003202 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003203 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003204
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003205 const Breakpoint* existing_breakpoint = nullptr;
3206 const DeoptimizationRequest::Kind deoptimization_kind =
3207 GetRequiredDeoptimizationKind(self, m, &existing_breakpoint);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003208 req->SetKind(deoptimization_kind);
3209 if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
3210 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003211 } else {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003212 CHECK(deoptimization_kind == DeoptimizationRequest::kNothing ||
3213 deoptimization_kind == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003214 req->SetMethod(nullptr);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003215 }
3216
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003217 {
3218 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003219 // If there is at least one existing breakpoint on the same method, the new breakpoint
3220 // must have the same deoptimization kind than the existing breakpoint(s).
3221 DeoptimizationRequest::Kind breakpoint_deoptimization_kind;
3222 if (existing_breakpoint != nullptr) {
3223 breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind();
3224 } else {
3225 breakpoint_deoptimization_kind = deoptimization_kind;
3226 }
3227 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind));
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003228 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3229 << gBreakpoints[gBreakpoints.size() - 1];
3230 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003231}
3232
3233// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3234// request if we need to undeoptimize.
3235void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003236 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003237 mirror::ArtMethod* m = FromMethodId(location->method_id);
3238 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003239 DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003240 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003241 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003242 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Sebastien Hertzf3928792014-11-17 19:00:37 +01003243 deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind();
3244 DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization,
3245 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003246 gBreakpoints.erase(gBreakpoints.begin() + i);
3247 break;
3248 }
3249 }
3250 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3251 if (existing_breakpoint == nullptr) {
3252 // There is no more breakpoint on this method: we need to undeoptimize.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003253 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003254 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003255 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3256 req->SetMethod(nullptr);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003257 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003258 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003259 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3260 req->SetMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003261 } else {
3262 // This method had no need for deoptimization: do nothing.
3263 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3264 req->SetKind(DeoptimizationRequest::kNothing);
3265 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003266 }
3267 } else {
3268 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003269 req->SetKind(DeoptimizationRequest::kNothing);
3270 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003271 if (kIsDebugBuild) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003272 SanityCheckExistingBreakpoints(m, deoptimization_kind);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003273 }
Elliott Hughes86964332012-02-15 19:37:42 -08003274 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003275}
3276
Jeff Hao449db332013-04-12 18:30:52 -07003277// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3278// cause suspension if the thread is the current thread.
3279class ScopedThreadSuspension {
3280 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003281 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003282 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003283 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003284 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003285 error_(JDWP::ERR_NONE),
3286 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003287 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003288 ScopedObjectAccessUnchecked soa(self);
3289 {
3290 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003291 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003292 }
3293 if (error_ == JDWP::ERR_NONE) {
3294 if (thread_ == soa.Self()) {
3295 self_suspend_ = true;
3296 } else {
3297 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Sebastien Hertz6995c602014-09-09 12:10:13 +02003298 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003299 bool timed_out;
Ian Rogers4ad5cd32014-11-11 23:08:07 -08003300 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3301 Thread* suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true,
3302 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07003303 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003304 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003305 // Thread terminated from under us while suspending.
3306 error_ = JDWP::ERR_INVALID_THREAD;
3307 } else {
3308 CHECK_EQ(suspended_thread, thread_);
3309 other_suspend_ = true;
3310 }
3311 }
3312 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003313 }
Elliott Hughes86964332012-02-15 19:37:42 -08003314
Jeff Hao449db332013-04-12 18:30:52 -07003315 Thread* GetThread() const {
3316 return thread_;
3317 }
3318
3319 JDWP::JdwpError GetError() const {
3320 return error_;
3321 }
3322
3323 ~ScopedThreadSuspension() {
3324 if (other_suspend_) {
3325 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3326 }
3327 }
3328
3329 private:
3330 Thread* thread_;
3331 JDWP::JdwpError error_;
3332 bool self_suspend_;
3333 bool other_suspend_;
3334};
3335
3336JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3337 JDWP::JdwpStepDepth step_depth) {
3338 Thread* self = Thread::Current();
3339 ScopedThreadSuspension sts(self, thread_id);
3340 if (sts.GetError() != JDWP::ERR_NONE) {
3341 return sts.GetError();
3342 }
3343
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003344 // Work out what ArtMethod* we're in, the current line number, and how deep the stack currently
Elliott Hughes2435a572012-02-17 16:07:41 -08003345 // is for step-out.
Ian Rogers0399dde2012-06-06 17:09:28 -07003346 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003347 explicit SingleStepStackVisitor(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
3348 : StackVisitor(thread, nullptr), stack_depth(0), method(nullptr), line_number(-1) {
Elliott Hughes86964332012-02-15 19:37:42 -08003349 }
Ian Rogersca190662012-06-26 15:45:57 -07003350
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003351 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3352 // annotalysis.
3353 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003354 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003355 if (!m->IsRuntimeMethod()) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003356 ++stack_depth;
3357 if (method == nullptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003358 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003359 method = m;
Ian Rogersc0542af2014-09-03 16:16:56 -07003360 if (dex_cache != nullptr) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003361 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003362 line_number = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003363 }
Elliott Hughes86964332012-02-15 19:37:42 -08003364 }
3365 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003366 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003367 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003368
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003369 int stack_depth;
3370 mirror::ArtMethod* method;
3371 int32_t line_number;
Elliott Hughes86964332012-02-15 19:37:42 -08003372 };
Jeff Hao449db332013-04-12 18:30:52 -07003373
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003374 Thread* const thread = sts.GetThread();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003375 SingleStepStackVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07003376 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003377
Elliott Hughes2435a572012-02-17 16:07:41 -08003378 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
Elliott Hughes2435a572012-02-17 16:07:41 -08003379 struct DebugCallbackContext {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003380 explicit DebugCallbackContext(SingleStepControl* single_step_control_cb,
3381 int32_t line_number_cb, const DexFile::CodeItem* code_item)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003382 : single_step_control_(single_step_control_cb), line_number_(line_number_cb),
3383 code_item_(code_item), last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003384 }
3385
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003386 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number_cb) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003387 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003388 if (static_cast<int32_t>(line_number_cb) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003389 if (!context->last_pc_valid) {
3390 // Everything from this address until the next line change is ours.
3391 context->last_pc = address;
3392 context->last_pc_valid = true;
3393 }
3394 // Otherwise, if we're already in a valid range for this line,
3395 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003396 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003397 // Add everything from the last entry up until here to the set
3398 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003399 context->single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003400 }
3401 context->last_pc_valid = false;
3402 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003403 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003404 }
3405
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003406 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003407 // If the line number was the last in the position table...
3408 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003409 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003410 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003411 single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003412 }
3413 }
3414 }
3415
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003416 SingleStepControl* const single_step_control_;
3417 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003418 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003419 bool last_pc_valid;
3420 uint32_t last_pc;
3421 };
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003422
3423 // Allocate single step.
3424 SingleStepControl* single_step_control = new SingleStepControl(step_size, step_depth,
3425 visitor.stack_depth,
3426 visitor.method);
3427 CHECK(single_step_control != nullptr) << "Failed to allocate SingleStepControl";
3428 mirror::ArtMethod* m = single_step_control->GetMethod();
3429 const int32_t line_number = visitor.line_number;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003430 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003431 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003432 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003433 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07003434 DebugCallbackContext::Callback, nullptr, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003435 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003436
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003437 // Activate single-step in the thread.
3438 thread->ActivateSingleStepControl(single_step_control);
Elliott Hughes86964332012-02-15 19:37:42 -08003439
Elliott Hughes2435a572012-02-17 16:07:41 -08003440 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003441 VLOG(jdwp) << "Single-step thread: " << *thread;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003442 VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize();
3443 VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth();
3444 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->GetMethod());
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003445 VLOG(jdwp) << "Single-step current line: " << line_number;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003446 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth();
Elliott Hughes2435a572012-02-17 16:07:41 -08003447 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003448 for (uint32_t dex_pc : single_step_control->GetDexPcs()) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003449 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003450 }
3451 }
3452
3453 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003454}
3455
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003456void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3457 ScopedObjectAccessUnchecked soa(Thread::Current());
3458 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003459 JDWP::JdwpError error;
3460 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003461 if (error == JDWP::ERR_NONE) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003462 thread->DeactivateSingleStepControl();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003463 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003464}
3465
Elliott Hughes45651fd2012-02-21 15:48:20 -08003466static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3467 switch (tag) {
3468 default:
3469 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
Ian Rogersfc787ec2014-10-09 21:56:44 -07003470 UNREACHABLE();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003471
3472 // Primitives.
3473 case JDWP::JT_BYTE: return 'B';
3474 case JDWP::JT_CHAR: return 'C';
3475 case JDWP::JT_FLOAT: return 'F';
3476 case JDWP::JT_DOUBLE: return 'D';
3477 case JDWP::JT_INT: return 'I';
3478 case JDWP::JT_LONG: return 'J';
3479 case JDWP::JT_SHORT: return 'S';
3480 case JDWP::JT_VOID: return 'V';
3481 case JDWP::JT_BOOLEAN: return 'Z';
3482
3483 // Reference types.
3484 case JDWP::JT_ARRAY:
3485 case JDWP::JT_OBJECT:
3486 case JDWP::JT_STRING:
3487 case JDWP::JT_THREAD:
3488 case JDWP::JT_THREAD_GROUP:
3489 case JDWP::JT_CLASS_LOADER:
3490 case JDWP::JT_CLASS_OBJECT:
3491 return 'L';
3492 }
3493}
3494
Elliott Hughes88d63092013-01-09 09:55:54 -08003495JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3496 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003497 uint32_t arg_count, uint64_t* arg_values,
3498 JDWP::JdwpTag* arg_types, uint32_t options,
3499 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3500 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003501 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3502
Ian Rogersc0542af2014-09-03 16:16:56 -07003503 Thread* targetThread = nullptr;
3504 DebugInvokeReq* req = nullptr;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003505 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003506 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003507 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003508 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003509 JDWP::JdwpError error;
3510 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003511 if (error != JDWP::ERR_NONE) {
3512 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3513 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003514 }
3515 req = targetThread->GetInvokeReq();
3516 if (!req->ready) {
3517 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3518 return JDWP::ERR_INVALID_THREAD;
3519 }
3520
3521 /*
3522 * We currently have a bug where we don't successfully resume the
3523 * target thread if the suspend count is too deep. We're expected to
3524 * require one "resume" for each "suspend", but when asked to execute
3525 * a method we have to resume fully and then re-suspend it back to the
3526 * same level. (The easiest way to cause this is to type "suspend"
3527 * multiple times in jdb.)
3528 *
3529 * It's unclear what this means when the event specifies "resume all"
3530 * and some threads are suspended more deeply than others. This is
3531 * a rare problem, so for now we just prevent it from hanging forever
3532 * by rejecting the method invocation request. Without this, we will
3533 * be stuck waiting on a suspended thread.
3534 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003535 int suspend_count;
3536 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003537 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003538 suspend_count = targetThread->GetSuspendCount();
3539 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003540 if (suspend_count > 1) {
3541 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003542 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003543 }
3544
Ian Rogersc0542af2014-09-03 16:16:56 -07003545 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3546 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003547 return JDWP::ERR_INVALID_OBJECT;
3548 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003549
Ian Rogersc0542af2014-09-03 16:16:56 -07003550 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id, &error);
3551 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003552 return JDWP::ERR_INVALID_OBJECT;
3553 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003554 // TODO: check that 'thread' is actually a java.lang.Thread!
3555
Ian Rogersc0542af2014-09-03 16:16:56 -07003556 mirror::Class* c = DecodeClass(class_id, &error);
3557 if (c == nullptr) {
3558 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003559 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003560
Brian Carlstromea46f952013-07-30 01:26:50 -07003561 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003562 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003563 return JDWP::ERR_INVALID_METHODID;
3564 }
3565 if (m->IsStatic()) {
3566 if (m->GetDeclaringClass() != c) {
3567 return JDWP::ERR_INVALID_METHODID;
3568 }
3569 } else {
3570 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3571 return JDWP::ERR_INVALID_METHODID;
3572 }
3573 }
3574
3575 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003576 uint32_t shorty_len = 0;
3577 const char* shorty = m->GetShorty(&shorty_len);
3578 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003579 return JDWP::ERR_ILLEGAL_ARGUMENT;
3580 }
Elliott Hughes09201632013-04-15 15:50:07 -07003581
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003582 {
3583 StackHandleScope<3> hs(soa.Self());
Ian Rogersa0485602014-12-02 15:48:04 -08003584 HandleWrapper<mirror::ArtMethod> h_m(hs.NewHandleWrapper(&m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003585 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3586 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3587 const DexFile::TypeList* types = m->GetParameterTypeList();
3588 for (size_t i = 0; i < arg_count; ++i) {
3589 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003590 return JDWP::ERR_ILLEGAL_ARGUMENT;
3591 }
3592
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003593 if (shorty[i + 1] == 'L') {
3594 // Did we really get an argument of an appropriate reference type?
Ian Rogersa0485602014-12-02 15:48:04 -08003595 mirror::Class* parameter_type =
3596 h_m->GetClassFromTypeIndex(types->GetTypeItem(i).type_idx_, true);
Ian Rogersc0542af2014-09-03 16:16:56 -07003597 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
3598 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003599 return JDWP::ERR_INVALID_OBJECT;
3600 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003601 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003602 return JDWP::ERR_ILLEGAL_ARGUMENT;
3603 }
3604
3605 // Turn the on-the-wire ObjectId into a jobject.
3606 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3607 v.l = gRegistry->GetJObject(arg_values[i]);
3608 }
Elliott Hughes09201632013-04-15 15:50:07 -07003609 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003610 }
3611
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003612 req->receiver = receiver;
3613 req->thread = thread;
3614 req->klass = c;
3615 req->method = m;
3616 req->arg_count = arg_count;
3617 req->arg_values = arg_values;
3618 req->options = options;
3619 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003620 }
3621
3622 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3623 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3624 // call, and it's unwise to hold it during WaitForSuspend.
3625
3626 {
3627 /*
3628 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003629 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003630 * run out of memory. It's also a good idea to change it before locking
3631 * the invokeReq mutex, although that should never be held for long.
3632 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003633 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003634
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003635 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003636 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003637 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003638
3639 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003640 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003641 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003642 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003643 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003644 thread_list->Resume(targetThread, true);
3645 }
3646
3647 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003648 while (req->invoke_needed) {
3649 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003650 }
3651 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003652 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003653
3654 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003655 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003656 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003657 }
3658
3659 /*
3660 * Suspend the threads. We waited for the target thread to suspend
3661 * itself, so all we need to do is suspend the others.
3662 *
3663 * The suspendAllThreads() call will double-suspend the event thread,
3664 * so we want to resume the target thread once to keep the books straight.
3665 */
3666 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003667 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003668 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003669 thread_list->SuspendAllForDebugger();
3670 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003671 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003672 thread_list->Resume(targetThread, true);
3673 }
3674
3675 // Copy the result.
3676 *pResultTag = req->result_tag;
3677 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003678 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003679 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003680 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003681 }
3682 *pExceptionId = req->exception;
3683 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003684}
3685
3686void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003687 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003688
Elliott Hughes81ff3182012-03-23 20:35:56 -07003689 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003690 // to preserve that across the method invocation.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003691 StackHandleScope<4> hs(soa.Self());
3692 auto old_throw_this_object = hs.NewHandle<mirror::Object>(nullptr);
3693 auto old_throw_method = hs.NewHandle<mirror::ArtMethod>(nullptr);
3694 auto old_exception = hs.NewHandle<mirror::Throwable>(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003695 uint32_t old_throw_dex_pc;
Sebastien Hertz9f102032014-05-23 08:59:42 +02003696 bool old_exception_report_flag;
Ian Rogers62d6c772013-02-27 08:32:07 -08003697 {
3698 ThrowLocation old_throw_location;
3699 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003700 old_throw_this_object.Assign(old_throw_location.GetThis());
3701 old_throw_method.Assign(old_throw_location.GetMethod());
3702 old_exception.Assign(old_exception_obj);
Ian Rogers62d6c772013-02-27 08:32:07 -08003703 old_throw_dex_pc = old_throw_location.GetDexPc();
Sebastien Hertz9f102032014-05-23 08:59:42 +02003704 old_exception_report_flag = soa.Self()->IsExceptionReportedToInstrumentation();
Ian Rogers62d6c772013-02-27 08:32:07 -08003705 soa.Self()->ClearException();
3706 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003707
3708 // Translate the method through the vtable, unless the debugger wants to suppress it.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003709 MutableHandle<mirror::ArtMethod> m(hs.NewHandle(pReq->method));
Ian Rogersc0542af2014-09-03 16:16:56 -07003710 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003711 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.Get());
3712 if (actual_method != m.Get()) {
3713 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get()) << " to " << PrettyMethod(actual_method);
3714 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003715 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003716 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003717 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003718 << " receiver=" << pReq->receiver
3719 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003720 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003721
3722 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3723
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003724 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.Get()),
Ian Rogers53b8b092014-03-13 23:45:53 -07003725 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003726
Ian Rogersc0542af2014-09-03 16:16:56 -07003727 mirror::Throwable* exception = soa.Self()->GetException(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003728 soa.Self()->ClearException();
3729 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003730 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003731 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003732 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3733 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003734 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003735 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3736 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003737 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003738 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003739 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003740 pReq->result_tag = new_tag;
3741 }
3742
3743 /*
3744 * Register the object. We don't actually need an ObjectId yet,
3745 * but we do need to be sure that the GC won't move or discard the
3746 * object when we switch out of RUNNING. The ObjectId conversion
3747 * will add the object to the "do not touch" list.
3748 *
3749 * We can't use the "tracked allocation" mechanism here because
3750 * the object is going to be handed off to a different thread.
3751 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003752 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003753 }
3754
Ian Rogersc0542af2014-09-03 16:16:56 -07003755 if (old_exception.Get() != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003756 ThrowLocation gc_safe_throw_location(old_throw_this_object.Get(), old_throw_method.Get(),
Ian Rogers62d6c772013-02-27 08:32:07 -08003757 old_throw_dex_pc);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003758 soa.Self()->SetException(gc_safe_throw_location, old_exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +02003759 soa.Self()->SetExceptionReportedToInstrumentation(old_exception_report_flag);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003760 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003761}
3762
Elliott Hughesd07986f2011-12-06 18:27:45 -08003763/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003764 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003765 * need to process each, accumulate the replies, and ship the whole thing
3766 * back.
3767 *
3768 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3769 * and includes the chunk type/length, followed by the data.
3770 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003771 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003772 * chunk. If this becomes inconvenient we will need to adapt.
3773 */
Ian Rogersc0542af2014-09-03 16:16:56 -07003774bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003775 Thread* self = Thread::Current();
3776 JNIEnv* env = self->GetJniEnv();
3777
Ian Rogersc0542af2014-09-03 16:16:56 -07003778 uint32_t type = request->ReadUnsigned32("type");
3779 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003780
3781 // Create a byte[] corresponding to 'request'.
Ian Rogersc0542af2014-09-03 16:16:56 -07003782 size_t request_length = request->size();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003783 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Ian Rogersc0542af2014-09-03 16:16:56 -07003784 if (dataArray.get() == nullptr) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003785 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003786 env->ExceptionClear();
3787 return false;
3788 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003789 env->SetByteArrayRegion(dataArray.get(), 0, request_length,
3790 reinterpret_cast<const jbyte*>(request->data()));
3791 request->Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003792
3793 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003794 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003795 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003796 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003797 return false;
3798 }
3799
3800 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003801 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3802 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003803 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003804 if (env->ExceptionCheck()) {
3805 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3806 env->ExceptionDescribe();
3807 env->ExceptionClear();
3808 return false;
3809 }
3810
Ian Rogersc0542af2014-09-03 16:16:56 -07003811 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003812 return false;
3813 }
3814
3815 /*
3816 * Pull the pieces out of the chunk. We copy the results into a
3817 * newly-allocated buffer that the caller can free. We don't want to
3818 * continue using the Chunk object because nothing has a reference to it.
3819 *
3820 * We could avoid this by returning type/data/offset/length and having
3821 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003822 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003823 * if we have responses for multiple chunks.
3824 *
3825 * So we're pretty much stuck with copying data around multiple times.
3826 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003827 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 -08003828 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003829 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003830 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003831
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003832 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 -07003833 if (length == 0 || replyData.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003834 return false;
3835 }
3836
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003837 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003838 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
Ian Rogersc0542af2014-09-03 16:16:56 -07003839 if (reply == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003840 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3841 return false;
3842 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003843 JDWP::Set4BE(reply + 0, type);
3844 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003845 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003846
3847 *pReplyBuf = reply;
3848 *pReplyLen = length + kChunkHdrLen;
3849
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003850 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003851 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003852}
3853
Elliott Hughesa2155262011-11-16 16:26:58 -08003854void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003855 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003856
3857 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003858 if (self->GetState() != kRunnable) {
3859 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3860 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003861 }
3862
3863 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003864 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003865 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3866 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3867 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003868 if (env->ExceptionCheck()) {
3869 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3870 env->ExceptionDescribe();
3871 env->ExceptionClear();
3872 }
3873}
3874
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003875void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003876 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003877}
3878
3879void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003880 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003881 gDdmThreadNotification = false;
3882}
3883
3884/*
Elliott Hughes82188472011-11-07 18:11:48 -08003885 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003886 *
3887 * Because we broadcast the full set of threads when the notifications are
3888 * first enabled, it's possible for "thread" to be actively executing.
3889 */
Elliott Hughes82188472011-11-07 18:11:48 -08003890void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003891 if (!gDdmThreadNotification) {
3892 return;
3893 }
3894
Elliott Hughes82188472011-11-07 18:11:48 -08003895 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003896 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003897 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003898 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003899 } else {
3900 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003901 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003902 StackHandleScope<1> hs(soa.Self());
3903 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
Ian Rogersc0542af2014-09-03 16:16:56 -07003904 size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0;
3905 const jchar* chars = (name.Get() != nullptr) ? name->GetCharArray()->GetData() : nullptr;
Elliott Hughes82188472011-11-07 18:11:48 -08003906
Elliott Hughes21f32d72011-11-09 17:44:13 -08003907 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003908 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003909 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003910 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3911 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003912 }
3913}
3914
Elliott Hughes47fce012011-10-25 18:37:19 -07003915void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003916 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003917 gDdmThreadNotification = enable;
3918 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003919 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3920 // see a suspension in progress and block until that ends. They then post their own start
3921 // notification.
3922 SuspendVM();
3923 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003924 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003925 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003926 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003927 threads = Runtime::Current()->GetThreadList()->GetList();
3928 }
3929 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003930 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003931 for (Thread* thread : threads) {
3932 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003933 }
3934 }
3935 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003936 }
3937}
3938
Elliott Hughesa2155262011-11-16 16:26:58 -08003939void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003940 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02003941 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003942 }
Elliott Hughes82188472011-11-07 18:11:48 -08003943 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003944}
3945
3946void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003947 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003948}
3949
3950void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003951 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003952}
3953
Elliott Hughes82188472011-11-07 18:11:48 -08003954void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Ian Rogersc0542af2014-09-03 16:16:56 -07003955 CHECK(buf != nullptr);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003956 iovec vec[1];
3957 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3958 vec[0].iov_len = byte_count;
3959 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003960}
3961
Elliott Hughes21f32d72011-11-09 17:44:13 -08003962void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3963 DdmSendChunk(type, bytes.size(), &bytes[0]);
3964}
3965
Brian Carlstromf5293522013-07-19 00:24:00 -07003966void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Ian Rogersc0542af2014-09-03 16:16:56 -07003967 if (gJdwpState == nullptr) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003968 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003969 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003970 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003971 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003972}
3973
Mathieu Chartierad466ad2015-01-08 16:28:08 -08003974JDWP::JdwpState* Dbg::GetJdwpState() {
3975 return gJdwpState;
3976}
3977
Elliott Hughes767a1472011-10-26 18:49:02 -07003978int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3979 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003980 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003981 return true;
3982 }
3983
3984 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
3985 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
3986 return false;
3987 }
3988
3989 gDdmHpifWhen = when;
3990 return true;
3991}
3992
3993bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
3994 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
3995 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
3996 return false;
3997 }
3998
3999 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4000 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4001 return false;
4002 }
4003
4004 if (native) {
4005 gDdmNhsgWhen = when;
4006 gDdmNhsgWhat = what;
4007 } else {
4008 gDdmHpsgWhen = when;
4009 gDdmHpsgWhat = what;
4010 }
4011 return true;
4012}
4013
Elliott Hughes7162ad92011-10-27 14:08:42 -07004014void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4015 // If there's a one-shot 'when', reset it.
4016 if (reason == gDdmHpifWhen) {
4017 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4018 gDdmHpifWhen = HPIF_WHEN_NEVER;
4019 }
4020 }
4021
4022 /*
4023 * Chunk HPIF (client --> server)
4024 *
4025 * Heap Info. General information about the heap,
4026 * suitable for a summary display.
4027 *
4028 * [u4]: number of heaps
4029 *
4030 * For each heap:
4031 * [u4]: heap ID
4032 * [u8]: timestamp in ms since Unix epoch
4033 * [u1]: capture reason (same as 'when' value from server)
4034 * [u4]: max heap size in bytes (-Xmx)
4035 * [u4]: current heap size in bytes
4036 * [u4]: current number of bytes allocated
4037 * [u4]: current number of objects allocated
4038 */
4039 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004040 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004041 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004042 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004043 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004044 JDWP::Append8BE(bytes, MilliTime());
4045 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004046 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4047 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004048 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4049 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004050 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
4051 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07004052}
4053
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004054enum HpsgSolidity {
4055 SOLIDITY_FREE = 0,
4056 SOLIDITY_HARD = 1,
4057 SOLIDITY_SOFT = 2,
4058 SOLIDITY_WEAK = 3,
4059 SOLIDITY_PHANTOM = 4,
4060 SOLIDITY_FINALIZABLE = 5,
4061 SOLIDITY_SWEEP = 6,
4062};
4063
4064enum HpsgKind {
4065 KIND_OBJECT = 0,
4066 KIND_CLASS_OBJECT = 1,
4067 KIND_ARRAY_1 = 2,
4068 KIND_ARRAY_2 = 3,
4069 KIND_ARRAY_4 = 4,
4070 KIND_ARRAY_8 = 5,
4071 KIND_UNKNOWN = 6,
4072 KIND_NATIVE = 7,
4073};
4074
4075#define HPSG_PARTIAL (1<<7)
4076#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4077
Ian Rogers30fab402012-01-23 15:43:46 -08004078class HeapChunkContext {
4079 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004080 // Maximum chunk size. Obtain this from the formula:
4081 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4082 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004083 : buf_(16384 - 16),
4084 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004085 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004086 Reset();
4087 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004088 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004089 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004090 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004091 }
4092 }
4093
4094 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004095 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004096 Flush();
4097 }
4098 }
4099
Mathieu Chartier36dab362014-07-30 14:59:56 -07004100 void SetChunkOverhead(size_t chunk_overhead) {
4101 chunk_overhead_ = chunk_overhead;
4102 }
4103
4104 void ResetStartOfNextChunk() {
4105 startOfNextMemoryChunk_ = nullptr;
4106 }
4107
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004108 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004109 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004110 return;
4111 }
4112
4113 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004114 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4115 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004116
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004117 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4118 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004119 // [u4]: length of piece, in allocation units
4120 // 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 -08004121 pieceLenField_ = p_;
4122 JDWP::Write4BE(&p_, 0x55555555);
4123 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004124 }
4125
Ian Rogersb726dcb2012-09-05 08:57:23 -07004126 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004127 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004128 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4129 CHECK(needHeader_);
4130 return;
4131 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004132 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004133 CHECK_LE(&buf_[0], pieceLenField_);
4134 CHECK_LE(pieceLenField_, p_);
4135 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004136
Ian Rogers30fab402012-01-23 15:43:46 -08004137 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004138 Reset();
4139 }
4140
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004141 static void HeapChunkJavaCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004142 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4143 Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004144 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes);
4145 }
4146
4147 static void HeapChunkNativeCallback(void* start, void* end, size_t used_bytes, void* arg)
4148 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4149 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004150 }
4151
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004152 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004153 enum { ALLOCATION_UNIT_SIZE = 8 };
4154
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004155 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004156 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004157 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004158 totalAllocationUnits_ = 0;
4159 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004160 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004161 }
4162
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004163 bool IsNative() const {
4164 return type_ == CHUNK_TYPE("NHSG");
4165 }
4166
4167 // Returns true if the object is not an empty chunk.
4168 bool ProcessRecord(void* start, size_t used_bytes) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004169 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4170 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004171 if (used_bytes == 0) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004172 if (start == nullptr) {
4173 // Reset for start of new heap.
4174 startOfNextMemoryChunk_ = nullptr;
4175 Flush();
4176 }
4177 // Only process in use memory so that free region information
4178 // also includes dlmalloc book keeping.
4179 return false;
Elliott Hughesa2155262011-11-16 16:26:58 -08004180 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004181 if (startOfNextMemoryChunk_ != nullptr) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004182 // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because
4183 // of the use of mmaps, so don't report. If not free memory then start a new segment.
4184 bool flush = true;
4185 if (start > startOfNextMemoryChunk_) {
4186 const size_t kMaxFreeLen = 2 * kPageSize;
4187 void* free_start = startOfNextMemoryChunk_;
4188 void* free_end = start;
4189 const size_t free_len =
4190 reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start);
4191 if (!IsNative() || free_len < kMaxFreeLen) {
4192 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative());
4193 flush = false;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004194 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004195 }
4196 if (flush) {
4197 startOfNextMemoryChunk_ = nullptr;
4198 Flush();
4199 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004200 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004201 return true;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004202 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004203
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004204 void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes)
4205 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4206 if (ProcessRecord(start, used_bytes)) {
4207 uint8_t state = ExamineNativeObject(start);
4208 AppendChunk(state, start, used_bytes + chunk_overhead_, true /*is_native*/);
4209 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4210 }
4211 }
4212
4213 void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes)
4214 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
4215 if (ProcessRecord(start, used_bytes)) {
4216 // Determine the type of this chunk.
4217 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4218 // If it's the same, we should combine them.
4219 uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start));
4220 AppendChunk(state, start, used_bytes + chunk_overhead_, false /*is_native*/);
4221 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4222 }
4223 }
4224
4225 void AppendChunk(uint8_t state, void* ptr, size_t length, bool is_native)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004226 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004227 // Make sure there's enough room left in the buffer.
4228 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4229 // 17 bytes for any header.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004230 const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17;
4231 size_t byte_left = &buf_.back() - p_;
4232 if (byte_left < needed) {
4233 if (is_native) {
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004234 // Cannot trigger memory allocation while walking native heap.
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004235 return;
4236 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004237 Flush();
4238 }
4239
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004240 byte_left = &buf_.back() - p_;
4241 if (byte_left < needed) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004242 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4243 << needed << " bytes)";
4244 return;
4245 }
4246 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004247 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004248 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4249 totalAllocationUnits_ += length;
4250 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004251 *p_++ = state | HPSG_PARTIAL;
4252 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004253 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004254 }
Ian Rogers30fab402012-01-23 15:43:46 -08004255 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004256 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004257 }
4258
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004259 uint8_t ExamineNativeObject(const void* p) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4260 return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4261 }
4262
4263 uint8_t ExamineJavaObject(mirror::Object* o)
Ian Rogersef7d42f2014-01-06 12:55:46 -08004264 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004265 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004266 return HPSG_STATE(SOLIDITY_FREE, 0);
4267 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004268 // It's an allocated chunk. Figure out what it is.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004269 gc::Heap* heap = Runtime::Current()->GetHeap();
4270 if (!heap->IsLiveObjectLocked(o)) {
4271 LOG(ERROR) << "Invalid object in managed heap: " << o;
Elliott Hughesa2155262011-11-16 16:26:58 -08004272 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4273 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004274 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004275 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004276 // The object was probably just created but hasn't been initialized yet.
4277 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4278 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004279 if (!heap->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004280 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004281 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4282 }
Mathieu Chartierf26e1b32015-01-29 10:47:10 -08004283 if (c->GetClass() == nullptr) {
4284 LOG(ERROR) << "Null class of class " << c << " for object " << o;
4285 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4286 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004287 if (c->IsClassClass()) {
4288 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4289 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004290 if (c->IsArrayClass()) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004291 switch (c->GetComponentSize()) {
4292 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4293 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4294 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4295 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4296 }
4297 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004298 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4299 }
4300
Ian Rogers30fab402012-01-23 15:43:46 -08004301 std::vector<uint8_t> buf_;
4302 uint8_t* p_;
4303 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004304 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004305 size_t totalAllocationUnits_;
4306 uint32_t type_;
Ian Rogers30fab402012-01-23 15:43:46 -08004307 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004308 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004309
Elliott Hughesa2155262011-11-16 16:26:58 -08004310 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4311};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004312
Mathieu Chartier36dab362014-07-30 14:59:56 -07004313static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
4314 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
4315 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004316 HeapChunkContext::HeapChunkJavaCallback(
Mathieu Chartier36dab362014-07-30 14:59:56 -07004317 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4318}
4319
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004320void Dbg::DdmSendHeapSegments(bool native) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004321 Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen;
4322 Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004323 if (when == HPSG_WHEN_NEVER) {
4324 return;
4325 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004326 // Figure out what kind of chunks we'll be sending.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004327 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS)
4328 << static_cast<int>(what);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004329
4330 // First, send a heap start chunk.
4331 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004332 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004333 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004334 Thread* self = Thread::Current();
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004335 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004336
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004337 // Send a series of heap segment chunks.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004338 HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native);
Elliott Hughesa2155262011-11-16 16:26:58 -08004339 if (native) {
Ian Rogers872dd822014-10-30 11:19:14 -07004340#if defined(HAVE_ANDROID_OS) && defined(USE_DLMALLOC)
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004341 dlmalloc_inspect_all(HeapChunkContext::HeapChunkNativeCallback, &context);
4342 HeapChunkContext::HeapChunkNativeCallback(nullptr, nullptr, 0, &context); // Indicate end of a space.
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004343#else
4344 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4345#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004346 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004347 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004348 for (const auto& space : heap->GetContinuousSpaces()) {
4349 if (space->IsDlMallocSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004350 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004351 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4352 // allocation then the first sizeof(size_t) may belong to it.
4353 context.SetChunkOverhead(sizeof(size_t));
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004354 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004355 } else if (space->IsRosAllocSpace()) {
4356 context.SetChunkOverhead(0);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004357 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4358 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
4359 self->TransitionFromRunnableToSuspended(kSuspended);
4360 ThreadList* tl = Runtime::Current()->GetThreadList();
4361 tl->SuspendAll();
4362 {
4363 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004364 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004365 }
4366 tl->ResumeAll();
4367 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004368 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004369 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004370 context.SetChunkOverhead(0);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004371 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004372 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004373 } else if (space->IsRegionSpace()) {
4374 heap->IncrementDisableMovingGC(self);
4375 self->TransitionFromRunnableToSuspended(kSuspended);
4376 ThreadList* tl = Runtime::Current()->GetThreadList();
4377 tl->SuspendAll();
4378 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4379 context.SetChunkOverhead(0);
4380 space->AsRegionSpace()->Walk(BumpPointerSpaceCallback, &context);
4381 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
4382 tl->ResumeAll();
4383 self->TransitionFromSuspendedToRunnable();
4384 heap->DecrementDisableMovingGC(self);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004385 } else {
4386 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004387 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004388 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004389 }
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004390 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004391 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004392 context.SetChunkOverhead(0);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004393 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004394 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004395
4396 // Finally, send a heap end chunk.
4397 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004398}
4399
Elliott Hughesb1a58792013-07-11 18:10:58 -07004400static size_t GetAllocTrackerMax() {
4401#ifdef HAVE_ANDROID_OS
4402 // Check whether there's a system property overriding the number of records.
4403 const char* propertyName = "dalvik.vm.allocTrackerMax";
4404 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4405 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4406 char* end;
4407 size_t value = strtoul(allocRecordMaxString, &end, 10);
4408 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004409 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4410 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004411 return kDefaultNumAllocRecords;
4412 }
4413 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004414 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4415 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004416 return kDefaultNumAllocRecords;
4417 }
4418 return value;
4419 }
4420#endif
4421 return kDefaultNumAllocRecords;
4422}
4423
Brian Carlstrom306db812014-09-05 13:01:41 -07004424void Dbg::SetAllocTrackingEnabled(bool enable) {
4425 Thread* self = Thread::Current();
4426 if (enable) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004427 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004428 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4429 if (recent_allocation_records_ != nullptr) {
4430 return; // Already enabled, bail.
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004431 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004432 alloc_record_max_ = GetAllocTrackerMax();
4433 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4434 << kMaxAllocRecordStackDepth << " frames, taking "
4435 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4436 DCHECK_EQ(alloc_record_head_, 0U);
4437 DCHECK_EQ(alloc_record_count_, 0U);
4438 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4439 CHECK(recent_allocation_records_ != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004440 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004441 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004442 } else {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004443 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004444 ScopedObjectAccess soa(self); // For type_cache_.Clear();
4445 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4446 if (recent_allocation_records_ == nullptr) {
4447 return; // Already disabled, bail.
4448 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07004449 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004450 delete[] recent_allocation_records_;
Ian Rogersc0542af2014-09-03 16:16:56 -07004451 recent_allocation_records_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -07004452 alloc_record_head_ = 0;
4453 alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004454 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004455 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004456 // If an allocation comes in before we uninstrument, we will safely drop it on the floor.
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004457 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004458 }
4459}
4460
Ian Rogers0399dde2012-06-06 17:09:28 -07004461struct AllocRecordStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004462 AllocRecordStackVisitor(Thread* thread, AllocRecord* record_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004463 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004464 : StackVisitor(thread, nullptr), record(record_in), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004465
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004466 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4467 // annotalysis.
4468 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004469 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004470 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004471 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004472 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004473 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004474 record->StackElement(depth)->SetMethod(m);
4475 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004476 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004477 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004478 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004479 }
4480
4481 ~AllocRecordStackVisitor() {
4482 // Clear out any unused stack trace elements.
4483 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004484 record->StackElement(depth)->SetMethod(nullptr);
4485 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004486 }
4487 }
4488
4489 AllocRecord* record;
4490 size_t depth;
4491};
4492
Ian Rogers844506b2014-09-12 19:59:33 -07004493void Dbg::RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004494 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004495 if (recent_allocation_records_ == nullptr) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004496 // In the process of shutting down recording, bail.
Elliott Hughes545a0642011-11-08 19:10:03 -08004497 return;
4498 }
4499
4500 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004501 if (++alloc_record_head_ == alloc_record_max_) {
4502 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004503 }
4504
4505 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004506 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004507 record->SetType(type);
4508 record->SetByteCount(byte_count);
4509 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004510
4511 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004512 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004513 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004514
Ian Rogers719d1a32014-03-06 12:13:39 -08004515 if (alloc_record_count_ < alloc_record_max_) {
4516 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004517 }
4518}
4519
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004520// Returns the index of the head element.
4521//
Brian Carlstrom306db812014-09-05 13:01:41 -07004522// We point at the most-recently-written record, so if alloc_record_count_ is 1
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004523// we want to use the current element. Take "head+1" and subtract count
4524// from it.
4525//
4526// We need to handle underflow in our circular buffer, so we add
Brian Carlstrom306db812014-09-05 13:01:41 -07004527// alloc_record_max_ and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004528size_t Dbg::HeadIndex() {
4529 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4530 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004531}
4532
4533void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004534 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004535 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004536 if (recent_allocation_records_ == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004537 LOG(INFO) << "Not recording tracked allocations";
4538 return;
4539 }
4540
4541 // "i" is the head of the list. We want to start at the end of the
4542 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004543 size_t i = HeadIndex();
Brian Carlstrom306db812014-09-05 13:01:41 -07004544 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4545 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004546
Ian Rogers719d1a32014-03-06 12:13:39 -08004547 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004548 while (count--) {
4549 AllocRecord* record = &recent_allocation_records_[i];
4550
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004551 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4552 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004553
4554 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004555 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4556 mirror::ArtMethod* m = stack_element->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004557 if (m == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004558 break;
4559 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004560 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004561 }
4562
4563 // pause periodically to help logcat catch up
4564 if ((count % 5) == 0) {
4565 usleep(40000);
4566 }
4567
Ian Rogers719d1a32014-03-06 12:13:39 -08004568 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004569 }
4570}
4571
4572class StringTable {
4573 public:
4574 StringTable() {
4575 }
4576
Mathieu Chartier4345c462014-06-27 10:20:14 -07004577 void Add(const std::string& str) {
4578 table_.insert(str);
4579 }
4580
4581 void Add(const char* str) {
4582 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004583 }
4584
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004585 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004586 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004587 if (it == table_.end()) {
4588 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4589 }
4590 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004591 }
4592
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004593 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004594 return table_.size();
4595 }
4596
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004597 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004598 for (const std::string& str : table_) {
4599 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004600 size_t s_len = CountModifiedUtf8Chars(s);
Ian Rogers700a4022014-05-19 16:49:03 -07004601 std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004602 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4603 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004604 }
4605 }
4606
4607 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004608 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004609 DISALLOW_COPY_AND_ASSIGN(StringTable);
4610};
4611
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004612static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004613 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004614 DCHECK(method != nullptr);
4615 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004616 return (source_file != nullptr) ? source_file : "";
4617}
4618
Elliott Hughes545a0642011-11-08 19:10:03 -08004619/*
4620 * The data we send to DDMS contains everything we have recorded.
4621 *
4622 * Message header (all values big-endian):
4623 * (1b) message header len (to allow future expansion); includes itself
4624 * (1b) entry header len
4625 * (1b) stack frame len
4626 * (2b) number of entries
4627 * (4b) offset to string table from start of message
4628 * (2b) number of class name strings
4629 * (2b) number of method name strings
4630 * (2b) number of source file name strings
4631 * For each entry:
4632 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004633 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004634 * (2b) allocated object's class name index
4635 * (1b) stack depth
4636 * For each stack frame:
4637 * (2b) method's class name
4638 * (2b) method name
4639 * (2b) method source file
4640 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4641 * (xb) class name strings
4642 * (xb) method name strings
4643 * (xb) source file strings
4644 *
4645 * As with other DDM traffic, strings are sent as a 4-byte length
4646 * followed by UTF-16 data.
4647 *
4648 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07004649 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004650 * each table, but in practice there should be far fewer.
4651 *
4652 * The chief reason for using a string table here is to keep the size of
4653 * the DDMS message to a minimum. This is partly to make the protocol
4654 * efficient, but also because we have to form the whole thing up all at
4655 * once in a memory buffer.
4656 *
4657 * We use separate string tables for class names, method names, and source
4658 * files to keep the indexes small. There will generally be no overlap
4659 * between the contents of these tables.
4660 */
4661jbyteArray Dbg::GetRecentAllocations() {
Ian Rogerscf7f1912014-10-22 22:06:39 -07004662 if ((false)) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004663 DumpRecentAllocations();
4664 }
4665
Ian Rogers50b35e22012-10-04 10:09:15 -07004666 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004667 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004668 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004669 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004670 //
4671 // Part 1: generate string tables.
4672 //
4673 StringTable class_names;
4674 StringTable method_names;
4675 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004676
Brian Carlstrom306db812014-09-05 13:01:41 -07004677 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4678 uint16_t count = capped_count;
4679 size_t idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004680 while (count--) {
4681 AllocRecord* record = &recent_allocation_records_[idx];
Ian Rogers1ff3c982014-08-12 02:30:58 -07004682 std::string temp;
4683 class_names.Add(record->Type()->GetDescriptor(&temp));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004684 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004685 mirror::ArtMethod* m = record->StackElement(i)->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004686 if (m != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004687 class_names.Add(m->GetDeclaringClassDescriptor());
4688 method_names.Add(m->GetName());
4689 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004690 }
4691 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004692
Ian Rogers719d1a32014-03-06 12:13:39 -08004693 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004694 }
4695
Brian Carlstrom306db812014-09-05 13:01:41 -07004696 LOG(INFO) << "allocation records: " << capped_count;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004697
4698 //
4699 // Part 2: Generate the output and store it in the buffer.
4700 //
4701
4702 // (1b) message header len (to allow future expansion); includes itself
4703 // (1b) entry header len
4704 // (1b) stack frame len
4705 const int kMessageHeaderLen = 15;
4706 const int kEntryHeaderLen = 9;
4707 const int kStackFrameLen = 8;
4708 JDWP::Append1BE(bytes, kMessageHeaderLen);
4709 JDWP::Append1BE(bytes, kEntryHeaderLen);
4710 JDWP::Append1BE(bytes, kStackFrameLen);
4711
4712 // (2b) number of entries
4713 // (4b) offset to string table from start of message
4714 // (2b) number of class name strings
4715 // (2b) number of method name strings
4716 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07004717 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004718 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004719 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004720 JDWP::Append2BE(bytes, class_names.Size());
4721 JDWP::Append2BE(bytes, method_names.Size());
4722 JDWP::Append2BE(bytes, filenames.Size());
4723
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004724 idx = HeadIndex();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004725 std::string temp;
Brian Carlstrom306db812014-09-05 13:01:41 -07004726 for (count = capped_count; count != 0; --count) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004727 // For each entry:
4728 // (4b) total allocation size
4729 // (2b) thread id
4730 // (2b) allocated object's class name index
4731 // (1b) stack depth
4732 AllocRecord* record = &recent_allocation_records_[idx];
4733 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004734 size_t allocated_object_class_name_index =
Ian Rogers1ff3c982014-08-12 02:30:58 -07004735 class_names.IndexOf(record->Type()->GetDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004736 JDWP::Append4BE(bytes, record->ByteCount());
4737 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004738 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4739 JDWP::Append1BE(bytes, stack_depth);
4740
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004741 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4742 // For each stack frame:
4743 // (2b) method's class name
4744 // (2b) method name
4745 // (2b) method source file
4746 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004747 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004748 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4749 size_t method_name_index = method_names.IndexOf(m->GetName());
4750 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004751 JDWP::Append2BE(bytes, class_name_index);
4752 JDWP::Append2BE(bytes, method_name_index);
4753 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004754 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004755 }
Ian Rogers719d1a32014-03-06 12:13:39 -08004756 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004757 }
4758
4759 // (xb) class name strings
4760 // (xb) method name strings
4761 // (xb) source file strings
4762 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4763 class_names.WriteTo(bytes);
4764 method_names.WriteTo(bytes);
4765 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004766 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004767 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004768 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07004769 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004770 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4771 }
4772 return result;
4773}
4774
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07004775mirror::ArtMethod* DeoptimizationRequest::Method() const {
4776 ScopedObjectAccessUnchecked soa(Thread::Current());
4777 return soa.DecodeMethod(method_);
4778}
4779
4780void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
4781 ScopedObjectAccessUnchecked soa(Thread::Current());
4782 method_ = soa.EncodeMethod(m);
4783}
4784
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004785} // namespace art