blob: c0dd197276fadd066b66bcfa3a06d1d28f54c5a6 [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
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800290 // We only care about how many backward branches were executed in the Jit.
291 void BackwardBranch(Thread* /*thread*/, mirror::ArtMethod* method, int32_t dex_pc_offset)
292 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
293 LOG(ERROR) << "Unexpected backward branch event in debugger " << PrettyMethod(method)
294 << " " << dex_pc_offset;
295 }
296
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200297 private:
298 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800299} gDebugInstrumentationListener;
300
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700301// JDWP is allowed unless the Zygote forbids it.
302static bool gJdwpAllowed = true;
303
Elliott Hughesc0f09332012-03-26 13:27:06 -0700304// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700305static bool gJdwpConfigured = false;
306
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100307// JDWP options for debugging. Only valid if IsJdwpConfigured() is true.
308static JDWP::JdwpOptions gJdwpOptions;
309
Elliott Hughes3bb81562011-10-21 18:52:59 -0700310// Runtime JDWP state.
Ian Rogersc0542af2014-09-03 16:16:56 -0700311static JDWP::JdwpState* gJdwpState = nullptr;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700312static bool gDebuggerConnected; // debugger or DDMS is connected.
313static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800314static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700315
Elliott Hughes47fce012011-10-25 18:37:19 -0700316static bool gDdmThreadNotification = false;
317
Elliott Hughes767a1472011-10-26 18:49:02 -0700318// DDMS GC-related settings.
319static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
320static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
321static Dbg::HpsgWhat gDdmHpsgWhat;
322static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
323static Dbg::HpsgWhat gDdmNhsgWhat;
324
Sebastien Hertz6995c602014-09-09 12:10:13 +0200325ObjectRegistry* Dbg::gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700326
Elliott Hughes545a0642011-11-08 19:10:03 -0800327// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800328AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
329size_t Dbg::alloc_record_max_ = 0;
330size_t Dbg::alloc_record_head_ = 0;
331size_t Dbg::alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -0700332Dbg::TypeCache Dbg::type_cache_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800333
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100334// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100335std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
336size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100337size_t Dbg::delayed_full_undeoptimization_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100338
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200339// Instrumentation event reference counters.
340size_t Dbg::dex_pc_change_event_ref_count_ = 0;
341size_t Dbg::method_enter_event_ref_count_ = 0;
342size_t Dbg::method_exit_event_ref_count_ = 0;
343size_t Dbg::field_read_event_ref_count_ = 0;
344size_t Dbg::field_write_event_ref_count_ = 0;
345size_t Dbg::exception_catch_event_ref_count_ = 0;
346uint32_t Dbg::instrumentation_events_ = 0;
347
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100348// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800349static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800350
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800351void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700352 if (receiver != nullptr) {
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800353 callback(&receiver, arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700354 }
355 if (thread != nullptr) {
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800356 callback(&thread, arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700357 }
358 if (klass != nullptr) {
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800359 callback(reinterpret_cast<mirror::Object**>(&klass), arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700360 }
361 if (method != nullptr) {
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800362 callback(reinterpret_cast<mirror::Object**>(&method), arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700363 }
364}
365
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200366void DebugInvokeReq::Clear() {
367 invoke_needed = false;
368 receiver = nullptr;
369 thread = nullptr;
370 klass = nullptr;
371 method = nullptr;
372}
373
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800374void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100375 if (method_ != nullptr) {
376 callback(reinterpret_cast<mirror::Object**>(&method_), arg, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700377 }
378}
379
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100380void SingleStepControl::AddDexPc(uint32_t dex_pc) {
381 dex_pcs_.insert(dex_pc);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200382}
383
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100384bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
385 return dex_pcs_.find(dex_pc) == dex_pcs_.end();
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200386}
387
Brian Carlstromea46f952013-07-30 01:26:50 -0700388static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800389 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700390 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzed2be172014-08-19 15:33:43 +0200391 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100392 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700393 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
Elliott Hughes86964332012-02-15 19:37:42 -0800394 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
395 return true;
396 }
397 }
398 return false;
399}
400
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100401static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
402 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800403 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
404 // A thread may be suspended for GC; in this code, we really want to know whether
405 // there's a debugger suspension active.
406 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
407}
408
Ian Rogersc0542af2014-09-03 16:16:56 -0700409static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700410 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200411 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700412 if (o == nullptr) {
413 *error = JDWP::ERR_INVALID_OBJECT;
414 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800415 }
416 if (!o->IsArrayInstance()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700417 *error = JDWP::ERR_INVALID_ARRAY;
418 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800419 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700420 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800421 return o->AsArray();
422}
423
Ian Rogersc0542af2014-09-03 16:16:56 -0700424static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700425 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200426 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700427 if (o == nullptr) {
428 *error = JDWP::ERR_INVALID_OBJECT;
429 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800430 }
431 if (!o->IsClass()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700432 *error = JDWP::ERR_INVALID_CLASS;
433 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800434 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700435 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800436 return o->AsClass();
437}
438
Ian Rogersc0542af2014-09-03 16:16:56 -0700439static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
440 JDWP::JdwpError* error)
jeffhaoa77f0f62012-12-05 17:19:31 -0800441 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700442 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
443 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200444 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700445 if (thread_peer == nullptr) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800446 // This isn't even an object.
Ian Rogersc0542af2014-09-03 16:16:56 -0700447 *error = JDWP::ERR_INVALID_OBJECT;
448 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800449 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800450
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800451 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800452 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
453 // This isn't a thread.
Ian Rogersc0542af2014-09-03 16:16:56 -0700454 *error = JDWP::ERR_INVALID_THREAD;
455 return nullptr;
Elliott Hughes221229c2013-01-08 18:17:50 -0800456 }
457
Ian Rogersc0542af2014-09-03 16:16:56 -0700458 Thread* thread = Thread::FromManagedThread(soa, thread_peer);
459 // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a
460 // zombie.
461 *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE;
462 return thread;
Elliott Hughes436e3722012-02-17 20:01:47 -0800463}
464
Elliott Hughes24437992011-11-30 14:49:33 -0800465static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
466 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
467 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
468 return static_cast<JDWP::JdwpTag>(descriptor[0]);
469}
470
Ian Rogers1ff3c982014-08-12 02:30:58 -0700471static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
472 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
473 std::string temp;
474 const char* descriptor = klass->GetDescriptor(&temp);
475 return BasicTagFromDescriptor(descriptor);
476}
477
Ian Rogers98379392014-02-24 16:53:16 -0800478static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700479 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700480 CHECK(c != nullptr);
Elliott Hughes24437992011-11-30 14:49:33 -0800481 if (c->IsArrayClass()) {
482 return JDWP::JT_ARRAY;
483 }
Elliott Hughes24437992011-11-30 14:49:33 -0800484 if (c->IsStringClass()) {
485 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800486 }
Ian Rogers98379392014-02-24 16:53:16 -0800487 if (c->IsClassClass()) {
488 return JDWP::JT_CLASS_OBJECT;
489 }
490 {
491 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
492 if (thread_class->IsAssignableFrom(c)) {
493 return JDWP::JT_THREAD;
494 }
495 }
496 {
497 mirror::Class* thread_group_class =
498 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
499 if (thread_group_class->IsAssignableFrom(c)) {
500 return JDWP::JT_THREAD_GROUP;
501 }
502 }
503 {
504 mirror::Class* class_loader_class =
505 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
506 if (class_loader_class->IsAssignableFrom(c)) {
507 return JDWP::JT_CLASS_LOADER;
508 }
509 }
510 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800511}
512
513/*
514 * Objects declared to hold Object might actually hold a more specific
515 * type. The debugger may take a special interest in these (e.g. it
516 * wants to display the contents of Strings), so we want to return an
517 * appropriate tag.
518 *
519 * Null objects are tagged JT_OBJECT.
520 */
Sebastien Hertz6995c602014-09-09 12:10:13 +0200521JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700522 return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800523}
524
525static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
526 switch (tag) {
527 case JDWP::JT_BOOLEAN:
528 case JDWP::JT_BYTE:
529 case JDWP::JT_CHAR:
530 case JDWP::JT_FLOAT:
531 case JDWP::JT_DOUBLE:
532 case JDWP::JT_INT:
533 case JDWP::JT_LONG:
534 case JDWP::JT_SHORT:
535 case JDWP::JT_VOID:
536 return true;
537 default:
538 return false;
539 }
540}
541
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100542void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700543 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700544 // No JDWP for you!
545 return;
546 }
547
Ian Rogers719d1a32014-03-06 12:13:39 -0800548 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700549 gRegistry = new ObjectRegistry;
550
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700551 // Init JDWP if the debugger is enabled. This may connect out to a
552 // debugger, passively listen for a debugger, or block waiting for a
553 // debugger.
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100554 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
Ian Rogersc0542af2014-09-03 16:16:56 -0700555 if (gJdwpState == nullptr) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800556 // We probably failed because some other process has the port already, which means that
557 // if we don't abort the user is likely to think they're talking to us when they're actually
558 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800559 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700560 }
561
562 // If a debugger has already attached, send the "welcome" message.
563 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700564 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700565 ScopedObjectAccess soa(Thread::Current());
Sebastien Hertz7d955652014-10-22 10:57:10 +0200566 gJdwpState->PostVMStart();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700567 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700568}
569
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700570void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200571 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
572 // destruction of gJdwpState).
573 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
574 gJdwpState->PostVMDeath();
575 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100576 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
577 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700578 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800579 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700580 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800581 gRegistry = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700582}
583
Elliott Hughes767a1472011-10-26 18:49:02 -0700584void Dbg::GcDidFinish() {
585 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700586 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700587 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700588 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700589 }
590 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700591 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700592 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700593 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700594 }
595 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700596 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700597 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700598 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700599 }
600}
601
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700602void Dbg::SetJdwpAllowed(bool allowed) {
603 gJdwpAllowed = allowed;
604}
605
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700606DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700607 return Thread::Current()->GetInvokeReq();
608}
609
610Thread* Dbg::GetDebugThread() {
Ian Rogersc0542af2014-09-03 16:16:56 -0700611 return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700612}
613
614void Dbg::ClearWaitForEventThread() {
Sebastien Hertz2bf93f42015-01-09 18:44:05 +0100615 gJdwpState->ReleaseJdwpTokenForEvent();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700616}
617
618void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700619 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800620 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700621 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800622 gDisposed = false;
623}
624
625void Dbg::Disposed() {
626 gDisposed = true;
627}
628
629bool Dbg::IsDisposed() {
630 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700631}
632
Sebastien Hertzf3928792014-11-17 19:00:37 +0100633bool Dbg::RequiresDeoptimization() {
634 // We don't need deoptimization if everything runs with interpreter after
635 // enabling -Xint mode.
636 return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly();
637}
638
Elliott Hughesa2155262011-11-16 16:26:58 -0800639void Dbg::GoActive() {
640 // Enable all debugging features, including scans for breakpoints.
641 // This is a no-op if we're already active.
642 // Only called from the JDWP handler thread.
643 if (gDebuggerActive) {
644 return;
645 }
646
Elliott Hughesc0f09332012-03-26 13:27:06 -0700647 {
648 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Sebastien Hertzed2be172014-08-19 15:33:43 +0200649 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700650 CHECK_EQ(gBreakpoints.size(), 0U);
651 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800652
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100653 {
Brian Carlstrom306db812014-09-05 13:01:41 -0700654 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100655 CHECK_EQ(deoptimization_requests_.size(), 0U);
656 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100657 CHECK_EQ(delayed_full_undeoptimization_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200658 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
659 CHECK_EQ(method_enter_event_ref_count_, 0U);
660 CHECK_EQ(method_exit_event_ref_count_, 0U);
661 CHECK_EQ(field_read_event_ref_count_, 0U);
662 CHECK_EQ(field_write_event_ref_count_, 0U);
663 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100664 }
665
Ian Rogers62d6c772013-02-27 08:32:07 -0800666 Runtime* runtime = Runtime::Current();
667 runtime->GetThreadList()->SuspendAll();
668 Thread* self = Thread::Current();
669 ThreadState old_state = self->SetStateUnsafe(kRunnable);
670 CHECK_NE(old_state, kRunnable);
Sebastien Hertzf3928792014-11-17 19:00:37 +0100671 if (RequiresDeoptimization()) {
672 runtime->GetInstrumentation()->EnableDeoptimization();
673 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200674 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800675 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800676 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
677 runtime->GetThreadList()->ResumeAll();
678
679 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700680}
681
682void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700683 CHECK(gDebuggerConnected);
684
Elliott Hughesc0f09332012-03-26 13:27:06 -0700685 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700686
Ian Rogers62d6c772013-02-27 08:32:07 -0800687 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
688 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
689 // and clear the object registry.
690 Runtime* runtime = Runtime::Current();
691 runtime->GetThreadList()->SuspendAll();
692 Thread* self = Thread::Current();
693 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100694
695 // Debugger may not be active at this point.
696 if (gDebuggerActive) {
697 {
698 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
699 // This prevents us from having any pending deoptimization request when the debugger attaches
700 // to us again while no event has been requested yet.
Brian Carlstrom306db812014-09-05 13:01:41 -0700701 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100702 deoptimization_requests_.clear();
703 full_deoptimization_event_count_ = 0U;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100704 delayed_full_undeoptimization_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100705 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200706 if (instrumentation_events_ != 0) {
707 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
708 instrumentation_events_);
709 instrumentation_events_ = 0;
710 }
Sebastien Hertzf3928792014-11-17 19:00:37 +0100711 if (RequiresDeoptimization()) {
712 runtime->GetInstrumentation()->DisableDeoptimization();
713 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100714 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100715 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800716 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
717 runtime->GetThreadList()->ResumeAll();
Sebastien Hertz55f65342015-01-13 22:48:34 +0100718
719 {
720 ScopedObjectAccess soa(self);
721 gRegistry->Clear();
722 }
723
724 gDebuggerConnected = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700725}
726
Elliott Hughesc0f09332012-03-26 13:27:06 -0700727bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700728 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700729}
730
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100731void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) {
732 CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown);
733 gJdwpOptions = jdwp_options;
734 gJdwpConfigured = true;
735}
736
Elliott Hughesc0f09332012-03-26 13:27:06 -0700737bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700738 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700739}
740
741int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800742 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700743}
744
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700745void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700746 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700747}
748
Elliott Hughes88d63092013-01-09 09:55:54 -0800749std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700750 JDWP::JdwpError error;
751 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error);
752 if (o == nullptr) {
753 if (error == JDWP::ERR_NONE) {
754 return "NULL";
755 } else {
756 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
757 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800758 }
759 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700760 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800761 }
Sebastien Hertz6995c602014-09-09 12:10:13 +0200762 return GetClassName(o->AsClass());
763}
764
765std::string Dbg::GetClassName(mirror::Class* klass) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200766 if (klass == nullptr) {
767 return "NULL";
768 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700769 std::string temp;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200770 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700771}
772
Ian Rogersc0542af2014-09-03 16:16:56 -0700773JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800774 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700775 mirror::Class* c = DecodeClass(id, &status);
776 if (c == nullptr) {
777 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800778 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800779 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700780 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800781 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800782}
783
Ian Rogersc0542af2014-09-03 16:16:56 -0700784JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800785 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700786 mirror::Class* c = DecodeClass(id, &status);
787 if (c == nullptr) {
788 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800789 return status;
790 }
791 if (c->IsInterface()) {
792 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700793 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800794 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700795 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800796 }
797 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700798}
799
Elliott Hughes436e3722012-02-17 20:01:47 -0800800JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700801 JDWP::JdwpError error;
802 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
803 if (o == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800804 return JDWP::ERR_INVALID_OBJECT;
805 }
806 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
807 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700808}
809
Elliott Hughes436e3722012-02-17 20:01:47 -0800810JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700811 JDWP::JdwpError error;
812 mirror::Class* c = DecodeClass(id, &error);
813 if (c == nullptr) {
814 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800815 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800816
817 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
818
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700819 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
820 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800821 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700822 if ((access_flags & kAccInterface) == 0) {
823 access_flags |= kAccSuper;
824 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800825
826 expandBufAdd4BE(pReply, access_flags);
827
828 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700829}
830
Ian Rogersc0542af2014-09-03 16:16:56 -0700831JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
832 JDWP::JdwpError error;
833 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
834 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800835 return JDWP::ERR_INVALID_OBJECT;
836 }
837
838 // Ensure all threads are suspended while we read objects' lock words.
839 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100840 CHECK_EQ(self->GetState(), kRunnable);
841 self->TransitionFromRunnableToSuspended(kSuspended);
842 Runtime::Current()->GetThreadList()->SuspendAll();
Elliott Hughesf327e072013-01-09 16:01:26 -0800843
844 MonitorInfo monitor_info(o);
845
Sebastien Hertz54263242014-03-19 18:16:50 +0100846 Runtime::Current()->GetThreadList()->ResumeAll();
847 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800848
Ian Rogersc0542af2014-09-03 16:16:56 -0700849 if (monitor_info.owner_ != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700850 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800851 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700852 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800853 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700854 expandBufAdd4BE(reply, monitor_info.entry_count_);
855 expandBufAdd4BE(reply, monitor_info.waiters_.size());
856 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
857 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800858 }
859 return JDWP::ERR_NONE;
860}
861
Elliott Hughes734b8c62013-01-11 15:32:45 -0800862JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700863 std::vector<JDWP::ObjectId>* monitors,
864 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800865 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700866 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700867 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700868 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800869 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700870 : StackVisitor(thread, context), current_stack_depth(0),
871 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800872
873 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
874 // annotalysis.
875 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
876 if (!GetMethod()->IsRuntimeMethod()) {
877 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800878 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800879 }
880 return true;
881 }
882
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700883 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
884 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800885 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700886 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700887 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800888 }
889
Elliott Hughes734b8c62013-01-11 15:32:45 -0800890 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700891 std::vector<JDWP::ObjectId>* const monitors;
892 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800893 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800894
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700895 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700896 Thread* thread;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700897 {
898 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700899 JDWP::JdwpError error;
900 thread = DecodeThread(soa, thread_id, &error);
901 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700902 return error;
903 }
904 if (!IsSuspendedForDebugger(soa, thread)) {
905 return JDWP::ERR_THREAD_NOT_SUSPENDED;
906 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700907 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700908 std::unique_ptr<Context> context(Context::Create());
Ian Rogersc0542af2014-09-03 16:16:56 -0700909 OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700910 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800911 return JDWP::ERR_NONE;
912}
913
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100914JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700915 JDWP::ObjectId* contended_monitor) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700916 mirror::Object* contended_monitor_obj;
Elliott Hughesf9501702013-01-11 11:22:27 -0800917 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -0700918 *contended_monitor = 0;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700919 {
920 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700921 JDWP::JdwpError error;
922 Thread* thread = DecodeThread(soa, thread_id, &error);
923 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700924 return error;
925 }
926 if (!IsSuspendedForDebugger(soa, thread)) {
927 return JDWP::ERR_THREAD_NOT_SUSPENDED;
928 }
929 contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Elliott Hughesf9501702013-01-11 11:22:27 -0800930 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700931 // Add() requires the thread_list_lock_ not held to avoid the lock
932 // level violation.
Ian Rogersc0542af2014-09-03 16:16:56 -0700933 *contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -0800934 return JDWP::ERR_NONE;
935}
936
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800937JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -0700938 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800939 gc::Heap* heap = Runtime::Current()->GetHeap();
940 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800941 std::vector<mirror::Class*> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700942 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800943 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700944 JDWP::JdwpError error;
945 mirror::Class* c = DecodeClass(class_ids[i], &error);
946 if (c == nullptr) {
947 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800948 }
949 classes.push_back(c);
Ian Rogersc0542af2014-09-03 16:16:56 -0700950 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800951 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700952 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800953 return JDWP::ERR_NONE;
954}
955
Ian Rogersc0542af2014-09-03 16:16:56 -0700956JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
957 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800958 gc::Heap* heap = Runtime::Current()->GetHeap();
959 // We only want reachable instances, so do a GC.
960 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700961 JDWP::JdwpError error;
962 mirror::Class* c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800963 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700964 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800965 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800966 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800967 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
968 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700969 instances->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes3b78c942013-01-15 17:35:41 -0800970 }
971 return JDWP::ERR_NONE;
972}
973
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800974JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700975 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800976 gc::Heap* heap = Runtime::Current()->GetHeap();
977 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700978 JDWP::JdwpError error;
979 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
980 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800981 return JDWP::ERR_INVALID_OBJECT;
982 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800983 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800984 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800985 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700986 referring_objects->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800987 }
988 return JDWP::ERR_NONE;
989}
990
Ian Rogersc0542af2014-09-03 16:16:56 -0700991JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
992 JDWP::JdwpError error;
993 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
994 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100995 return JDWP::ERR_INVALID_OBJECT;
996 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800997 gRegistry->DisableCollection(object_id);
998 return JDWP::ERR_NONE;
999}
1000
Ian Rogersc0542af2014-09-03 16:16:56 -07001001JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
1002 JDWP::JdwpError error;
1003 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +01001004 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
1005 // also ignores these cases and never return an error. However it's not obvious why this command
1006 // should behave differently from DisableCollection and IsCollected commands. So let's be more
1007 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -07001008 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001009 return JDWP::ERR_INVALID_OBJECT;
1010 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001011 gRegistry->EnableCollection(object_id);
1012 return JDWP::ERR_NONE;
1013}
1014
Ian Rogersc0542af2014-09-03 16:16:56 -07001015JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
1016 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001017 if (object_id == 0) {
1018 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +01001019 return JDWP::ERR_INVALID_OBJECT;
1020 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001021 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1022 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -07001023 JDWP::JdwpError error;
1024 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1025 if (o != nullptr) {
1026 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001027 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001028 return JDWP::ERR_NONE;
1029}
1030
Ian Rogersc0542af2014-09-03 16:16:56 -07001031void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001032 gRegistry->DisposeObject(object_id, reference_count);
1033}
1034
Sebastien Hertz6995c602014-09-09 12:10:13 +02001035JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001036 DCHECK(klass != nullptr);
1037 if (klass->IsArrayClass()) {
1038 return JDWP::TT_ARRAY;
1039 } else if (klass->IsInterface()) {
1040 return JDWP::TT_INTERFACE;
1041 } else {
1042 return JDWP::TT_CLASS;
1043 }
1044}
1045
Elliott Hughes88d63092013-01-09 09:55:54 -08001046JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001047 JDWP::JdwpError error;
1048 mirror::Class* c = DecodeClass(class_id, &error);
1049 if (c == nullptr) {
1050 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001051 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001052
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001053 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1054 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001055 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001056 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001057}
1058
Ian Rogersc0542af2014-09-03 16:16:56 -07001059void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001060 // Get the complete list of reference classes (i.e. all classes except
1061 // the primitive types).
1062 // Returns a newly-allocated buffer full of RefTypeId values.
1063 struct ClassListCreator {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001064 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes_in) : classes(classes_in) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001065 }
1066
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001067 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001068 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1069 }
1070
Elliott Hughes64f574f2013-02-20 14:57:12 -08001071 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1072 // annotalysis.
1073 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001074 if (!c->IsPrimitive()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001075 classes->push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001076 }
1077 return true;
1078 }
1079
Ian Rogersc0542af2014-09-03 16:16:56 -07001080 std::vector<JDWP::RefTypeId>* const classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001081 };
1082
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001083 ClassListCreator clc(classes);
Sebastien Hertz4537c412014-08-28 14:41:50 +02001084 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(ClassListCreator::Visit,
1085 &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001086}
1087
Ian Rogers1ff3c982014-08-12 02:30:58 -07001088JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1089 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001090 JDWP::JdwpError error;
1091 mirror::Class* c = DecodeClass(class_id, &error);
1092 if (c == nullptr) {
1093 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001094 }
1095
Elliott Hughesa2155262011-11-16 16:26:58 -08001096 if (c->IsArrayClass()) {
1097 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1098 *pTypeTag = JDWP::TT_ARRAY;
1099 } else {
1100 if (c->IsErroneous()) {
1101 *pStatus = JDWP::CS_ERROR;
1102 } else {
1103 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1104 }
1105 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1106 }
1107
Ian Rogersc0542af2014-09-03 16:16:56 -07001108 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001109 std::string temp;
1110 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001111 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001112 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001113}
1114
Ian Rogersc0542af2014-09-03 16:16:56 -07001115void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001116 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001117 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001118 ids->clear();
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001119 for (size_t i = 0; i < classes.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001120 ids->push_back(gRegistry->Add(classes[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001121 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001122}
1123
Ian Rogersc0542af2014-09-03 16:16:56 -07001124JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1125 JDWP::JdwpError error;
1126 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1127 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001128 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001129 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001130
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001131 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001132 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001133
1134 expandBufAdd1(pReply, type_tag);
1135 expandBufAddRefTypeId(pReply, type_id);
1136
1137 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001138}
1139
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001140JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001141 JDWP::JdwpError error;
1142 mirror::Class* c = DecodeClass(class_id, &error);
1143 if (c == nullptr) {
1144 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001145 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001146 std::string temp;
1147 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001148 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001149}
1150
Ian Rogersc0542af2014-09-03 16:16:56 -07001151JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1152 JDWP::JdwpError error;
1153 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001154 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001155 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001156 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001157 const char* source_file = c->GetSourceFile();
1158 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001159 return JDWP::ERR_ABSENT_INFORMATION;
1160 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001161 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001162 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001163}
1164
Ian Rogersc0542af2014-09-03 16:16:56 -07001165JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001166 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001167 JDWP::JdwpError error;
1168 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1169 if (error != JDWP::ERR_NONE) {
1170 *tag = JDWP::JT_VOID;
1171 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001172 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001173 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001174 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001175}
1176
Elliott Hughesaed4be92011-12-02 16:16:23 -08001177size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001178 switch (tag) {
1179 case JDWP::JT_VOID:
1180 return 0;
1181 case JDWP::JT_BYTE:
1182 case JDWP::JT_BOOLEAN:
1183 return 1;
1184 case JDWP::JT_CHAR:
1185 case JDWP::JT_SHORT:
1186 return 2;
1187 case JDWP::JT_FLOAT:
1188 case JDWP::JT_INT:
1189 return 4;
1190 case JDWP::JT_ARRAY:
1191 case JDWP::JT_OBJECT:
1192 case JDWP::JT_STRING:
1193 case JDWP::JT_THREAD:
1194 case JDWP::JT_THREAD_GROUP:
1195 case JDWP::JT_CLASS_LOADER:
1196 case JDWP::JT_CLASS_OBJECT:
1197 return sizeof(JDWP::ObjectId);
1198 case JDWP::JT_DOUBLE:
1199 case JDWP::JT_LONG:
1200 return 8;
1201 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001202 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001203 return -1;
1204 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001205}
1206
Ian Rogersc0542af2014-09-03 16:16:56 -07001207JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1208 JDWP::JdwpError error;
1209 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1210 if (a == nullptr) {
1211 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001212 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001213 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001214 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001215}
1216
Elliott Hughes88d63092013-01-09 09:55:54 -08001217JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001218 JDWP::JdwpError error;
1219 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001220 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001221 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001222 }
Elliott Hughes24437992011-11-30 14:49:33 -08001223
1224 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1225 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001226 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001227 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001228 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1229 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001230 expandBufAdd4BE(pReply, count);
1231
Ian Rogers1ff3c982014-08-12 02:30:58 -07001232 if (IsPrimitiveTag(element_tag)) {
1233 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001234 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1235 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001236 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001237 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1238 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001239 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001240 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1241 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001242 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001243 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1244 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001245 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001246 memcpy(dst, &src[offset * width], count * width);
1247 }
1248 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001249 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001250 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001251 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001252 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001253 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001254 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001255 expandBufAdd1(pReply, specific_tag);
1256 expandBufAddObjectId(pReply, gRegistry->Add(element));
1257 }
1258 }
1259
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001260 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001261}
1262
Ian Rogersef7d42f2014-01-06 12:55:46 -08001263template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001264static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001265 NO_THREAD_SAFETY_ANALYSIS {
1266 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001267 DCHECK(a->GetClass()->IsPrimitiveArray());
1268
Ian Rogersef7d42f2014-01-06 12:55:46 -08001269 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001270 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001271 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001272 }
1273}
1274
Elliott Hughes88d63092013-01-09 09:55:54 -08001275JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001276 JDWP::Request* request) {
1277 JDWP::JdwpError error;
1278 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1279 if (dst == nullptr) {
1280 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001281 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001282
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001283 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001284 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001285 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001286 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001287 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001288
Ian Rogers1ff3c982014-08-12 02:30:58 -07001289 if (IsPrimitiveTag(element_tag)) {
1290 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001291 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001292 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001293 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001294 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001295 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001296 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001297 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001298 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001299 }
1300 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001301 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001302 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001303 JDWP::ObjectId id = request->ReadObjectId();
Ian Rogersc0542af2014-09-03 16:16:56 -07001304 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1305 if (error != JDWP::ERR_NONE) {
1306 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001307 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001308 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001309 }
1310 }
1311
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001312 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001313}
1314
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001315JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001316 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001317}
1318
Ian Rogersc0542af2014-09-03 16:16:56 -07001319JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object) {
1320 JDWP::JdwpError error;
1321 mirror::Class* c = DecodeClass(class_id, &error);
1322 if (c == nullptr) {
1323 *new_object = 0;
1324 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001325 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001326 *new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001327 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001328}
1329
Elliott Hughesbf13d362011-12-08 15:51:37 -08001330/*
1331 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1332 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001333JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogersc0542af2014-09-03 16:16:56 -07001334 JDWP::ObjectId* new_array) {
1335 JDWP::JdwpError error;
1336 mirror::Class* c = DecodeClass(array_class_id, &error);
1337 if (c == nullptr) {
1338 *new_array = 0;
1339 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001340 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001341 *new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -07001342 c->GetComponentSizeShift(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001343 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001344 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001345}
1346
Sebastien Hertz6995c602014-09-09 12:10:13 +02001347JDWP::FieldId Dbg::ToFieldId(const mirror::ArtField* f) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001348 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001349 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001350}
1351
Brian Carlstromea46f952013-07-30 01:26:50 -07001352static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001353 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001354 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001355 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001356}
1357
Brian Carlstromea46f952013-07-30 01:26:50 -07001358static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001359 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001360 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001361 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001362}
1363
Brian Carlstromea46f952013-07-30 01:26:50 -07001364static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001365 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001366 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001367 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001368}
1369
Sebastien Hertz6995c602014-09-09 12:10:13 +02001370bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1371 CHECK(event_thread != nullptr);
1372 JDWP::JdwpError error;
1373 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(expected_thread_id,
1374 &error);
1375 return expected_thread_peer == event_thread->GetPeer();
1376}
1377
1378bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1379 const JDWP::EventLocation& event_location) {
1380 if (expected_location.dex_pc != event_location.dex_pc) {
1381 return false;
1382 }
1383 mirror::ArtMethod* m = FromMethodId(expected_location.method_id);
1384 return m == event_location.method;
1385}
1386
1387bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001388 if (event_class == nullptr) {
1389 return false;
1390 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02001391 JDWP::JdwpError error;
1392 mirror::Class* expected_class = DecodeClass(class_id, &error);
1393 CHECK(expected_class != nullptr);
1394 return expected_class->IsAssignableFrom(event_class);
1395}
1396
1397bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
1398 mirror::ArtField* event_field) {
1399 mirror::ArtField* expected_field = FromFieldId(expected_field_id);
1400 if (expected_field != event_field) {
1401 return false;
1402 }
1403 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1404}
1405
1406bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1407 JDWP::JdwpError error;
1408 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error);
1409 return modifier_instance == event_instance;
1410}
1411
1412void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001413 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001414 if (m == nullptr) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001415 memset(location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001416 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001417 mirror::Class* c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001418 location->type_tag = GetTypeTag(c);
1419 location->class_id = gRegistry->AddRefType(c);
1420 location->method_id = ToMethodId(m);
1421 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001422 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001423}
1424
Ian Rogersc0542af2014-09-03 16:16:56 -07001425std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001426 mirror::ArtMethod* m = FromMethodId(method_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001427 if (m == nullptr) {
1428 return "NULL";
1429 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001430 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001431}
1432
Ian Rogersc0542af2014-09-03 16:16:56 -07001433std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001434 mirror::ArtField* f = FromFieldId(field_id);
1435 if (f == nullptr) {
1436 return "NULL";
1437 }
1438 return f->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001439}
1440
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001441/*
1442 * Augment the access flags for synthetic methods and fields by setting
1443 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1444 * flags not specified by the Java programming language.
1445 */
1446static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1447 accessFlags &= kAccJavaFlagsMask;
1448 if ((accessFlags & kAccSynthetic) != 0) {
1449 accessFlags |= 0xf0000000;
1450 }
1451 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001452}
1453
Elliott Hughesdbb40792011-11-18 17:05:22 -08001454/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001455 * Circularly shifts registers so that arguments come first. Debuggers
1456 * expect slots to begin with arguments, but dex code places them at
1457 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001458 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001459static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1460 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001461 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001462 if (code_item == nullptr) {
1463 // We should not get here for a method without code (native, proxy or abstract). Log it and
1464 // return the slot as is since all registers are arguments.
1465 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1466 return slot;
1467 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001468 uint16_t ins_size = code_item->ins_size_;
1469 uint16_t locals_size = code_item->registers_size_ - ins_size;
1470 if (slot >= locals_size) {
1471 return slot - locals_size;
1472 } else {
1473 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001474 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001475}
1476
Jeff Haob7cefc72013-11-14 14:51:09 -08001477/*
1478 * Circularly shifts registers so that arguments come last. Reverts
1479 * slots to dex style argument placement.
1480 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001481static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001482 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001483 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001484 if (code_item == nullptr) {
1485 // We should not get here for a method without code (native, proxy or abstract). Log it and
1486 // return the slot as is since all registers are arguments.
1487 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1488 return slot;
1489 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001490 uint16_t ins_size = code_item->ins_size_;
1491 uint16_t locals_size = code_item->registers_size_ - ins_size;
1492 if (slot < ins_size) {
1493 return slot + locals_size;
1494 } else {
1495 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001496 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001497}
1498
Elliott Hughes88d63092013-01-09 09:55:54 -08001499JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001500 JDWP::JdwpError error;
1501 mirror::Class* c = DecodeClass(class_id, &error);
1502 if (c == nullptr) {
1503 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001504 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001505
1506 size_t instance_field_count = c->NumInstanceFields();
1507 size_t static_field_count = c->NumStaticFields();
1508
1509 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1510
1511 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001512 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001513 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001514 expandBufAddUtf8String(pReply, f->GetName());
1515 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001516 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001517 static const char genericSignature[1] = "";
1518 expandBufAddUtf8String(pReply, genericSignature);
1519 }
1520 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1521 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001522 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001523}
1524
Elliott Hughes88d63092013-01-09 09:55:54 -08001525JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001526 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001527 JDWP::JdwpError error;
1528 mirror::Class* c = DecodeClass(class_id, &error);
1529 if (c == nullptr) {
1530 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001531 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001532
1533 size_t direct_method_count = c->NumDirectMethods();
1534 size_t virtual_method_count = c->NumVirtualMethods();
1535
1536 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1537
1538 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001539 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001540 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001541 expandBufAddUtf8String(pReply, m->GetName());
1542 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001543 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001544 static const char genericSignature[1] = "";
1545 expandBufAddUtf8String(pReply, genericSignature);
1546 }
1547 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1548 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001549 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001550}
1551
Elliott Hughes88d63092013-01-09 09:55:54 -08001552JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001553 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001554 Thread* self = Thread::Current();
1555 StackHandleScope<1> hs(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07001556 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error)));
Mathieu Chartierf8322842014-05-16 10:59:25 -07001557 if (c.Get() == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001558 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001559 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001560 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001561 expandBufAdd4BE(pReply, interface_count);
1562 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001563 expandBufAddRefTypeId(pReply,
1564 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001565 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001566 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001567}
1568
Ian Rogersc0542af2014-09-03 16:16:56 -07001569void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001570 struct DebugCallbackContext {
1571 int numItems;
1572 JDWP::ExpandBuf* pReply;
1573
Elliott Hughes2435a572012-02-17 16:07:41 -08001574 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001575 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1576 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001577 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001578 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001579 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001580 }
1581 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001582 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001583 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001584 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001585 if (code_item == nullptr) {
1586 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001587 start = -1;
1588 end = -1;
1589 } else {
1590 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001591 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001592 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001593 }
1594
1595 expandBufAdd8BE(pReply, start);
1596 expandBufAdd8BE(pReply, end);
1597
1598 // Add numLines later
1599 size_t numLinesOffset = expandBufGetLength(pReply);
1600 expandBufAdd4BE(pReply, 0);
1601
1602 DebugCallbackContext context;
1603 context.numItems = 0;
1604 context.pReply = pReply;
1605
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001606 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001607 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001608 DebugCallbackContext::Callback, nullptr, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001609 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001610
1611 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001612}
1613
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001614void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1615 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001616 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001617 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001618 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001619 size_t variable_count;
1620 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001621
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001622 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1623 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001624 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001625 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1626
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001627 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1628 pContext->variable_count, startAddress, endAddress - startAddress,
1629 name, descriptor, signature, slot,
1630 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001631
Jeff Haob7cefc72013-11-14 14:51:09 -08001632 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001633
Elliott Hughesdbb40792011-11-18 17:05:22 -08001634 expandBufAdd8BE(pContext->pReply, startAddress);
1635 expandBufAddUtf8String(pContext->pReply, name);
1636 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001637 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001638 expandBufAddUtf8String(pContext->pReply, signature);
1639 }
1640 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1641 expandBufAdd4BE(pContext->pReply, slot);
1642
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001643 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001644 }
1645 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001646 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001647
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001648 // arg_count considers doubles and longs to take 2 units.
1649 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001650 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001651 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001652
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001653 // We don't know the total number of variables yet, so leave a blank and update it later.
1654 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001655 expandBufAdd4BE(pReply, 0);
1656
1657 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001658 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001659 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001660 context.variable_count = 0;
1661 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001662
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001663 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001664 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001665 m->GetDexFile()->DecodeDebugInfo(
Ian Rogersc0542af2014-09-03 16:16:56 -07001666 code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001667 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001668 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001669
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001670 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001671}
1672
Jeff Hao579b0242013-11-18 13:16:49 -08001673void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1674 JDWP::ExpandBuf* pReply) {
1675 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001676 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001677 OutputJValue(tag, return_value, pReply);
1678}
1679
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001680void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1681 JDWP::ExpandBuf* pReply) {
1682 mirror::ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001683 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001684 OutputJValue(tag, field_value, pReply);
1685}
1686
Elliott Hughes9777ba22013-01-17 09:04:19 -08001687JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001688 std::vector<uint8_t>* bytecodes) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001689 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001690 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001691 return JDWP::ERR_INVALID_METHODID;
1692 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001693 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001694 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1695 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1696 const uint8_t* end = begin + byte_count;
1697 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001698 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001699 }
1700 return JDWP::ERR_NONE;
1701}
1702
Elliott Hughes88d63092013-01-09 09:55:54 -08001703JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001704 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001705}
1706
Elliott Hughes88d63092013-01-09 09:55:54 -08001707JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001708 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001709}
1710
Elliott Hughes88d63092013-01-09 09:55:54 -08001711static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1712 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001713 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001714 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001715 JDWP::JdwpError error;
1716 mirror::Class* c = DecodeClass(ref_type_id, &error);
1717 if (ref_type_id != 0 && c == nullptr) {
1718 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001719 }
1720
Sebastien Hertz6995c602014-09-09 12:10:13 +02001721 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001722 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001723 return JDWP::ERR_INVALID_OBJECT;
1724 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001725 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001726
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001727 mirror::Class* receiver_class = c;
Ian Rogersc0542af2014-09-03 16:16:56 -07001728 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001729 receiver_class = o->GetClass();
1730 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001731 // TODO: should we give up now if receiver_class is nullptr?
1732 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001733 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001734 return JDWP::ERR_INVALID_FIELDID;
1735 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001736
Elliott Hughes0cf74332012-02-23 23:14:00 -08001737 // The RI only enforces the static/non-static mismatch in one direction.
1738 // TODO: should we change the tests and check both?
1739 if (is_static) {
1740 if (!f->IsStatic()) {
1741 return JDWP::ERR_INVALID_FIELDID;
1742 }
1743 } else {
1744 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001745 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field "
1746 << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001747 }
1748 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001749 if (f->IsStatic()) {
1750 o = f->GetDeclaringClass();
1751 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001752
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001753 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001754 JValue field_value;
1755 if (tag == JDWP::JT_VOID) {
1756 LOG(FATAL) << "Unknown tag: " << tag;
1757 } else if (!IsPrimitiveTag(tag)) {
1758 field_value.SetL(f->GetObject(o));
1759 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1760 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001761 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001762 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001763 }
Jeff Hao579b0242013-11-18 13:16:49 -08001764 Dbg::OutputJValue(tag, &field_value, pReply);
1765
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001766 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001767}
1768
Elliott Hughes88d63092013-01-09 09:55:54 -08001769JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001770 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001771 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001772}
1773
Ian Rogersc0542af2014-09-03 16:16:56 -07001774JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1775 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001776 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001777}
1778
Elliott Hughes88d63092013-01-09 09:55:54 -08001779static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001780 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001781 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001782 JDWP::JdwpError error;
Sebastien Hertz6995c602014-09-09 12:10:13 +02001783 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001784 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001785 return JDWP::ERR_INVALID_OBJECT;
1786 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001787 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001788
1789 // The RI only enforces the static/non-static mismatch in one direction.
1790 // TODO: should we change the tests and check both?
1791 if (is_static) {
1792 if (!f->IsStatic()) {
1793 return JDWP::ERR_INVALID_FIELDID;
1794 }
1795 } else {
1796 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001797 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001798 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001799 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001800 if (f->IsStatic()) {
1801 o = f->GetDeclaringClass();
1802 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001803
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001804 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001805
1806 if (IsPrimitiveTag(tag)) {
1807 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001808 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001809 // Debugging can't use transactional mode (runtime only).
1810 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001811 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001812 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001813 // Debugging can't use transactional mode (runtime only).
1814 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001815 }
1816 } else {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001817 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001818 if (error != JDWP::ERR_NONE) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001819 return JDWP::ERR_INVALID_OBJECT;
1820 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001821 if (v != nullptr) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001822 mirror::Class* field_type;
1823 {
1824 StackHandleScope<3> hs(Thread::Current());
1825 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1826 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
1827 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
Ian Rogers08f1f502014-12-02 15:04:37 -08001828 field_type = h_f->GetType(true);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001829 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001830 if (!field_type->IsAssignableFrom(v->GetClass())) {
1831 return JDWP::ERR_INVALID_OBJECT;
1832 }
1833 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001834 // Debugging can't use transactional mode (runtime only).
1835 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001836 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001837
1838 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001839}
1840
Elliott Hughes88d63092013-01-09 09:55:54 -08001841JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001842 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001843 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001844}
1845
Elliott Hughes88d63092013-01-09 09:55:54 -08001846JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1847 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001848}
1849
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001850JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001851 JDWP::JdwpError error;
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001852 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error);
1853 if (error != JDWP::ERR_NONE) {
1854 return error;
1855 }
1856 if (obj == nullptr) {
1857 return JDWP::ERR_INVALID_OBJECT;
1858 }
1859 {
1860 ScopedObjectAccessUnchecked soa(Thread::Current());
1861 mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String);
1862 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
1863 // This isn't a string.
1864 return JDWP::ERR_INVALID_STRING;
1865 }
1866 }
1867 *str = obj->AsString()->ToModifiedUtf8();
1868 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001869}
1870
Jeff Hao579b0242013-11-18 13:16:49 -08001871void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1872 if (IsPrimitiveTag(tag)) {
1873 expandBufAdd1(pReply, tag);
1874 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1875 expandBufAdd1(pReply, return_value->GetI());
1876 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1877 expandBufAdd2BE(pReply, return_value->GetI());
1878 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1879 expandBufAdd4BE(pReply, return_value->GetI());
1880 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1881 expandBufAdd8BE(pReply, return_value->GetJ());
1882 } else {
1883 CHECK_EQ(tag, JDWP::JT_VOID);
1884 }
1885 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001886 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001887 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001888 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001889 expandBufAddObjectId(pReply, gRegistry->Add(value));
1890 }
1891}
1892
Ian Rogersc0542af2014-09-03 16:16:56 -07001893JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001894 ScopedObjectAccessUnchecked soa(Thread::Current());
1895 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001896 JDWP::JdwpError error;
1897 Thread* thread = DecodeThread(soa, thread_id, &error);
1898 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001899 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1900 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001901 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001902
1903 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07001904 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1905 CHECK(thread_object != nullptr) << error;
Brian Carlstromea46f952013-07-30 01:26:50 -07001906 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001907 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1908 mirror::String* s =
1909 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Ian Rogersc0542af2014-09-03 16:16:56 -07001910 if (s != nullptr) {
1911 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08001912 }
1913 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001914}
1915
Elliott Hughes221229c2013-01-08 18:17:50 -08001916JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02001917 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001918 JDWP::JdwpError error;
1919 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1920 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001921 return JDWP::ERR_INVALID_OBJECT;
1922 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001923 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001924 // Okay, so it's an object, but is it actually a thread?
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001925 {
1926 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001927 Thread* thread = DecodeThread(soa, thread_id, &error);
1928 UNUSED(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001929 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001930 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1931 // Zombie threads are in the null group.
1932 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001933 error = JDWP::ERR_NONE;
1934 } else if (error == JDWP::ERR_NONE) {
1935 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1936 CHECK(c != nullptr);
Sebastien Hertze49e1952014-10-13 11:27:13 +02001937 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001938 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001939 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001940 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001941 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1942 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001943 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001944 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001945}
1946
Sebastien Hertza06430c2014-09-15 19:21:30 +02001947static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
1948 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
1949 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001950 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,
1951 error);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001952 if (*error != JDWP::ERR_NONE) {
1953 return nullptr;
1954 }
1955 if (thread_group == nullptr) {
1956 *error = JDWP::ERR_INVALID_OBJECT;
1957 return nullptr;
1958 }
Ian Rogers98379392014-02-24 16:53:16 -08001959 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1960 CHECK(c != nullptr);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001961 if (!c->IsAssignableFrom(thread_group->GetClass())) {
1962 // This is not a java.lang.ThreadGroup.
1963 *error = JDWP::ERR_INVALID_THREAD_GROUP;
1964 return nullptr;
1965 }
1966 *error = JDWP::ERR_NONE;
1967 return thread_group;
1968}
1969
1970JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
1971 ScopedObjectAccessUnchecked soa(Thread::Current());
1972 JDWP::JdwpError error;
1973 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
1974 if (error != JDWP::ERR_NONE) {
1975 return error;
1976 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001977 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupName");
Sebastien Hertze49e1952014-10-13 11:27:13 +02001978 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_name);
Ian Rogersc0542af2014-09-03 16:16:56 -07001979 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001980 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Sebastien Hertza06430c2014-09-15 19:21:30 +02001981
1982 std::string thread_group_name(s->ToModifiedUtf8());
1983 expandBufAddUtf8String(pReply, thread_group_name);
1984 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001985}
1986
Sebastien Hertza06430c2014-09-15 19:21:30 +02001987JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08001988 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001989 JDWP::JdwpError error;
Sebastien Hertza06430c2014-09-15 19:21:30 +02001990 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
1991 if (error != JDWP::ERR_NONE) {
1992 return error;
1993 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001994 mirror::Object* parent;
1995 {
1996 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupParent");
Sebastien Hertze49e1952014-10-13 11:27:13 +02001997 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_parent);
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001998 CHECK(f != nullptr);
1999 parent = f->GetObject(thread_group);
2000 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002001 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
2002 expandBufAddObjectId(pReply, parent_group_id);
2003 return JDWP::ERR_NONE;
2004}
2005
2006static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
2007 std::vector<JDWP::ObjectId>* child_thread_group_ids)
2008 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2009 CHECK(thread_group != nullptr);
2010
2011 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Sebastien Hertze49e1952014-10-13 11:27:13 +02002012 mirror::ArtField* groups_field = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_groups);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002013 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Sebastien Hertze49e1952014-10-13 11:27:13 +02002014 {
2015 // The "groups" field is declared as a java.util.List: check it really is
2016 // an instance of java.util.ArrayList.
2017 CHECK(groups_array_list != nullptr);
2018 mirror::Class* java_util_ArrayList_class =
2019 soa.Decode<mirror::Class*>(WellKnownClasses::java_util_ArrayList);
2020 CHECK(groups_array_list->InstanceOf(java_util_ArrayList_class));
2021 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002022
2023 // Get the array and size out of the ArrayList<ThreadGroup>...
Sebastien Hertze49e1952014-10-13 11:27:13 +02002024 mirror::ArtField* array_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_array);
2025 mirror::ArtField* size_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_size);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002026 mirror::ObjectArray<mirror::Object>* groups_array =
2027 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
2028 const int32_t size = size_field->GetInt(groups_array_list);
2029
2030 // Copy the first 'size' elements out of the array into the result.
Sebastien Hertz6995c602014-09-09 12:10:13 +02002031 ObjectRegistry* registry = Dbg::GetObjectRegistry();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002032 for (int32_t i = 0; i < size; ++i) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002033 child_thread_group_ids->push_back(registry->Add(groups_array->Get(i)));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002034 }
2035}
2036
2037JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2038 JDWP::ExpandBuf* pReply) {
2039 ScopedObjectAccessUnchecked soa(Thread::Current());
2040 JDWP::JdwpError error;
2041 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2042 if (error != JDWP::ERR_NONE) {
2043 return error;
2044 }
2045
2046 // Add child threads.
2047 {
2048 std::vector<JDWP::ObjectId> child_thread_ids;
2049 GetThreads(thread_group, &child_thread_ids);
2050 expandBufAdd4BE(pReply, child_thread_ids.size());
2051 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2052 expandBufAddObjectId(pReply, child_thread_id);
2053 }
2054 }
2055
2056 // Add child thread groups.
2057 {
2058 std::vector<JDWP::ObjectId> child_thread_groups_ids;
2059 GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids);
2060 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2061 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2062 expandBufAddObjectId(pReply, child_thread_group_id);
2063 }
2064 }
2065
2066 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002067}
2068
2069JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002070 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07002071 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002072 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002073 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002074}
2075
Jeff Hao920af3e2013-08-28 15:46:38 -07002076JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2077 switch (state) {
2078 case kBlocked:
2079 return JDWP::TS_MONITOR;
2080 case kNative:
2081 case kRunnable:
2082 case kSuspended:
2083 return JDWP::TS_RUNNING;
2084 case kSleeping:
2085 return JDWP::TS_SLEEPING;
2086 case kStarting:
2087 case kTerminated:
2088 return JDWP::TS_ZOMBIE;
2089 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002090 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002091 case kWaitingForDebuggerSend:
2092 case kWaitingForDebuggerSuspension:
2093 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002094 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002095 case kWaitingForGcToComplete:
Jeff Hao920af3e2013-08-28 15:46:38 -07002096 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002097 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002098 case kWaitingForSignalCatcherOutput:
Hiroshi Yamauchi0c8c3032015-01-16 16:54:35 -08002099 case kWaitingForVisitObjects:
Jeff Hao920af3e2013-08-28 15:46:38 -07002100 case kWaitingInMainDebuggerLoop:
2101 case kWaitingInMainSignalCatcherLoop:
2102 case kWaitingPerformingGc:
2103 case kWaiting:
2104 return JDWP::TS_WAIT;
2105 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2106 }
2107 LOG(FATAL) << "Unknown thread state: " << state;
2108 return JDWP::TS_ZOMBIE;
2109}
2110
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002111JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2112 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002113 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002114
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002115 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2116
Ian Rogers50b35e22012-10-04 10:09:15 -07002117 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002118 JDWP::JdwpError error;
2119 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002120 if (error != JDWP::ERR_NONE) {
2121 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2122 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002123 return JDWP::ERR_NONE;
2124 }
2125 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002126 }
2127
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002128 if (IsSuspendedForDebugger(soa, thread)) {
2129 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002130 }
2131
Jeff Hao920af3e2013-08-28 15:46:38 -07002132 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002133 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002134}
2135
Elliott Hughes221229c2013-01-08 18:17:50 -08002136JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002137 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07002138 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002139 JDWP::JdwpError error;
2140 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002141 if (error != JDWP::ERR_NONE) {
2142 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002143 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002144 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002145 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002146 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002147}
2148
Elliott Hughesf9501702013-01-11 11:22:27 -08002149JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2150 ScopedObjectAccess soa(Thread::Current());
2151 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002152 JDWP::JdwpError error;
2153 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002154 if (error != JDWP::ERR_NONE) {
2155 return error;
2156 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002157 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002158 return JDWP::ERR_NONE;
2159}
2160
Sebastien Hertz070f7322014-09-09 12:08:49 +02002161static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa,
2162 mirror::Object* desired_thread_group, mirror::Object* peer)
2163 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2164 // Do we want threads from all thread groups?
2165 if (desired_thread_group == nullptr) {
2166 return true;
2167 }
2168 mirror::ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
2169 DCHECK(thread_group_field != nullptr);
2170 mirror::Object* group = thread_group_field->GetObject(peer);
2171 return (group == desired_thread_group);
2172}
2173
Sebastien Hertza06430c2014-09-15 19:21:30 +02002174void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002175 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz070f7322014-09-09 12:08:49 +02002176 std::list<Thread*> all_threads_list;
2177 {
2178 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2179 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2180 }
2181 for (Thread* t : all_threads_list) {
2182 if (t == Dbg::GetDebugThread()) {
2183 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2184 // query all threads, so it's easier if we just don't tell them about this thread.
2185 continue;
2186 }
2187 if (t->IsStillStarting()) {
2188 // This thread is being started (and has been registered in the thread list). However, it is
2189 // not completely started yet so we must ignore it.
2190 continue;
2191 }
2192 mirror::Object* peer = t->GetPeer();
2193 if (peer == nullptr) {
2194 // peer might be NULL if the thread is still starting up. We can't tell the debugger about
2195 // this thread yet.
2196 // TODO: if we identified threads to the debugger by their Thread*
2197 // rather than their peer's mirror::Object*, we could fix this.
2198 // Doing so might help us report ZOMBIE threads too.
2199 continue;
2200 }
2201 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
2202 thread_ids->push_back(gRegistry->Add(peer));
2203 }
2204 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002205}
Elliott Hughesa2155262011-11-16 16:26:58 -08002206
Ian Rogersc0542af2014-09-03 16:16:56 -07002207static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002208 struct CountStackDepthVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002209 explicit CountStackDepthVisitor(Thread* thread_in)
2210 : StackVisitor(thread_in, nullptr), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002211
Elliott Hughes64f574f2013-02-20 14:57:12 -08002212 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2213 // annotalysis.
2214 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002215 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002216 ++depth;
2217 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002218 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002219 }
2220 size_t depth;
2221 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002222
Ian Rogers7a22fa62013-01-23 12:16:16 -08002223 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002224 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002225 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002226}
2227
Ian Rogersc0542af2014-09-03 16:16:56 -07002228JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002229 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002230 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002231 JDWP::JdwpError error;
2232 *result = 0;
2233 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002234 if (error != JDWP::ERR_NONE) {
2235 return error;
2236 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002237 if (!IsSuspendedForDebugger(soa, thread)) {
2238 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2239 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002240 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002241 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002242}
2243
Ian Rogers306057f2012-11-26 12:45:53 -08002244JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2245 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002246 class GetFrameVisitor : public StackVisitor {
2247 public:
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002248 GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in,
2249 JDWP::ExpandBuf* buf_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002250 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07002251 : StackVisitor(thread, nullptr), depth_(0),
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002252 start_frame_(start_frame_in), frame_count_(frame_count_in), buf_(buf_in) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002253 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002254 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002255
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002256 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2257 // annotalysis.
2258 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002259 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002260 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002261 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002262 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002263 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002264 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002265 if (depth_ >= start_frame_) {
2266 JDWP::FrameId frame_id(GetFrameId());
2267 JDWP::JdwpLocation location;
Sebastien Hertz6995c602014-09-09 12:10:13 +02002268 SetJdwpLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002269 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002270 expandBufAdd8BE(buf_, frame_id);
2271 expandBufAddLocation(buf_, location);
2272 }
2273 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002274 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002275 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002276
2277 private:
2278 size_t depth_;
2279 const size_t start_frame_;
2280 const size_t frame_count_;
2281 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002282 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002283
2284 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002285 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002286 JDWP::JdwpError error;
2287 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002288 if (error != JDWP::ERR_NONE) {
2289 return error;
2290 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002291 if (!IsSuspendedForDebugger(soa, thread)) {
2292 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2293 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002294 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002295 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002296 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002297}
2298
2299JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002300 return GetThreadId(Thread::Current());
2301}
2302
2303JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002304 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002305 return gRegistry->Add(thread->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002306}
2307
Elliott Hughes475fc232011-10-25 15:00:35 -07002308void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002309 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002310}
2311
2312void Dbg::ResumeVM() {
Sebastien Hertz253fa552014-10-14 17:27:15 +02002313 Runtime::Current()->GetThreadList()->ResumeAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002314}
2315
Elliott Hughes221229c2013-01-08 18:17:50 -08002316JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002317 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002318 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002319 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002320 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002321 JDWP::JdwpError error;
2322 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002323 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002324 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002325 return JDWP::ERR_THREAD_NOT_ALIVE;
2326 }
Ian Rogers4ad5cd32014-11-11 23:08:07 -08002327 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002328 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002329 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2330 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2331 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002332 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002333 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002334 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002335 return JDWP::ERR_INTERNAL;
2336 } else {
2337 return JDWP::ERR_THREAD_NOT_ALIVE;
2338 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002339}
2340
Elliott Hughes221229c2013-01-08 18:17:50 -08002341void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002342 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002343 JDWP::JdwpError error;
2344 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2345 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002346 Thread* thread;
2347 {
2348 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2349 thread = Thread::FromManagedThread(soa, peer);
2350 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002351 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002352 LOG(WARNING) << "No such thread for resume: " << peer;
2353 return;
2354 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002355 bool needs_resume;
2356 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002357 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002358 needs_resume = thread->GetSuspendCount() > 0;
2359 }
2360 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002361 Runtime::Current()->GetThreadList()->Resume(thread, true);
2362 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002363}
2364
2365void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002366 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002367}
2368
Ian Rogers0399dde2012-06-06 17:09:28 -07002369struct GetThisVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002370 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002371 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002372 : StackVisitor(thread, context), this_object(nullptr), frame_id(frame_id_in) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002373
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002374 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2375 // annotalysis.
2376 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002377 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002378 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002379 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002380 this_object = GetThisObject();
2381 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002382 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002383 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002384
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002385 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002386 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002387};
2388
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002389JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2390 JDWP::ObjectId* result) {
2391 ScopedObjectAccessUnchecked soa(Thread::Current());
2392 Thread* thread;
2393 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002394 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002395 JDWP::JdwpError error;
2396 thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002397 if (error != JDWP::ERR_NONE) {
2398 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002399 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002400 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002401 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2402 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002403 }
Ian Rogers700a4022014-05-19 16:49:03 -07002404 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002405 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002406 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002407 *result = gRegistry->Add(visitor.this_object);
2408 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002409}
2410
Sebastien Hertz8009f392014-09-01 17:07:11 +02002411// Walks the stack until we find the frame with the given FrameId.
2412class FindFrameVisitor FINAL : public StackVisitor {
2413 public:
2414 FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
2415 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2416 : StackVisitor(thread, context), frame_id_(frame_id), error_(JDWP::ERR_INVALID_FRAMEID) {}
Ian Rogersca190662012-06-26 15:45:57 -07002417
Sebastien Hertz8009f392014-09-01 17:07:11 +02002418 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2419 // annotalysis.
2420 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
2421 if (GetFrameId() != frame_id_) {
2422 return true; // Not our frame, carry on.
Ian Rogers0399dde2012-06-06 17:09:28 -07002423 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002424 mirror::ArtMethod* m = GetMethod();
2425 if (m->IsNative()) {
2426 // We can't read/write local value from/into native method.
2427 error_ = JDWP::ERR_OPAQUE_FRAME;
2428 } else {
2429 // We found our frame.
2430 error_ = JDWP::ERR_NONE;
2431 }
2432 return false;
2433 }
2434
2435 JDWP::JdwpError GetError() const {
2436 return error_;
2437 }
2438
2439 private:
2440 const JDWP::FrameId frame_id_;
2441 JDWP::JdwpError error_;
2442};
2443
2444JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2445 JDWP::ObjectId thread_id = request->ReadThreadId();
2446 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002447
2448 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002449 Thread* thread;
2450 {
2451 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2452 JDWP::JdwpError error;
2453 thread = DecodeThread(soa, thread_id, &error);
2454 if (error != JDWP::ERR_NONE) {
2455 return error;
2456 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002457 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002458 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002459 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002460 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002461 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002462 if (visitor.GetError() != JDWP::ERR_NONE) {
2463 return visitor.GetError();
2464 }
2465
2466 // Read the values from visitor's context.
2467 int32_t slot_count = request->ReadSigned32("slot count");
2468 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2469 for (int32_t i = 0; i < slot_count; ++i) {
2470 uint32_t slot = request->ReadUnsigned32("slot");
2471 JDWP::JdwpTag reqSigByte = request->ReadTag();
2472
2473 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
2474
2475 size_t width = Dbg::GetTagWidth(reqSigByte);
Sebastien Hertz7d955652014-10-22 10:57:10 +02002476 uint8_t* ptr = expandBufAddSpace(pReply, width + 1);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002477 JDWP::JdwpError error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width);
2478 if (error != JDWP::ERR_NONE) {
2479 return error;
2480 }
2481 }
2482 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002483}
2484
Sebastien Hertz8009f392014-09-01 17:07:11 +02002485JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2486 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
2487 mirror::ArtMethod* m = visitor.GetMethod();
2488 uint16_t reg = DemangleSlot(slot, m);
2489 // TODO: check that the tag is compatible with the actual type of the slot!
2490 // TODO: check slot is valid for this method or return INVALID_SLOT error.
2491 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
2492 switch (tag) {
2493 case JDWP::JT_BOOLEAN: {
2494 CHECK_EQ(width, 1U);
2495 uint32_t intVal;
2496 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2497 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2498 JDWP::Set1(buf + 1, intVal != 0);
2499 } else {
2500 VLOG(jdwp) << "failed to get boolean local " << reg;
2501 return kFailureErrorCode;
Ian Rogers0399dde2012-06-06 17:09:28 -07002502 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002503 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002504 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002505 case JDWP::JT_BYTE: {
2506 CHECK_EQ(width, 1U);
2507 uint32_t intVal;
2508 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2509 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2510 JDWP::Set1(buf + 1, intVal);
2511 } else {
2512 VLOG(jdwp) << "failed to get byte local " << reg;
2513 return kFailureErrorCode;
2514 }
2515 break;
2516 }
2517 case JDWP::JT_SHORT:
2518 case JDWP::JT_CHAR: {
2519 CHECK_EQ(width, 2U);
2520 uint32_t intVal;
2521 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2522 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2523 JDWP::Set2BE(buf + 1, intVal);
2524 } else {
2525 VLOG(jdwp) << "failed to get short/char local " << reg;
2526 return kFailureErrorCode;
2527 }
2528 break;
2529 }
2530 case JDWP::JT_INT: {
2531 CHECK_EQ(width, 4U);
2532 uint32_t intVal;
2533 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2534 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2535 JDWP::Set4BE(buf + 1, intVal);
2536 } else {
2537 VLOG(jdwp) << "failed to get int local " << reg;
2538 return kFailureErrorCode;
2539 }
2540 break;
2541 }
2542 case JDWP::JT_FLOAT: {
2543 CHECK_EQ(width, 4U);
2544 uint32_t intVal;
2545 if (visitor.GetVReg(m, reg, kFloatVReg, &intVal)) {
2546 VLOG(jdwp) << "get float local " << reg << " = " << intVal;
2547 JDWP::Set4BE(buf + 1, intVal);
2548 } else {
2549 VLOG(jdwp) << "failed to get float local " << reg;
2550 return kFailureErrorCode;
2551 }
2552 break;
2553 }
2554 case JDWP::JT_ARRAY:
2555 case JDWP::JT_CLASS_LOADER:
2556 case JDWP::JT_CLASS_OBJECT:
2557 case JDWP::JT_OBJECT:
2558 case JDWP::JT_STRING:
2559 case JDWP::JT_THREAD:
2560 case JDWP::JT_THREAD_GROUP: {
2561 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2562 uint32_t intVal;
2563 if (visitor.GetVReg(m, reg, kReferenceVReg, &intVal)) {
2564 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2565 VLOG(jdwp) << "get " << tag << " object local " << reg << " = " << o;
2566 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2567 LOG(FATAL) << "Register " << reg << " expected to hold " << tag << " object: " << o;
2568 }
2569 tag = TagFromObject(soa, o);
2570 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
2571 } else {
2572 VLOG(jdwp) << "failed to get " << tag << " object local " << reg;
2573 return kFailureErrorCode;
2574 }
2575 break;
2576 }
2577 case JDWP::JT_DOUBLE: {
2578 CHECK_EQ(width, 8U);
2579 uint64_t longVal;
2580 if (visitor.GetVRegPair(m, reg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2581 VLOG(jdwp) << "get double local " << reg << " = " << longVal;
2582 JDWP::Set8BE(buf + 1, longVal);
2583 } else {
2584 VLOG(jdwp) << "failed to get double local " << reg;
2585 return kFailureErrorCode;
2586 }
2587 break;
2588 }
2589 case JDWP::JT_LONG: {
2590 CHECK_EQ(width, 8U);
2591 uint64_t longVal;
2592 if (visitor.GetVRegPair(m, reg, kLongLoVReg, kLongHiVReg, &longVal)) {
2593 VLOG(jdwp) << "get long local " << reg << " = " << longVal;
2594 JDWP::Set8BE(buf + 1, longVal);
2595 } else {
2596 VLOG(jdwp) << "failed to get long local " << reg;
2597 return kFailureErrorCode;
2598 }
2599 break;
2600 }
2601 default:
2602 LOG(FATAL) << "Unknown tag " << tag;
2603 break;
2604 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002605
Sebastien Hertz8009f392014-09-01 17:07:11 +02002606 // Prepend tag, which may have been updated.
2607 JDWP::Set1(buf, tag);
2608 return JDWP::ERR_NONE;
2609}
2610
2611JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2612 JDWP::ObjectId thread_id = request->ReadThreadId();
2613 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002614
2615 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002616 Thread* thread;
2617 {
2618 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2619 JDWP::JdwpError error;
2620 thread = DecodeThread(soa, thread_id, &error);
2621 if (error != JDWP::ERR_NONE) {
2622 return error;
2623 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002624 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002625 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002626 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002627 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002628 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002629 if (visitor.GetError() != JDWP::ERR_NONE) {
2630 return visitor.GetError();
2631 }
2632
2633 // Writes the values into visitor's context.
2634 int32_t slot_count = request->ReadSigned32("slot count");
2635 for (int32_t i = 0; i < slot_count; ++i) {
2636 uint32_t slot = request->ReadUnsigned32("slot");
2637 JDWP::JdwpTag sigByte = request->ReadTag();
2638 size_t width = Dbg::GetTagWidth(sigByte);
2639 uint64_t value = request->ReadValue(width);
2640
2641 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
2642 JDWP::JdwpError error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width);
2643 if (error != JDWP::ERR_NONE) {
2644 return error;
2645 }
2646 }
2647 return JDWP::ERR_NONE;
2648}
2649
2650JDWP::JdwpError Dbg::SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
2651 uint64_t value, size_t width) {
2652 mirror::ArtMethod* m = visitor.GetMethod();
2653 uint16_t reg = DemangleSlot(slot, m);
2654 // TODO: check that the tag is compatible with the actual type of the slot!
2655 // TODO: check slot is valid for this method or return INVALID_SLOT error.
2656 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
2657 switch (tag) {
2658 case JDWP::JT_BOOLEAN:
2659 case JDWP::JT_BYTE:
2660 CHECK_EQ(width, 1U);
2661 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2662 VLOG(jdwp) << "failed to set boolean/byte local " << reg << " = "
2663 << static_cast<uint32_t>(value);
2664 return kFailureErrorCode;
2665 }
2666 break;
2667 case JDWP::JT_SHORT:
2668 case JDWP::JT_CHAR:
2669 CHECK_EQ(width, 2U);
2670 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2671 VLOG(jdwp) << "failed to set short/char local " << reg << " = "
2672 << static_cast<uint32_t>(value);
2673 return kFailureErrorCode;
2674 }
2675 break;
2676 case JDWP::JT_INT:
2677 CHECK_EQ(width, 4U);
2678 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2679 VLOG(jdwp) << "failed to set int local " << reg << " = "
2680 << static_cast<uint32_t>(value);
2681 return kFailureErrorCode;
2682 }
2683 break;
2684 case JDWP::JT_FLOAT:
2685 CHECK_EQ(width, 4U);
2686 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kFloatVReg)) {
2687 VLOG(jdwp) << "failed to set float local " << reg << " = "
2688 << static_cast<uint32_t>(value);
2689 return kFailureErrorCode;
2690 }
2691 break;
2692 case JDWP::JT_ARRAY:
2693 case JDWP::JT_CLASS_LOADER:
2694 case JDWP::JT_CLASS_OBJECT:
2695 case JDWP::JT_OBJECT:
2696 case JDWP::JT_STRING:
2697 case JDWP::JT_THREAD:
2698 case JDWP::JT_THREAD_GROUP: {
2699 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2700 JDWP::JdwpError error;
2701 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value),
2702 &error);
2703 if (error != JDWP::ERR_NONE) {
2704 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2705 return JDWP::ERR_INVALID_OBJECT;
2706 } else if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2707 kReferenceVReg)) {
2708 VLOG(jdwp) << "failed to set " << tag << " object local " << reg << " = " << o;
2709 return kFailureErrorCode;
2710 }
2711 break;
2712 }
2713 case JDWP::JT_DOUBLE: {
2714 CHECK_EQ(width, 8U);
2715 if (!visitor.SetVRegPair(m, reg, value, kDoubleLoVReg, kDoubleHiVReg)) {
2716 VLOG(jdwp) << "failed to set double local " << reg << " = " << value;
2717 return kFailureErrorCode;
2718 }
2719 break;
2720 }
2721 case JDWP::JT_LONG: {
2722 CHECK_EQ(width, 8U);
2723 if (!visitor.SetVRegPair(m, reg, value, kLongLoVReg, kLongHiVReg)) {
2724 VLOG(jdwp) << "failed to set double local " << reg << " = " << value;
2725 return kFailureErrorCode;
2726 }
2727 break;
2728 }
2729 default:
2730 LOG(FATAL) << "Unknown tag " << tag;
2731 break;
2732 }
2733 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002734}
2735
Sebastien Hertz6995c602014-09-09 12:10:13 +02002736static void SetEventLocation(JDWP::EventLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
2737 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2738 DCHECK(location != nullptr);
2739 if (m == nullptr) {
2740 memset(location, 0, sizeof(*location));
2741 } else {
2742 location->method = m;
2743 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002744 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002745}
2746
Ian Rogersef7d42f2014-01-06 12:55:46 -08002747void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002748 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002749 if (!IsDebuggerActive()) {
2750 return;
2751 }
2752 DCHECK(m != nullptr);
2753 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002754 JDWP::EventLocation location;
2755 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002756
Sebastien Hertz6995c602014-09-09 12:10:13 +02002757 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002758}
2759
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002760void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
2761 mirror::Object* this_object, mirror::ArtField* f) {
2762 if (!IsDebuggerActive()) {
2763 return;
2764 }
2765 DCHECK(m != nullptr);
2766 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002767 JDWP::EventLocation location;
2768 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002769
Sebastien Hertz6995c602014-09-09 12:10:13 +02002770 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002771}
2772
2773void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
2774 mirror::Object* this_object, mirror::ArtField* f,
2775 const JValue* field_value) {
2776 if (!IsDebuggerActive()) {
2777 return;
2778 }
2779 DCHECK(m != nullptr);
2780 DCHECK(f != nullptr);
2781 DCHECK(field_value != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002782 JDWP::EventLocation location;
2783 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002784
Sebastien Hertz6995c602014-09-09 12:10:13 +02002785 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002786}
2787
2788void Dbg::PostException(const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002789 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002790 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002791 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002792 return;
2793 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002794 JDWP::EventLocation exception_throw_location;
2795 SetEventLocation(&exception_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
2796 JDWP::EventLocation exception_catch_location;
2797 SetEventLocation(&exception_catch_location, catch_method, catch_dex_pc);
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002798
Sebastien Hertz6995c602014-09-09 12:10:13 +02002799 gJdwpState->PostException(&exception_throw_location, exception_object, &exception_catch_location,
2800 throw_location.GetThis());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002801}
2802
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002803void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002804 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002805 return;
2806 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002807 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002808}
2809
Ian Rogers62d6c772013-02-27 08:32:07 -08002810void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002811 mirror::ArtMethod* m, uint32_t dex_pc,
2812 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002813 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002814 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002815 }
2816
Elliott Hughes86964332012-02-15 19:37:42 -08002817 if (IsBreakpoint(m, dex_pc)) {
2818 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002819 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002820
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002821 // If the debugger is single-stepping one of our threads, check to
2822 // see if we're that thread and we've reached a step point.
2823 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002824 if (single_step_control != nullptr) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002825 CHECK(!m->IsNative());
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002826 if (single_step_control->GetStepDepth() == JDWP::SD_INTO) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002827 // Step into method calls. We break when the line number
2828 // or method pointer changes. If we're in SS_MIN mode, we
2829 // always stop.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002830 if (single_step_control->GetMethod() != m) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002831 event_flags |= kSingleStep;
2832 VLOG(jdwp) << "SS new method";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002833 } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002834 event_flags |= kSingleStep;
2835 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002836 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002837 event_flags |= kSingleStep;
2838 VLOG(jdwp) << "SS new line";
2839 }
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002840 } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002841 // Step over method calls. We break when the line number is
2842 // different and the frame depth is <= the original frame
2843 // depth. (We can't just compare on the method, because we
2844 // might get unrolled past it by an exception, and it's tricky
2845 // to identify recursion.)
2846
2847 int stack_depth = GetStackDepth(thread);
2848
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002849 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002850 // Popped up one or more frames, always trigger.
2851 event_flags |= kSingleStep;
2852 VLOG(jdwp) << "SS method pop";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002853 } else if (stack_depth == single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002854 // Same depth, see if we moved.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002855 if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002856 event_flags |= kSingleStep;
2857 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002858 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002859 event_flags |= kSingleStep;
2860 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002861 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002862 }
2863 } else {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002864 CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002865 // Return from the current method. We break when the frame
2866 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002867
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002868 // This differs from the "method exit" break in that it stops
2869 // with the PC at the next instruction in the returned-to
2870 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002871
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002872 int stack_depth = GetStackDepth(thread);
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002873 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002874 event_flags |= kSingleStep;
2875 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002876 }
2877 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002878 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002879
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002880 // If there's something interesting going on, see if it matches one
2881 // of the debugger filters.
2882 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002883 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002884 }
2885}
2886
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002887size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2888 switch (instrumentation_event) {
2889 case instrumentation::Instrumentation::kMethodEntered:
2890 return &method_enter_event_ref_count_;
2891 case instrumentation::Instrumentation::kMethodExited:
2892 return &method_exit_event_ref_count_;
2893 case instrumentation::Instrumentation::kDexPcMoved:
2894 return &dex_pc_change_event_ref_count_;
2895 case instrumentation::Instrumentation::kFieldRead:
2896 return &field_read_event_ref_count_;
2897 case instrumentation::Instrumentation::kFieldWritten:
2898 return &field_write_event_ref_count_;
2899 case instrumentation::Instrumentation::kExceptionCaught:
2900 return &exception_catch_event_ref_count_;
2901 default:
2902 return nullptr;
2903 }
2904}
2905
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002906// Process request while all mutator threads are suspended.
2907void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002908 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002909 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002910 case DeoptimizationRequest::kNothing:
2911 LOG(WARNING) << "Ignoring empty deoptimization request.";
2912 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002913 case DeoptimizationRequest::kRegisterForEvent:
2914 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002915 request.InstrumentationEvent());
2916 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
2917 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002918 break;
2919 case DeoptimizationRequest::kUnregisterForEvent:
2920 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002921 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002922 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002923 request.InstrumentationEvent());
2924 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002925 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002926 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002927 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002928 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002929 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002930 break;
2931 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002932 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002933 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002934 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002935 break;
2936 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002937 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
2938 instrumentation->Deoptimize(request.Method());
2939 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002940 break;
2941 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002942 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
2943 instrumentation->Undeoptimize(request.Method());
2944 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002945 break;
2946 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002947 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002948 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002949 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002950}
2951
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002952void Dbg::DelayFullUndeoptimization() {
Sebastien Hertzf3928792014-11-17 19:00:37 +01002953 if (RequiresDeoptimization()) {
2954 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2955 ++delayed_full_undeoptimization_count_;
2956 DCHECK_LE(delayed_full_undeoptimization_count_, full_deoptimization_event_count_);
2957 }
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002958}
2959
2960void Dbg::ProcessDelayedFullUndeoptimizations() {
2961 // TODO: avoid taking the lock twice (once here and once in ManageDeoptimization).
2962 {
Brian Carlstrom306db812014-09-05 13:01:41 -07002963 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002964 while (delayed_full_undeoptimization_count_ > 0) {
2965 DeoptimizationRequest req;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002966 req.SetKind(DeoptimizationRequest::kFullUndeoptimization);
2967 req.SetMethod(nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002968 RequestDeoptimizationLocked(req);
2969 --delayed_full_undeoptimization_count_;
2970 }
2971 }
2972 ManageDeoptimization();
2973}
2974
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002975void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002976 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002977 // Nothing to do.
2978 return;
2979 }
Brian Carlstrom306db812014-09-05 13:01:41 -07002980 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002981 RequestDeoptimizationLocked(req);
2982}
2983
2984void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002985 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002986 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002987 DCHECK_NE(req.InstrumentationEvent(), 0u);
2988 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002989 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002990 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002991 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02002992 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002993 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002994 deoptimization_requests_.push_back(req);
2995 }
2996 *counter = *counter + 1;
2997 break;
2998 }
2999 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003000 DCHECK_NE(req.InstrumentationEvent(), 0u);
3001 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003002 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003003 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003004 *counter = *counter - 1;
3005 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003006 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003007 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003008 deoptimization_requests_.push_back(req);
3009 }
3010 break;
3011 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003012 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003013 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003014 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003015 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3016 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003017 deoptimization_requests_.push_back(req);
3018 }
3019 ++full_deoptimization_event_count_;
3020 break;
3021 }
3022 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003023 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003024 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003025 --full_deoptimization_event_count_;
3026 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003027 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3028 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003029 deoptimization_requests_.push_back(req);
3030 }
3031 break;
3032 }
3033 case DeoptimizationRequest::kSelectiveDeoptimization: {
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 deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003037 deoptimization_requests_.push_back(req);
3038 break;
3039 }
3040 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003041 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003042 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003043 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003044 deoptimization_requests_.push_back(req);
3045 break;
3046 }
3047 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003048 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003049 break;
3050 }
3051 }
3052}
3053
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003054void Dbg::ManageDeoptimization() {
3055 Thread* const self = Thread::Current();
3056 {
3057 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003058 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003059 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003060 return;
3061 }
3062 }
3063 CHECK_EQ(self->GetState(), kRunnable);
3064 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3065 // We need to suspend mutator threads first.
3066 Runtime* const runtime = Runtime::Current();
3067 runtime->GetThreadList()->SuspendAll();
3068 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003069 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003070 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003071 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003072 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003073 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003074 ProcessDeoptimizationRequest(request);
3075 }
3076 deoptimization_requests_.clear();
3077 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003078 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3079 runtime->GetThreadList()->ResumeAll();
3080 self->TransitionFromSuspendedToRunnable();
3081}
3082
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003083static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3084 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003085 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003086 if (code_item == nullptr) {
3087 // TODO We should not be asked to watch location in a native or abstract method so the code item
3088 // should never be null. We could just check we never encounter this case.
3089 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003090 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003091 // Note: method verifier may cause thread suspension.
3092 self->AssertThreadSuspensionIsAllowable();
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003093 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003094 mirror::Class* declaring_class = m->GetDeclaringClass();
3095 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3096 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003097 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Ian Rogers7b078e82014-09-10 14:44:24 -07003098 verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003099 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method,
Mathieu Chartier4306ef82014-12-19 18:41:47 -08003100 m->GetAccessFlags(), false, true, false, true);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003101 // Note: we don't need to verify the method.
3102 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3103}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003104
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003105static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003106 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003107 for (Breakpoint& breakpoint : gBreakpoints) {
3108 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003109 return &breakpoint;
3110 }
3111 }
3112 return nullptr;
3113}
3114
3115// Sanity checks all existing breakpoints on the same method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003116static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m,
3117 DeoptimizationRequest::Kind deoptimization_kind)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003118 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003119 for (const Breakpoint& breakpoint : gBreakpoints) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003120 if (breakpoint.Method() == m) {
3121 CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind());
3122 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003123 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003124 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
3125 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003126 // We should have deoptimized everything but not "selectively" deoptimized this method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003127 CHECK(instrumentation->AreAllMethodsDeoptimized());
3128 CHECK(!instrumentation->IsDeoptimized(m));
3129 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003130 // We should have "selectively" deoptimized this method.
3131 // Note: while we have not deoptimized everything for this method, we may have done it for
3132 // another event.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003133 CHECK(instrumentation->IsDeoptimized(m));
3134 } else {
3135 // This method does not require deoptimization.
3136 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3137 CHECK(!instrumentation->IsDeoptimized(m));
3138 }
3139}
3140
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003141// Returns the deoptimization kind required to set a breakpoint in a method.
3142// If a breakpoint has already been set, we also return the first breakpoint
3143// through the given 'existing_brkpt' pointer.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003144static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self,
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003145 mirror::ArtMethod* m,
3146 const Breakpoint** existing_brkpt)
Sebastien Hertzf3928792014-11-17 19:00:37 +01003147 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
3148 if (!Dbg::RequiresDeoptimization()) {
3149 // We already run in interpreter-only mode so we don't need to deoptimize anything.
3150 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method "
3151 << PrettyMethod(m);
3152 return DeoptimizationRequest::kNothing;
3153 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003154 const Breakpoint* first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003155 {
3156 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003157 first_breakpoint = FindFirstBreakpointForMethod(m);
3158 *existing_brkpt = first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003159 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003160
3161 if (first_breakpoint == nullptr) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003162 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3163 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3164 // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension.
3165 // Therefore we must not hold any lock when we call it.
3166 bool need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3167 if (need_full_deoptimization) {
3168 VLOG(jdwp) << "Need full deoptimization because of possible inlining of method "
3169 << PrettyMethod(m);
3170 return DeoptimizationRequest::kFullDeoptimization;
3171 } else {
3172 // We don't need to deoptimize if the method has not been compiled.
3173 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
3174 const bool is_compiled = class_linker->GetOatMethodQuickCodeFor(m) != nullptr;
3175 if (is_compiled) {
Sebastien Hertz6963e442014-11-26 22:11:27 +01003176 // If the method may be called through its direct code pointer (without loading
3177 // its updated entrypoint), we need full deoptimization to not miss the breakpoint.
3178 if (class_linker->MayBeCalledWithDirectCodePointer(m)) {
3179 VLOG(jdwp) << "Need full deoptimization because of possible direct code call "
3180 << "into image for compiled method " << PrettyMethod(m);
3181 return DeoptimizationRequest::kFullDeoptimization;
3182 } else {
3183 VLOG(jdwp) << "Need selective deoptimization for compiled method " << PrettyMethod(m);
3184 return DeoptimizationRequest::kSelectiveDeoptimization;
3185 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003186 } else {
3187 // Method is not compiled: we don't need to deoptimize.
3188 VLOG(jdwp) << "No need for deoptimization for non-compiled method " << PrettyMethod(m);
3189 return DeoptimizationRequest::kNothing;
3190 }
3191 }
3192 } else {
3193 // There is at least one breakpoint for this method: we don't need to deoptimize.
3194 // Let's check that all breakpoints are configured the same way for deoptimization.
3195 VLOG(jdwp) << "Breakpoint already set: no deoptimization is required";
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003196 DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003197 if (kIsDebugBuild) {
3198 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3199 SanityCheckExistingBreakpoints(m, deoptimization_kind);
3200 }
3201 return DeoptimizationRequest::kNothing;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003202 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003203}
3204
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003205// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3206// request if we need to deoptimize.
3207void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3208 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003209 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003210 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003211
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003212 const Breakpoint* existing_breakpoint = nullptr;
3213 const DeoptimizationRequest::Kind deoptimization_kind =
3214 GetRequiredDeoptimizationKind(self, m, &existing_breakpoint);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003215 req->SetKind(deoptimization_kind);
3216 if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
3217 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003218 } else {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003219 CHECK(deoptimization_kind == DeoptimizationRequest::kNothing ||
3220 deoptimization_kind == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003221 req->SetMethod(nullptr);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003222 }
3223
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003224 {
3225 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003226 // If there is at least one existing breakpoint on the same method, the new breakpoint
3227 // must have the same deoptimization kind than the existing breakpoint(s).
3228 DeoptimizationRequest::Kind breakpoint_deoptimization_kind;
3229 if (existing_breakpoint != nullptr) {
3230 breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind();
3231 } else {
3232 breakpoint_deoptimization_kind = deoptimization_kind;
3233 }
3234 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind));
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003235 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3236 << gBreakpoints[gBreakpoints.size() - 1];
3237 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003238}
3239
3240// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3241// request if we need to undeoptimize.
3242void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003243 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003244 mirror::ArtMethod* m = FromMethodId(location->method_id);
3245 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003246 DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003247 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003248 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003249 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Sebastien Hertzf3928792014-11-17 19:00:37 +01003250 deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind();
3251 DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization,
3252 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003253 gBreakpoints.erase(gBreakpoints.begin() + i);
3254 break;
3255 }
3256 }
3257 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3258 if (existing_breakpoint == nullptr) {
3259 // There is no more breakpoint on this method: we need to undeoptimize.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003260 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003261 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003262 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3263 req->SetMethod(nullptr);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003264 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003265 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003266 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3267 req->SetMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003268 } else {
3269 // This method had no need for deoptimization: do nothing.
3270 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3271 req->SetKind(DeoptimizationRequest::kNothing);
3272 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003273 }
3274 } else {
3275 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003276 req->SetKind(DeoptimizationRequest::kNothing);
3277 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003278 if (kIsDebugBuild) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003279 SanityCheckExistingBreakpoints(m, deoptimization_kind);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003280 }
Elliott Hughes86964332012-02-15 19:37:42 -08003281 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003282}
3283
Jeff Hao449db332013-04-12 18:30:52 -07003284// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3285// cause suspension if the thread is the current thread.
3286class ScopedThreadSuspension {
3287 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003288 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003289 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003290 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003291 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003292 error_(JDWP::ERR_NONE),
3293 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003294 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003295 ScopedObjectAccessUnchecked soa(self);
3296 {
3297 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003298 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003299 }
3300 if (error_ == JDWP::ERR_NONE) {
3301 if (thread_ == soa.Self()) {
3302 self_suspend_ = true;
3303 } else {
3304 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Sebastien Hertz6995c602014-09-09 12:10:13 +02003305 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003306 bool timed_out;
Ian Rogers4ad5cd32014-11-11 23:08:07 -08003307 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3308 Thread* suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true,
3309 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07003310 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003311 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003312 // Thread terminated from under us while suspending.
3313 error_ = JDWP::ERR_INVALID_THREAD;
3314 } else {
3315 CHECK_EQ(suspended_thread, thread_);
3316 other_suspend_ = true;
3317 }
3318 }
3319 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003320 }
Elliott Hughes86964332012-02-15 19:37:42 -08003321
Jeff Hao449db332013-04-12 18:30:52 -07003322 Thread* GetThread() const {
3323 return thread_;
3324 }
3325
3326 JDWP::JdwpError GetError() const {
3327 return error_;
3328 }
3329
3330 ~ScopedThreadSuspension() {
3331 if (other_suspend_) {
3332 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3333 }
3334 }
3335
3336 private:
3337 Thread* thread_;
3338 JDWP::JdwpError error_;
3339 bool self_suspend_;
3340 bool other_suspend_;
3341};
3342
3343JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3344 JDWP::JdwpStepDepth step_depth) {
3345 Thread* self = Thread::Current();
3346 ScopedThreadSuspension sts(self, thread_id);
3347 if (sts.GetError() != JDWP::ERR_NONE) {
3348 return sts.GetError();
3349 }
3350
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003351 // Work out what ArtMethod* we're in, the current line number, and how deep the stack currently
Elliott Hughes2435a572012-02-17 16:07:41 -08003352 // is for step-out.
Ian Rogers0399dde2012-06-06 17:09:28 -07003353 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003354 explicit SingleStepStackVisitor(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
3355 : StackVisitor(thread, nullptr), stack_depth(0), method(nullptr), line_number(-1) {
Elliott Hughes86964332012-02-15 19:37:42 -08003356 }
Ian Rogersca190662012-06-26 15:45:57 -07003357
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003358 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3359 // annotalysis.
3360 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003361 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003362 if (!m->IsRuntimeMethod()) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003363 ++stack_depth;
3364 if (method == nullptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003365 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003366 method = m;
Ian Rogersc0542af2014-09-03 16:16:56 -07003367 if (dex_cache != nullptr) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003368 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003369 line_number = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003370 }
Elliott Hughes86964332012-02-15 19:37:42 -08003371 }
3372 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003373 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003374 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003375
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003376 int stack_depth;
3377 mirror::ArtMethod* method;
3378 int32_t line_number;
Elliott Hughes86964332012-02-15 19:37:42 -08003379 };
Jeff Hao449db332013-04-12 18:30:52 -07003380
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003381 Thread* const thread = sts.GetThread();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003382 SingleStepStackVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07003383 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003384
Elliott Hughes2435a572012-02-17 16:07:41 -08003385 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
Elliott Hughes2435a572012-02-17 16:07:41 -08003386 struct DebugCallbackContext {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003387 explicit DebugCallbackContext(SingleStepControl* single_step_control_cb,
3388 int32_t line_number_cb, const DexFile::CodeItem* code_item)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003389 : single_step_control_(single_step_control_cb), line_number_(line_number_cb),
3390 code_item_(code_item), last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003391 }
3392
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003393 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number_cb) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003394 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003395 if (static_cast<int32_t>(line_number_cb) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003396 if (!context->last_pc_valid) {
3397 // Everything from this address until the next line change is ours.
3398 context->last_pc = address;
3399 context->last_pc_valid = true;
3400 }
3401 // Otherwise, if we're already in a valid range for this line,
3402 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003403 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003404 // Add everything from the last entry up until here to the set
3405 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003406 context->single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003407 }
3408 context->last_pc_valid = false;
3409 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003410 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003411 }
3412
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003413 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003414 // If the line number was the last in the position table...
3415 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003416 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003417 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003418 single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003419 }
3420 }
3421 }
3422
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003423 SingleStepControl* const single_step_control_;
3424 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003425 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003426 bool last_pc_valid;
3427 uint32_t last_pc;
3428 };
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003429
3430 // Allocate single step.
3431 SingleStepControl* single_step_control = new SingleStepControl(step_size, step_depth,
3432 visitor.stack_depth,
3433 visitor.method);
3434 CHECK(single_step_control != nullptr) << "Failed to allocate SingleStepControl";
3435 mirror::ArtMethod* m = single_step_control->GetMethod();
3436 const int32_t line_number = visitor.line_number;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003437 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003438 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003439 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003440 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07003441 DebugCallbackContext::Callback, nullptr, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003442 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003443
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003444 // Activate single-step in the thread.
3445 thread->ActivateSingleStepControl(single_step_control);
Elliott Hughes86964332012-02-15 19:37:42 -08003446
Elliott Hughes2435a572012-02-17 16:07:41 -08003447 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003448 VLOG(jdwp) << "Single-step thread: " << *thread;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003449 VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize();
3450 VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth();
3451 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->GetMethod());
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003452 VLOG(jdwp) << "Single-step current line: " << line_number;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003453 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth();
Elliott Hughes2435a572012-02-17 16:07:41 -08003454 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003455 for (uint32_t dex_pc : single_step_control->GetDexPcs()) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003456 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003457 }
3458 }
3459
3460 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003461}
3462
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003463void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3464 ScopedObjectAccessUnchecked soa(Thread::Current());
3465 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003466 JDWP::JdwpError error;
3467 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003468 if (error == JDWP::ERR_NONE) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003469 thread->DeactivateSingleStepControl();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003470 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003471}
3472
Elliott Hughes45651fd2012-02-21 15:48:20 -08003473static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3474 switch (tag) {
3475 default:
3476 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
Ian Rogersfc787ec2014-10-09 21:56:44 -07003477 UNREACHABLE();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003478
3479 // Primitives.
3480 case JDWP::JT_BYTE: return 'B';
3481 case JDWP::JT_CHAR: return 'C';
3482 case JDWP::JT_FLOAT: return 'F';
3483 case JDWP::JT_DOUBLE: return 'D';
3484 case JDWP::JT_INT: return 'I';
3485 case JDWP::JT_LONG: return 'J';
3486 case JDWP::JT_SHORT: return 'S';
3487 case JDWP::JT_VOID: return 'V';
3488 case JDWP::JT_BOOLEAN: return 'Z';
3489
3490 // Reference types.
3491 case JDWP::JT_ARRAY:
3492 case JDWP::JT_OBJECT:
3493 case JDWP::JT_STRING:
3494 case JDWP::JT_THREAD:
3495 case JDWP::JT_THREAD_GROUP:
3496 case JDWP::JT_CLASS_LOADER:
3497 case JDWP::JT_CLASS_OBJECT:
3498 return 'L';
3499 }
3500}
3501
Elliott Hughes88d63092013-01-09 09:55:54 -08003502JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3503 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003504 uint32_t arg_count, uint64_t* arg_values,
3505 JDWP::JdwpTag* arg_types, uint32_t options,
3506 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3507 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003508 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3509
Ian Rogersc0542af2014-09-03 16:16:56 -07003510 Thread* targetThread = nullptr;
3511 DebugInvokeReq* req = nullptr;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003512 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003513 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003514 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003515 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003516 JDWP::JdwpError error;
3517 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003518 if (error != JDWP::ERR_NONE) {
3519 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3520 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003521 }
3522 req = targetThread->GetInvokeReq();
3523 if (!req->ready) {
3524 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3525 return JDWP::ERR_INVALID_THREAD;
3526 }
3527
3528 /*
3529 * We currently have a bug where we don't successfully resume the
3530 * target thread if the suspend count is too deep. We're expected to
3531 * require one "resume" for each "suspend", but when asked to execute
3532 * a method we have to resume fully and then re-suspend it back to the
3533 * same level. (The easiest way to cause this is to type "suspend"
3534 * multiple times in jdb.)
3535 *
3536 * It's unclear what this means when the event specifies "resume all"
3537 * and some threads are suspended more deeply than others. This is
3538 * a rare problem, so for now we just prevent it from hanging forever
3539 * by rejecting the method invocation request. Without this, we will
3540 * be stuck waiting on a suspended thread.
3541 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003542 int suspend_count;
3543 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003544 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003545 suspend_count = targetThread->GetSuspendCount();
3546 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003547 if (suspend_count > 1) {
3548 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003549 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003550 }
3551
Ian Rogersc0542af2014-09-03 16:16:56 -07003552 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3553 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003554 return JDWP::ERR_INVALID_OBJECT;
3555 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003556
Ian Rogersc0542af2014-09-03 16:16:56 -07003557 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id, &error);
3558 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003559 return JDWP::ERR_INVALID_OBJECT;
3560 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003561 // TODO: check that 'thread' is actually a java.lang.Thread!
3562
Ian Rogersc0542af2014-09-03 16:16:56 -07003563 mirror::Class* c = DecodeClass(class_id, &error);
3564 if (c == nullptr) {
3565 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003566 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003567
Brian Carlstromea46f952013-07-30 01:26:50 -07003568 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003569 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003570 return JDWP::ERR_INVALID_METHODID;
3571 }
3572 if (m->IsStatic()) {
3573 if (m->GetDeclaringClass() != c) {
3574 return JDWP::ERR_INVALID_METHODID;
3575 }
3576 } else {
3577 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3578 return JDWP::ERR_INVALID_METHODID;
3579 }
3580 }
3581
3582 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003583 uint32_t shorty_len = 0;
3584 const char* shorty = m->GetShorty(&shorty_len);
3585 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003586 return JDWP::ERR_ILLEGAL_ARGUMENT;
3587 }
Elliott Hughes09201632013-04-15 15:50:07 -07003588
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003589 {
3590 StackHandleScope<3> hs(soa.Self());
Ian Rogersa0485602014-12-02 15:48:04 -08003591 HandleWrapper<mirror::ArtMethod> h_m(hs.NewHandleWrapper(&m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003592 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3593 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3594 const DexFile::TypeList* types = m->GetParameterTypeList();
3595 for (size_t i = 0; i < arg_count; ++i) {
3596 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003597 return JDWP::ERR_ILLEGAL_ARGUMENT;
3598 }
3599
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003600 if (shorty[i + 1] == 'L') {
3601 // Did we really get an argument of an appropriate reference type?
Ian Rogersa0485602014-12-02 15:48:04 -08003602 mirror::Class* parameter_type =
3603 h_m->GetClassFromTypeIndex(types->GetTypeItem(i).type_idx_, true);
Ian Rogersc0542af2014-09-03 16:16:56 -07003604 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
3605 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003606 return JDWP::ERR_INVALID_OBJECT;
3607 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003608 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003609 return JDWP::ERR_ILLEGAL_ARGUMENT;
3610 }
3611
3612 // Turn the on-the-wire ObjectId into a jobject.
3613 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3614 v.l = gRegistry->GetJObject(arg_values[i]);
3615 }
Elliott Hughes09201632013-04-15 15:50:07 -07003616 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003617 }
3618
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003619 req->receiver = receiver;
3620 req->thread = thread;
3621 req->klass = c;
3622 req->method = m;
3623 req->arg_count = arg_count;
3624 req->arg_values = arg_values;
3625 req->options = options;
3626 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003627 }
3628
3629 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3630 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3631 // call, and it's unwise to hold it during WaitForSuspend.
3632
3633 {
3634 /*
3635 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003636 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003637 * run out of memory. It's also a good idea to change it before locking
3638 * the invokeReq mutex, although that should never be held for long.
3639 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003640 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003641
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003642 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003643 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003644 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003645
3646 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003647 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003648 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003649 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003650 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003651 thread_list->Resume(targetThread, true);
3652 }
3653
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003654 // The target thread is resumed but needs the JDWP token we're holding.
3655 // We release it now and will acquire it again when the invocation is
3656 // complete and the target thread suspends itself.
3657 gJdwpState->ReleaseJdwpTokenForCommand();
3658
Elliott Hughesd07986f2011-12-06 18:27:45 -08003659 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003660 while (req->invoke_needed) {
3661 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003662 }
3663 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003664 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003665
3666 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003667 SuspendThread(thread_id, false /* request_suspension */);
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003668
3669 // Now the thread is suspended again, we can re-acquire the JDWP token.
3670 gJdwpState->AcquireJdwpTokenForCommand();
3671
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003672 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003673 }
3674
3675 /*
3676 * Suspend the threads. We waited for the target thread to suspend
3677 * itself, so all we need to do is suspend the others.
3678 *
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003679 * The SuspendAllForDebugger() call will double-suspend the event thread,
Elliott Hughesd07986f2011-12-06 18:27:45 -08003680 * so we want to resume the target thread once to keep the books straight.
3681 */
3682 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003683 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003684 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003685 thread_list->SuspendAllForDebugger();
3686 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003687 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003688 thread_list->Resume(targetThread, true);
3689 }
3690
3691 // Copy the result.
3692 *pResultTag = req->result_tag;
3693 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003694 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003695 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003696 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003697 }
3698 *pExceptionId = req->exception;
3699 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003700}
3701
3702void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003703 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003704
Elliott Hughes81ff3182012-03-23 20:35:56 -07003705 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003706 // to preserve that across the method invocation.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003707 StackHandleScope<4> hs(soa.Self());
3708 auto old_throw_this_object = hs.NewHandle<mirror::Object>(nullptr);
3709 auto old_throw_method = hs.NewHandle<mirror::ArtMethod>(nullptr);
3710 auto old_exception = hs.NewHandle<mirror::Throwable>(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003711 uint32_t old_throw_dex_pc;
Sebastien Hertz9f102032014-05-23 08:59:42 +02003712 bool old_exception_report_flag;
Ian Rogers62d6c772013-02-27 08:32:07 -08003713 {
3714 ThrowLocation old_throw_location;
3715 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003716 old_throw_this_object.Assign(old_throw_location.GetThis());
3717 old_throw_method.Assign(old_throw_location.GetMethod());
3718 old_exception.Assign(old_exception_obj);
Ian Rogers62d6c772013-02-27 08:32:07 -08003719 old_throw_dex_pc = old_throw_location.GetDexPc();
Sebastien Hertz9f102032014-05-23 08:59:42 +02003720 old_exception_report_flag = soa.Self()->IsExceptionReportedToInstrumentation();
Ian Rogers62d6c772013-02-27 08:32:07 -08003721 soa.Self()->ClearException();
3722 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003723
3724 // Translate the method through the vtable, unless the debugger wants to suppress it.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003725 MutableHandle<mirror::ArtMethod> m(hs.NewHandle(pReq->method));
Ian Rogersc0542af2014-09-03 16:16:56 -07003726 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003727 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.Get());
3728 if (actual_method != m.Get()) {
3729 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get()) << " to " << PrettyMethod(actual_method);
3730 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003731 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003732 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003733 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003734 << " receiver=" << pReq->receiver
3735 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003736 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003737
3738 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3739
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003740 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.Get()),
Ian Rogers53b8b092014-03-13 23:45:53 -07003741 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003742
Ian Rogersc0542af2014-09-03 16:16:56 -07003743 mirror::Throwable* exception = soa.Self()->GetException(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003744 soa.Self()->ClearException();
3745 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003746 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003747 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003748 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3749 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003750 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003751 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3752 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003753 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003754 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003755 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003756 pReq->result_tag = new_tag;
3757 }
3758
3759 /*
3760 * Register the object. We don't actually need an ObjectId yet,
3761 * but we do need to be sure that the GC won't move or discard the
3762 * object when we switch out of RUNNING. The ObjectId conversion
3763 * will add the object to the "do not touch" list.
3764 *
3765 * We can't use the "tracked allocation" mechanism here because
3766 * the object is going to be handed off to a different thread.
3767 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003768 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003769 }
3770
Ian Rogersc0542af2014-09-03 16:16:56 -07003771 if (old_exception.Get() != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003772 ThrowLocation gc_safe_throw_location(old_throw_this_object.Get(), old_throw_method.Get(),
Ian Rogers62d6c772013-02-27 08:32:07 -08003773 old_throw_dex_pc);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003774 soa.Self()->SetException(gc_safe_throw_location, old_exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +02003775 soa.Self()->SetExceptionReportedToInstrumentation(old_exception_report_flag);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003776 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003777}
3778
Elliott Hughesd07986f2011-12-06 18:27:45 -08003779/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003780 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003781 * need to process each, accumulate the replies, and ship the whole thing
3782 * back.
3783 *
3784 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3785 * and includes the chunk type/length, followed by the data.
3786 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003787 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003788 * chunk. If this becomes inconvenient we will need to adapt.
3789 */
Ian Rogersc0542af2014-09-03 16:16:56 -07003790bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003791 Thread* self = Thread::Current();
3792 JNIEnv* env = self->GetJniEnv();
3793
Ian Rogersc0542af2014-09-03 16:16:56 -07003794 uint32_t type = request->ReadUnsigned32("type");
3795 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003796
3797 // Create a byte[] corresponding to 'request'.
Ian Rogersc0542af2014-09-03 16:16:56 -07003798 size_t request_length = request->size();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003799 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Ian Rogersc0542af2014-09-03 16:16:56 -07003800 if (dataArray.get() == nullptr) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003801 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003802 env->ExceptionClear();
3803 return false;
3804 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003805 env->SetByteArrayRegion(dataArray.get(), 0, request_length,
3806 reinterpret_cast<const jbyte*>(request->data()));
3807 request->Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003808
3809 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003810 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003811 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003812 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003813 return false;
3814 }
3815
3816 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003817 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3818 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003819 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003820 if (env->ExceptionCheck()) {
3821 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3822 env->ExceptionDescribe();
3823 env->ExceptionClear();
3824 return false;
3825 }
3826
Ian Rogersc0542af2014-09-03 16:16:56 -07003827 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003828 return false;
3829 }
3830
3831 /*
3832 * Pull the pieces out of the chunk. We copy the results into a
3833 * newly-allocated buffer that the caller can free. We don't want to
3834 * continue using the Chunk object because nothing has a reference to it.
3835 *
3836 * We could avoid this by returning type/data/offset/length and having
3837 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003838 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003839 * if we have responses for multiple chunks.
3840 *
3841 * So we're pretty much stuck with copying data around multiple times.
3842 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003843 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 -08003844 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003845 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003846 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003847
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003848 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 -07003849 if (length == 0 || replyData.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003850 return false;
3851 }
3852
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003853 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003854 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
Ian Rogersc0542af2014-09-03 16:16:56 -07003855 if (reply == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003856 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3857 return false;
3858 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003859 JDWP::Set4BE(reply + 0, type);
3860 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003861 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003862
3863 *pReplyBuf = reply;
3864 *pReplyLen = length + kChunkHdrLen;
3865
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003866 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003867 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003868}
3869
Elliott Hughesa2155262011-11-16 16:26:58 -08003870void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003871 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003872
3873 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003874 if (self->GetState() != kRunnable) {
3875 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3876 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003877 }
3878
3879 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003880 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003881 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3882 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3883 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003884 if (env->ExceptionCheck()) {
3885 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3886 env->ExceptionDescribe();
3887 env->ExceptionClear();
3888 }
3889}
3890
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003891void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003892 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003893}
3894
3895void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003896 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003897 gDdmThreadNotification = false;
3898}
3899
3900/*
Elliott Hughes82188472011-11-07 18:11:48 -08003901 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003902 *
3903 * Because we broadcast the full set of threads when the notifications are
3904 * first enabled, it's possible for "thread" to be actively executing.
3905 */
Elliott Hughes82188472011-11-07 18:11:48 -08003906void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003907 if (!gDdmThreadNotification) {
3908 return;
3909 }
3910
Elliott Hughes82188472011-11-07 18:11:48 -08003911 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003912 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003913 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003914 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003915 } else {
3916 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003917 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003918 StackHandleScope<1> hs(soa.Self());
3919 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
Ian Rogersc0542af2014-09-03 16:16:56 -07003920 size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0;
3921 const jchar* chars = (name.Get() != nullptr) ? name->GetCharArray()->GetData() : nullptr;
Elliott Hughes82188472011-11-07 18:11:48 -08003922
Elliott Hughes21f32d72011-11-09 17:44:13 -08003923 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003924 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003925 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003926 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3927 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003928 }
3929}
3930
Elliott Hughes47fce012011-10-25 18:37:19 -07003931void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003932 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003933 gDdmThreadNotification = enable;
3934 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003935 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3936 // see a suspension in progress and block until that ends. They then post their own start
3937 // notification.
3938 SuspendVM();
3939 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003940 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003941 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003942 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003943 threads = Runtime::Current()->GetThreadList()->GetList();
3944 }
3945 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003946 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003947 for (Thread* thread : threads) {
3948 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003949 }
3950 }
3951 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003952 }
3953}
3954
Elliott Hughesa2155262011-11-16 16:26:58 -08003955void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003956 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02003957 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003958 }
Elliott Hughes82188472011-11-07 18:11:48 -08003959 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003960}
3961
3962void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003963 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003964}
3965
3966void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003967 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003968}
3969
Elliott Hughes82188472011-11-07 18:11:48 -08003970void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Ian Rogersc0542af2014-09-03 16:16:56 -07003971 CHECK(buf != nullptr);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003972 iovec vec[1];
3973 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3974 vec[0].iov_len = byte_count;
3975 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003976}
3977
Elliott Hughes21f32d72011-11-09 17:44:13 -08003978void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3979 DdmSendChunk(type, bytes.size(), &bytes[0]);
3980}
3981
Brian Carlstromf5293522013-07-19 00:24:00 -07003982void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Ian Rogersc0542af2014-09-03 16:16:56 -07003983 if (gJdwpState == nullptr) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003984 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003985 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003986 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003987 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003988}
3989
Mathieu Chartierad466ad2015-01-08 16:28:08 -08003990JDWP::JdwpState* Dbg::GetJdwpState() {
3991 return gJdwpState;
3992}
3993
Elliott Hughes767a1472011-10-26 18:49:02 -07003994int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3995 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003996 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003997 return true;
3998 }
3999
4000 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4001 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4002 return false;
4003 }
4004
4005 gDdmHpifWhen = when;
4006 return true;
4007}
4008
4009bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4010 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4011 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4012 return false;
4013 }
4014
4015 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4016 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4017 return false;
4018 }
4019
4020 if (native) {
4021 gDdmNhsgWhen = when;
4022 gDdmNhsgWhat = what;
4023 } else {
4024 gDdmHpsgWhen = when;
4025 gDdmHpsgWhat = what;
4026 }
4027 return true;
4028}
4029
Elliott Hughes7162ad92011-10-27 14:08:42 -07004030void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4031 // If there's a one-shot 'when', reset it.
4032 if (reason == gDdmHpifWhen) {
4033 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4034 gDdmHpifWhen = HPIF_WHEN_NEVER;
4035 }
4036 }
4037
4038 /*
4039 * Chunk HPIF (client --> server)
4040 *
4041 * Heap Info. General information about the heap,
4042 * suitable for a summary display.
4043 *
4044 * [u4]: number of heaps
4045 *
4046 * For each heap:
4047 * [u4]: heap ID
4048 * [u8]: timestamp in ms since Unix epoch
4049 * [u1]: capture reason (same as 'when' value from server)
4050 * [u4]: max heap size in bytes (-Xmx)
4051 * [u4]: current heap size in bytes
4052 * [u4]: current number of bytes allocated
4053 * [u4]: current number of objects allocated
4054 */
4055 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004056 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004057 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004058 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004059 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004060 JDWP::Append8BE(bytes, MilliTime());
4061 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004062 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4063 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004064 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4065 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004066 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
4067 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07004068}
4069
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004070enum HpsgSolidity {
4071 SOLIDITY_FREE = 0,
4072 SOLIDITY_HARD = 1,
4073 SOLIDITY_SOFT = 2,
4074 SOLIDITY_WEAK = 3,
4075 SOLIDITY_PHANTOM = 4,
4076 SOLIDITY_FINALIZABLE = 5,
4077 SOLIDITY_SWEEP = 6,
4078};
4079
4080enum HpsgKind {
4081 KIND_OBJECT = 0,
4082 KIND_CLASS_OBJECT = 1,
4083 KIND_ARRAY_1 = 2,
4084 KIND_ARRAY_2 = 3,
4085 KIND_ARRAY_4 = 4,
4086 KIND_ARRAY_8 = 5,
4087 KIND_UNKNOWN = 6,
4088 KIND_NATIVE = 7,
4089};
4090
4091#define HPSG_PARTIAL (1<<7)
4092#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4093
Ian Rogers30fab402012-01-23 15:43:46 -08004094class HeapChunkContext {
4095 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004096 // Maximum chunk size. Obtain this from the formula:
4097 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4098 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004099 : buf_(16384 - 16),
4100 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004101 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004102 Reset();
4103 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004104 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004105 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004106 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004107 }
4108 }
4109
4110 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004111 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004112 Flush();
4113 }
4114 }
4115
Mathieu Chartier36dab362014-07-30 14:59:56 -07004116 void SetChunkOverhead(size_t chunk_overhead) {
4117 chunk_overhead_ = chunk_overhead;
4118 }
4119
4120 void ResetStartOfNextChunk() {
4121 startOfNextMemoryChunk_ = nullptr;
4122 }
4123
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004124 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004125 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004126 return;
4127 }
4128
4129 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004130 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4131 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004132
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004133 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4134 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004135 // [u4]: length of piece, in allocation units
4136 // 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 -08004137 pieceLenField_ = p_;
4138 JDWP::Write4BE(&p_, 0x55555555);
4139 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004140 }
4141
Ian Rogersb726dcb2012-09-05 08:57:23 -07004142 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004143 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004144 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4145 CHECK(needHeader_);
4146 return;
4147 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004148 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004149 CHECK_LE(&buf_[0], pieceLenField_);
4150 CHECK_LE(pieceLenField_, p_);
4151 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004152
Ian Rogers30fab402012-01-23 15:43:46 -08004153 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004154 Reset();
4155 }
4156
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004157 static void HeapChunkJavaCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004158 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4159 Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004160 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes);
4161 }
4162
4163 static void HeapChunkNativeCallback(void* start, void* end, size_t used_bytes, void* arg)
4164 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4165 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004166 }
4167
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004168 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004169 enum { ALLOCATION_UNIT_SIZE = 8 };
4170
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004171 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004172 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004173 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004174 totalAllocationUnits_ = 0;
4175 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004176 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004177 }
4178
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004179 bool IsNative() const {
4180 return type_ == CHUNK_TYPE("NHSG");
4181 }
4182
4183 // Returns true if the object is not an empty chunk.
4184 bool ProcessRecord(void* start, size_t used_bytes) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004185 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4186 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004187 if (used_bytes == 0) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004188 if (start == nullptr) {
4189 // Reset for start of new heap.
4190 startOfNextMemoryChunk_ = nullptr;
4191 Flush();
4192 }
4193 // Only process in use memory so that free region information
4194 // also includes dlmalloc book keeping.
4195 return false;
Elliott Hughesa2155262011-11-16 16:26:58 -08004196 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004197 if (startOfNextMemoryChunk_ != nullptr) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004198 // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because
4199 // of the use of mmaps, so don't report. If not free memory then start a new segment.
4200 bool flush = true;
4201 if (start > startOfNextMemoryChunk_) {
4202 const size_t kMaxFreeLen = 2 * kPageSize;
4203 void* free_start = startOfNextMemoryChunk_;
4204 void* free_end = start;
4205 const size_t free_len =
4206 reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start);
4207 if (!IsNative() || free_len < kMaxFreeLen) {
4208 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative());
4209 flush = false;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004210 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004211 }
4212 if (flush) {
4213 startOfNextMemoryChunk_ = nullptr;
4214 Flush();
4215 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004216 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004217 return true;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004218 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004219
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004220 void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes)
4221 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4222 if (ProcessRecord(start, used_bytes)) {
4223 uint8_t state = ExamineNativeObject(start);
4224 AppendChunk(state, start, used_bytes + chunk_overhead_, true /*is_native*/);
4225 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4226 }
4227 }
4228
4229 void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes)
4230 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
4231 if (ProcessRecord(start, used_bytes)) {
4232 // Determine the type of this chunk.
4233 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4234 // If it's the same, we should combine them.
4235 uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start));
4236 AppendChunk(state, start, used_bytes + chunk_overhead_, false /*is_native*/);
4237 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4238 }
4239 }
4240
4241 void AppendChunk(uint8_t state, void* ptr, size_t length, bool is_native)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004242 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004243 // Make sure there's enough room left in the buffer.
4244 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4245 // 17 bytes for any header.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004246 const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17;
4247 size_t byte_left = &buf_.back() - p_;
4248 if (byte_left < needed) {
4249 if (is_native) {
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004250 // Cannot trigger memory allocation while walking native heap.
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004251 return;
4252 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004253 Flush();
4254 }
4255
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004256 byte_left = &buf_.back() - p_;
4257 if (byte_left < needed) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004258 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4259 << needed << " bytes)";
4260 return;
4261 }
4262 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004263 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004264 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4265 totalAllocationUnits_ += length;
4266 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004267 *p_++ = state | HPSG_PARTIAL;
4268 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004269 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004270 }
Ian Rogers30fab402012-01-23 15:43:46 -08004271 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004272 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004273 }
4274
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004275 uint8_t ExamineNativeObject(const void* p) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4276 return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4277 }
4278
4279 uint8_t ExamineJavaObject(mirror::Object* o)
Ian Rogersef7d42f2014-01-06 12:55:46 -08004280 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004281 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004282 return HPSG_STATE(SOLIDITY_FREE, 0);
4283 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004284 // It's an allocated chunk. Figure out what it is.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004285 gc::Heap* heap = Runtime::Current()->GetHeap();
4286 if (!heap->IsLiveObjectLocked(o)) {
4287 LOG(ERROR) << "Invalid object in managed heap: " << o;
Elliott Hughesa2155262011-11-16 16:26:58 -08004288 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4289 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004290 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004291 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004292 // The object was probably just created but hasn't been initialized yet.
4293 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4294 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004295 if (!heap->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004296 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004297 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4298 }
Mathieu Chartierf26e1b32015-01-29 10:47:10 -08004299 if (c->GetClass() == nullptr) {
4300 LOG(ERROR) << "Null class of class " << c << " for object " << o;
4301 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4302 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004303 if (c->IsClassClass()) {
4304 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4305 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004306 if (c->IsArrayClass()) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004307 switch (c->GetComponentSize()) {
4308 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4309 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4310 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4311 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4312 }
4313 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004314 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4315 }
4316
Ian Rogers30fab402012-01-23 15:43:46 -08004317 std::vector<uint8_t> buf_;
4318 uint8_t* p_;
4319 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004320 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004321 size_t totalAllocationUnits_;
4322 uint32_t type_;
Ian Rogers30fab402012-01-23 15:43:46 -08004323 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004324 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004325
Elliott Hughesa2155262011-11-16 16:26:58 -08004326 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4327};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004328
Mathieu Chartier36dab362014-07-30 14:59:56 -07004329static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
4330 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
4331 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004332 HeapChunkContext::HeapChunkJavaCallback(
Mathieu Chartier36dab362014-07-30 14:59:56 -07004333 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4334}
4335
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004336void Dbg::DdmSendHeapSegments(bool native) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004337 Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen;
4338 Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004339 if (when == HPSG_WHEN_NEVER) {
4340 return;
4341 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004342 // Figure out what kind of chunks we'll be sending.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004343 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS)
4344 << static_cast<int>(what);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004345
4346 // First, send a heap start chunk.
4347 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004348 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004349 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004350 Thread* self = Thread::Current();
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004351 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004352
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004353 // Send a series of heap segment chunks.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004354 HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native);
Elliott Hughesa2155262011-11-16 16:26:58 -08004355 if (native) {
Ian Rogers872dd822014-10-30 11:19:14 -07004356#if defined(HAVE_ANDROID_OS) && defined(USE_DLMALLOC)
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004357 dlmalloc_inspect_all(HeapChunkContext::HeapChunkNativeCallback, &context);
4358 HeapChunkContext::HeapChunkNativeCallback(nullptr, nullptr, 0, &context); // Indicate end of a space.
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004359#else
4360 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4361#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004362 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004363 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004364 for (const auto& space : heap->GetContinuousSpaces()) {
4365 if (space->IsDlMallocSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004366 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004367 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4368 // allocation then the first sizeof(size_t) may belong to it.
4369 context.SetChunkOverhead(sizeof(size_t));
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004370 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004371 } else if (space->IsRosAllocSpace()) {
4372 context.SetChunkOverhead(0);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004373 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4374 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
4375 self->TransitionFromRunnableToSuspended(kSuspended);
4376 ThreadList* tl = Runtime::Current()->GetThreadList();
4377 tl->SuspendAll();
4378 {
4379 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004380 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004381 }
4382 tl->ResumeAll();
4383 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004384 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004385 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004386 context.SetChunkOverhead(0);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004387 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004388 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004389 } else if (space->IsRegionSpace()) {
4390 heap->IncrementDisableMovingGC(self);
4391 self->TransitionFromRunnableToSuspended(kSuspended);
4392 ThreadList* tl = Runtime::Current()->GetThreadList();
4393 tl->SuspendAll();
4394 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4395 context.SetChunkOverhead(0);
4396 space->AsRegionSpace()->Walk(BumpPointerSpaceCallback, &context);
4397 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
4398 tl->ResumeAll();
4399 self->TransitionFromSuspendedToRunnable();
4400 heap->DecrementDisableMovingGC(self);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004401 } else {
4402 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004403 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004404 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004405 }
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004406 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004407 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004408 context.SetChunkOverhead(0);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004409 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004410 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004411
4412 // Finally, send a heap end chunk.
4413 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004414}
4415
Elliott Hughesb1a58792013-07-11 18:10:58 -07004416static size_t GetAllocTrackerMax() {
4417#ifdef HAVE_ANDROID_OS
4418 // Check whether there's a system property overriding the number of records.
4419 const char* propertyName = "dalvik.vm.allocTrackerMax";
4420 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4421 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4422 char* end;
4423 size_t value = strtoul(allocRecordMaxString, &end, 10);
4424 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004425 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4426 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004427 return kDefaultNumAllocRecords;
4428 }
4429 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004430 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4431 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004432 return kDefaultNumAllocRecords;
4433 }
4434 return value;
4435 }
4436#endif
4437 return kDefaultNumAllocRecords;
4438}
4439
Brian Carlstrom306db812014-09-05 13:01:41 -07004440void Dbg::SetAllocTrackingEnabled(bool enable) {
4441 Thread* self = Thread::Current();
4442 if (enable) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004443 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004444 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4445 if (recent_allocation_records_ != nullptr) {
4446 return; // Already enabled, bail.
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004447 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004448 alloc_record_max_ = GetAllocTrackerMax();
4449 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4450 << kMaxAllocRecordStackDepth << " frames, taking "
4451 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4452 DCHECK_EQ(alloc_record_head_, 0U);
4453 DCHECK_EQ(alloc_record_count_, 0U);
4454 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4455 CHECK(recent_allocation_records_ != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004456 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004457 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004458 } else {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004459 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004460 ScopedObjectAccess soa(self); // For type_cache_.Clear();
4461 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4462 if (recent_allocation_records_ == nullptr) {
4463 return; // Already disabled, bail.
4464 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07004465 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004466 delete[] recent_allocation_records_;
Ian Rogersc0542af2014-09-03 16:16:56 -07004467 recent_allocation_records_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -07004468 alloc_record_head_ = 0;
4469 alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004470 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004471 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004472 // If an allocation comes in before we uninstrument, we will safely drop it on the floor.
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004473 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004474 }
4475}
4476
Ian Rogers0399dde2012-06-06 17:09:28 -07004477struct AllocRecordStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004478 AllocRecordStackVisitor(Thread* thread, AllocRecord* record_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004479 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004480 : StackVisitor(thread, nullptr), record(record_in), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004481
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004482 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4483 // annotalysis.
4484 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004485 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004486 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004487 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004488 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004489 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004490 record->StackElement(depth)->SetMethod(m);
4491 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004492 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004493 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004494 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004495 }
4496
4497 ~AllocRecordStackVisitor() {
4498 // Clear out any unused stack trace elements.
4499 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004500 record->StackElement(depth)->SetMethod(nullptr);
4501 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004502 }
4503 }
4504
4505 AllocRecord* record;
4506 size_t depth;
4507};
4508
Ian Rogers844506b2014-09-12 19:59:33 -07004509void Dbg::RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004510 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004511 if (recent_allocation_records_ == nullptr) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004512 // In the process of shutting down recording, bail.
Elliott Hughes545a0642011-11-08 19:10:03 -08004513 return;
4514 }
4515
4516 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004517 if (++alloc_record_head_ == alloc_record_max_) {
4518 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004519 }
4520
4521 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004522 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004523 record->SetType(type);
4524 record->SetByteCount(byte_count);
4525 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004526
4527 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004528 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004529 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004530
Ian Rogers719d1a32014-03-06 12:13:39 -08004531 if (alloc_record_count_ < alloc_record_max_) {
4532 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004533 }
4534}
4535
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004536// Returns the index of the head element.
4537//
Brian Carlstrom306db812014-09-05 13:01:41 -07004538// We point at the most-recently-written record, so if alloc_record_count_ is 1
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004539// we want to use the current element. Take "head+1" and subtract count
4540// from it.
4541//
4542// We need to handle underflow in our circular buffer, so we add
Brian Carlstrom306db812014-09-05 13:01:41 -07004543// alloc_record_max_ and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004544size_t Dbg::HeadIndex() {
4545 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4546 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004547}
4548
4549void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004550 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004551 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004552 if (recent_allocation_records_ == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004553 LOG(INFO) << "Not recording tracked allocations";
4554 return;
4555 }
4556
4557 // "i" is the head of the list. We want to start at the end of the
4558 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004559 size_t i = HeadIndex();
Brian Carlstrom306db812014-09-05 13:01:41 -07004560 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4561 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004562
Ian Rogers719d1a32014-03-06 12:13:39 -08004563 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004564 while (count--) {
4565 AllocRecord* record = &recent_allocation_records_[i];
4566
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004567 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4568 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004569
4570 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004571 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4572 mirror::ArtMethod* m = stack_element->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004573 if (m == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004574 break;
4575 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004576 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004577 }
4578
4579 // pause periodically to help logcat catch up
4580 if ((count % 5) == 0) {
4581 usleep(40000);
4582 }
4583
Ian Rogers719d1a32014-03-06 12:13:39 -08004584 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004585 }
4586}
4587
4588class StringTable {
4589 public:
4590 StringTable() {
4591 }
4592
Mathieu Chartier4345c462014-06-27 10:20:14 -07004593 void Add(const std::string& str) {
4594 table_.insert(str);
4595 }
4596
4597 void Add(const char* str) {
4598 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004599 }
4600
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004601 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004602 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004603 if (it == table_.end()) {
4604 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4605 }
4606 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004607 }
4608
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004609 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004610 return table_.size();
4611 }
4612
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004613 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004614 for (const std::string& str : table_) {
4615 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004616 size_t s_len = CountModifiedUtf8Chars(s);
Ian Rogers700a4022014-05-19 16:49:03 -07004617 std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004618 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4619 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004620 }
4621 }
4622
4623 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004624 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004625 DISALLOW_COPY_AND_ASSIGN(StringTable);
4626};
4627
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004628static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004629 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004630 DCHECK(method != nullptr);
4631 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004632 return (source_file != nullptr) ? source_file : "";
4633}
4634
Elliott Hughes545a0642011-11-08 19:10:03 -08004635/*
4636 * The data we send to DDMS contains everything we have recorded.
4637 *
4638 * Message header (all values big-endian):
4639 * (1b) message header len (to allow future expansion); includes itself
4640 * (1b) entry header len
4641 * (1b) stack frame len
4642 * (2b) number of entries
4643 * (4b) offset to string table from start of message
4644 * (2b) number of class name strings
4645 * (2b) number of method name strings
4646 * (2b) number of source file name strings
4647 * For each entry:
4648 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004649 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004650 * (2b) allocated object's class name index
4651 * (1b) stack depth
4652 * For each stack frame:
4653 * (2b) method's class name
4654 * (2b) method name
4655 * (2b) method source file
4656 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4657 * (xb) class name strings
4658 * (xb) method name strings
4659 * (xb) source file strings
4660 *
4661 * As with other DDM traffic, strings are sent as a 4-byte length
4662 * followed by UTF-16 data.
4663 *
4664 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07004665 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004666 * each table, but in practice there should be far fewer.
4667 *
4668 * The chief reason for using a string table here is to keep the size of
4669 * the DDMS message to a minimum. This is partly to make the protocol
4670 * efficient, but also because we have to form the whole thing up all at
4671 * once in a memory buffer.
4672 *
4673 * We use separate string tables for class names, method names, and source
4674 * files to keep the indexes small. There will generally be no overlap
4675 * between the contents of these tables.
4676 */
4677jbyteArray Dbg::GetRecentAllocations() {
Ian Rogerscf7f1912014-10-22 22:06:39 -07004678 if ((false)) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004679 DumpRecentAllocations();
4680 }
4681
Ian Rogers50b35e22012-10-04 10:09:15 -07004682 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004683 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004684 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004685 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004686 //
4687 // Part 1: generate string tables.
4688 //
4689 StringTable class_names;
4690 StringTable method_names;
4691 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004692
Brian Carlstrom306db812014-09-05 13:01:41 -07004693 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4694 uint16_t count = capped_count;
4695 size_t idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004696 while (count--) {
4697 AllocRecord* record = &recent_allocation_records_[idx];
Ian Rogers1ff3c982014-08-12 02:30:58 -07004698 std::string temp;
4699 class_names.Add(record->Type()->GetDescriptor(&temp));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004700 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004701 mirror::ArtMethod* m = record->StackElement(i)->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004702 if (m != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004703 class_names.Add(m->GetDeclaringClassDescriptor());
4704 method_names.Add(m->GetName());
4705 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004706 }
4707 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004708
Ian Rogers719d1a32014-03-06 12:13:39 -08004709 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004710 }
4711
Brian Carlstrom306db812014-09-05 13:01:41 -07004712 LOG(INFO) << "allocation records: " << capped_count;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004713
4714 //
4715 // Part 2: Generate the output and store it in the buffer.
4716 //
4717
4718 // (1b) message header len (to allow future expansion); includes itself
4719 // (1b) entry header len
4720 // (1b) stack frame len
4721 const int kMessageHeaderLen = 15;
4722 const int kEntryHeaderLen = 9;
4723 const int kStackFrameLen = 8;
4724 JDWP::Append1BE(bytes, kMessageHeaderLen);
4725 JDWP::Append1BE(bytes, kEntryHeaderLen);
4726 JDWP::Append1BE(bytes, kStackFrameLen);
4727
4728 // (2b) number of entries
4729 // (4b) offset to string table from start of message
4730 // (2b) number of class name strings
4731 // (2b) number of method name strings
4732 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07004733 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004734 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004735 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004736 JDWP::Append2BE(bytes, class_names.Size());
4737 JDWP::Append2BE(bytes, method_names.Size());
4738 JDWP::Append2BE(bytes, filenames.Size());
4739
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004740 idx = HeadIndex();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004741 std::string temp;
Brian Carlstrom306db812014-09-05 13:01:41 -07004742 for (count = capped_count; count != 0; --count) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004743 // For each entry:
4744 // (4b) total allocation size
4745 // (2b) thread id
4746 // (2b) allocated object's class name index
4747 // (1b) stack depth
4748 AllocRecord* record = &recent_allocation_records_[idx];
4749 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004750 size_t allocated_object_class_name_index =
Ian Rogers1ff3c982014-08-12 02:30:58 -07004751 class_names.IndexOf(record->Type()->GetDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004752 JDWP::Append4BE(bytes, record->ByteCount());
4753 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004754 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4755 JDWP::Append1BE(bytes, stack_depth);
4756
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004757 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4758 // For each stack frame:
4759 // (2b) method's class name
4760 // (2b) method name
4761 // (2b) method source file
4762 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004763 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004764 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4765 size_t method_name_index = method_names.IndexOf(m->GetName());
4766 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004767 JDWP::Append2BE(bytes, class_name_index);
4768 JDWP::Append2BE(bytes, method_name_index);
4769 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004770 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004771 }
Ian Rogers719d1a32014-03-06 12:13:39 -08004772 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004773 }
4774
4775 // (xb) class name strings
4776 // (xb) method name strings
4777 // (xb) source file strings
4778 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4779 class_names.WriteTo(bytes);
4780 method_names.WriteTo(bytes);
4781 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004782 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004783 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004784 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07004785 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004786 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4787 }
4788 return result;
4789}
4790
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07004791mirror::ArtMethod* DeoptimizationRequest::Method() const {
4792 ScopedObjectAccessUnchecked soa(Thread::Current());
4793 return soa.DecodeMethod(method_);
4794}
4795
4796void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
4797 ScopedObjectAccessUnchecked soa(Thread::Current());
4798 method_ = soa.EncodeMethod(m);
4799}
4800
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004801} // namespace art