blob: d7363d8f0a39cfa0e67012992f410c2616dd7069 [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"
Mathieu Chartierc7853442015-03-27 14:35:38 -070024#include "art_field-inl.h"
Elliott Hughes545a0642011-11-08 19:10:03 -080025#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070027#include "dex_file-inl.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070028#include "dex_instruction.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070029#include "gc/accounting/card_table-inl.h"
30#include "gc/space/large_object_space.h"
31#include "gc/space/space-inl.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070032#include "handle_scope.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080033#include "jdwp/object_registry.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070034#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 Rogers2dd0e2c2013-01-24 12:42:14 -080050#include "utf.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010051#include "verifier/method_verifier-inl.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070052#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070053
Brian Carlstrom3d92d522013-07-12 09:03:08 -070054#ifdef HAVE_ANDROID_OS
55#include "cutils/properties.h"
56#endif
57
Elliott Hughes872d4ec2011-10-21 17:07:15 -070058namespace art {
59
Sebastien Hertz0462c4c2015-04-01 16:34:17 +020060// The key identifying the debugger to update instrumentation.
61static constexpr const char* kDbgInstrumentationKey = "Debugger";
62
Brian Carlstrom7934ac22013-07-26 10:54:15 -070063static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
Brian Carlstrom306db812014-09-05 13:01:41 -070064static const size_t kDefaultNumAllocRecords = 64*1024; // Must be a power of 2. 2BE can hold 64k-1.
65
66// Limit alloc_record_count to the 2BE value that is the limit of the current protocol.
67static uint16_t CappedAllocRecordCount(size_t alloc_record_count) {
68 if (alloc_record_count > 0xffff) {
69 return 0xffff;
70 }
71 return alloc_record_count;
72}
Elliott Hughes475fc232011-10-25 15:00:35 -070073
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070074class AllocRecordStackTraceElement {
75 public:
76 AllocRecordStackTraceElement() : method_(nullptr), dex_pc_(0) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080077 }
78
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070079 int32_t LineNumber() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
80 mirror::ArtMethod* method = Method();
81 DCHECK(method != nullptr);
82 return method->GetLineNumFromDexPC(DexPc());
Elliott Hughes545a0642011-11-08 19:10:03 -080083 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070084
85 mirror::ArtMethod* Method() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -070086 ScopedObjectAccessUnchecked soa(Thread::Current());
87 return soa.DecodeMethod(method_);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070088 }
89
90 void SetMethod(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
91 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4345c462014-06-27 10:20:14 -070092 method_ = soa.EncodeMethod(m);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070093 }
94
95 uint32_t DexPc() const {
96 return dex_pc_;
97 }
98
99 void SetDexPc(uint32_t pc) {
100 dex_pc_ = pc;
101 }
102
103 private:
Mathieu Chartier4345c462014-06-27 10:20:14 -0700104 jmethodID method_;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700105 uint32_t dex_pc_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800106};
107
Mathieu Chartier4345c462014-06-27 10:20:14 -0700108jobject Dbg::TypeCache::Add(mirror::Class* t) {
109 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800110 JNIEnv* const env = soa.Env();
111 ScopedLocalRef<jobject> local_ref(soa.Env(), soa.AddLocalReference<jobject>(t));
112 const int32_t hash_code = soa.Decode<mirror::Class*>(local_ref.get())->IdentityHashCode();
Mathieu Chartier4345c462014-06-27 10:20:14 -0700113 auto range = objects_.equal_range(hash_code);
114 for (auto it = range.first; it != range.second; ++it) {
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800115 if (soa.Decode<mirror::Class*>(it->second) == soa.Decode<mirror::Class*>(local_ref.get())) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700116 // Found a matching weak global, return it.
117 return it->second;
118 }
119 }
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800120 const jobject weak_global = env->NewWeakGlobalRef(local_ref.get());
Mathieu Chartier4345c462014-06-27 10:20:14 -0700121 objects_.insert(std::make_pair(hash_code, weak_global));
122 return weak_global;
123}
124
125void Dbg::TypeCache::Clear() {
Brian Carlstrom306db812014-09-05 13:01:41 -0700126 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
127 Thread* self = Thread::Current();
Mathieu Chartier4345c462014-06-27 10:20:14 -0700128 for (const auto& p : objects_) {
Brian Carlstrom306db812014-09-05 13:01:41 -0700129 vm->DeleteWeakGlobalRef(self, p.second);
Mathieu Chartier4345c462014-06-27 10:20:14 -0700130 }
131 objects_.clear();
132}
133
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700134class AllocRecord {
135 public:
136 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -0800137
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700138 mirror::Class* Type() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700139 return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700140 }
141
Brian Carlstrom306db812014-09-05 13:01:41 -0700142 void SetType(mirror::Class* t) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
143 Locks::alloc_tracker_lock_) {
144 type_ = Dbg::type_cache_.Add(t);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700145 }
146
147 size_t GetDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800148 size_t depth = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -0700149 while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800150 ++depth;
151 }
152 return depth;
153 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800154
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700155 size_t ByteCount() const {
156 return byte_count_;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800157 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700158
159 void SetByteCount(size_t count) {
160 byte_count_ = count;
161 }
162
163 uint16_t ThinLockId() const {
164 return thin_lock_id_;
165 }
166
167 void SetThinLockId(uint16_t id) {
168 thin_lock_id_ = id;
169 }
170
171 AllocRecordStackTraceElement* StackElement(size_t index) {
172 DCHECK_LT(index, kMaxAllocRecordStackDepth);
173 return &stack_[index];
174 }
175
176 private:
177 jobject type_; // This is a weak global.
178 size_t byte_count_;
179 uint16_t thin_lock_id_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700180 // Unused entries have null method.
181 AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth];
Elliott Hughes545a0642011-11-08 19:10:03 -0800182};
183
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700184class Breakpoint {
185 public:
Sebastien Hertzf3928792014-11-17 19:00:37 +0100186 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc,
187 DeoptimizationRequest::Kind deoptimization_kind)
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700188 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertzf3928792014-11-17 19:00:37 +0100189 : method_(nullptr), dex_pc_(dex_pc), deoptimization_kind_(deoptimization_kind) {
190 CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing ||
191 deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization ||
192 deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700193 ScopedObjectAccessUnchecked soa(Thread::Current());
194 method_ = soa.EncodeMethod(method);
195 }
196
197 Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
198 : method_(nullptr), dex_pc_(other.dex_pc_),
Sebastien Hertzf3928792014-11-17 19:00:37 +0100199 deoptimization_kind_(other.deoptimization_kind_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700200 ScopedObjectAccessUnchecked soa(Thread::Current());
201 method_ = soa.EncodeMethod(other.Method());
202 }
203
204 mirror::ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
205 ScopedObjectAccessUnchecked soa(Thread::Current());
206 return soa.DecodeMethod(method_);
207 }
208
209 uint32_t DexPc() const {
210 return dex_pc_;
211 }
212
Sebastien Hertzf3928792014-11-17 19:00:37 +0100213 DeoptimizationRequest::Kind GetDeoptimizationKind() const {
214 return deoptimization_kind_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700215 }
216
217 private:
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100218 // The location of this breakpoint.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700219 jmethodID method_;
220 uint32_t dex_pc_;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100221
222 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
Sebastien Hertzf3928792014-11-17 19:00:37 +0100223 DeoptimizationRequest::Kind deoptimization_kind_;
Elliott Hughes86964332012-02-15 19:37:42 -0800224};
225
Sebastien Hertzed2be172014-08-19 15:33:43 +0200226static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700227 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700228 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
Elliott Hughes86964332012-02-15 19:37:42 -0800229 return os;
230}
231
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200232class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800233 public:
234 DebugInstrumentationListener() {}
235 virtual ~DebugInstrumentationListener() {}
236
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200237 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700238 uint32_t dex_pc ATTRIBUTE_UNUSED)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200239 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800240 if (method->IsNative()) {
241 // TODO: post location events is a suspension point and native method entry stubs aren't.
242 return;
243 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100244 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800245 }
246
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200247 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
248 uint32_t dex_pc, const JValue& return_value)
249 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800250 if (method->IsNative()) {
251 // TODO: post location events is a suspension point and native method entry stubs aren't.
252 return;
253 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100254 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800255 }
256
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200257 void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
258 uint32_t dex_pc)
259 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800260 // We're not recorded to listen to this kind of event, so complain.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700261 UNUSED(thread, this_object, method, dex_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800262 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100263 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800264 }
265
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200266 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
267 uint32_t new_dex_pc)
268 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz8379b222014-02-24 17:38:15 +0100269 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800270 }
271
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200272 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700273 uint32_t dex_pc, ArtField* field)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200274 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700275 UNUSED(thread);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200276 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800277 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200278
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700279 void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700280 mirror::ArtMethod* method, uint32_t dex_pc, ArtField* field,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700281 const JValue& field_value)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200282 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
283 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
284 }
285
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000286 void ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED, mirror::Throwable* exception_object)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200287 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000288 Dbg::PostException(exception_object);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200289 }
290
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800291 // We only care about how many backward branches were executed in the Jit.
292 void BackwardBranch(Thread* /*thread*/, mirror::ArtMethod* method, int32_t dex_pc_offset)
293 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
294 LOG(ERROR) << "Unexpected backward branch event in debugger " << PrettyMethod(method)
295 << " " << dex_pc_offset;
296 }
297
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200298 private:
299 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800300} gDebugInstrumentationListener;
301
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700302// JDWP is allowed unless the Zygote forbids it.
303static bool gJdwpAllowed = true;
304
Elliott Hughesc0f09332012-03-26 13:27:06 -0700305// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700306static bool gJdwpConfigured = false;
307
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100308// JDWP options for debugging. Only valid if IsJdwpConfigured() is true.
309static JDWP::JdwpOptions gJdwpOptions;
310
Elliott Hughes3bb81562011-10-21 18:52:59 -0700311// Runtime JDWP state.
Ian Rogersc0542af2014-09-03 16:16:56 -0700312static JDWP::JdwpState* gJdwpState = nullptr;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700313static bool gDebuggerConnected; // debugger or DDMS is connected.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700314
Elliott Hughes47fce012011-10-25 18:37:19 -0700315static bool gDdmThreadNotification = false;
316
Elliott Hughes767a1472011-10-26 18:49:02 -0700317// DDMS GC-related settings.
318static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
319static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
320static Dbg::HpsgWhat gDdmHpsgWhat;
321static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
322static Dbg::HpsgWhat gDdmNhsgWhat;
323
Daniel Mihalyieb076692014-08-22 17:33:31 +0200324bool Dbg::gDebuggerActive = false;
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100325bool Dbg::gDisposed = false;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200326ObjectRegistry* Dbg::gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700327
Elliott Hughes545a0642011-11-08 19:10:03 -0800328// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800329AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
330size_t Dbg::alloc_record_max_ = 0;
331size_t Dbg::alloc_record_head_ = 0;
332size_t Dbg::alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -0700333Dbg::TypeCache Dbg::type_cache_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800334
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100335// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100336std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
337size_t Dbg::full_deoptimization_event_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 Chartierbb87e0f2015-04-03 11:21:55 -0700351void DebugInvokeReq::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
352 receiver.VisitRootIfNonNull(visitor, root_info); // null for static method call.
353 klass.VisitRoot(visitor, root_info);
354 method.VisitRoot(visitor, root_info);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200355}
356
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700357void SingleStepControl::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
358 visitor->VisitRootIfNonNull(reinterpret_cast<mirror::Object**>(&method_), root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700359}
360
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100361void SingleStepControl::AddDexPc(uint32_t dex_pc) {
362 dex_pcs_.insert(dex_pc);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200363}
364
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100365bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
366 return dex_pcs_.find(dex_pc) == dex_pcs_.end();
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200367}
368
Brian Carlstromea46f952013-07-30 01:26:50 -0700369static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800370 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700371 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzed2be172014-08-19 15:33:43 +0200372 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100373 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700374 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
Elliott Hughes86964332012-02-15 19:37:42 -0800375 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
376 return true;
377 }
378 }
379 return false;
380}
381
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100382static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
383 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800384 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
385 // A thread may be suspended for GC; in this code, we really want to know whether
386 // there's a debugger suspension active.
387 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
388}
389
Ian Rogersc0542af2014-09-03 16:16:56 -0700390static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700391 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200392 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700393 if (o == nullptr) {
394 *error = JDWP::ERR_INVALID_OBJECT;
395 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800396 }
397 if (!o->IsArrayInstance()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700398 *error = JDWP::ERR_INVALID_ARRAY;
399 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800400 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700401 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800402 return o->AsArray();
403}
404
Ian Rogersc0542af2014-09-03 16:16:56 -0700405static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700406 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200407 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700408 if (o == nullptr) {
409 *error = JDWP::ERR_INVALID_OBJECT;
410 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800411 }
412 if (!o->IsClass()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700413 *error = JDWP::ERR_INVALID_CLASS;
414 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800415 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700416 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800417 return o->AsClass();
418}
419
Ian Rogersc0542af2014-09-03 16:16:56 -0700420static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
421 JDWP::JdwpError* error)
Sebastien Hertz69206392015-04-07 15:54:25 +0200422 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
423 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::thread_suspend_count_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200424 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700425 if (thread_peer == nullptr) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800426 // This isn't even an object.
Ian Rogersc0542af2014-09-03 16:16:56 -0700427 *error = JDWP::ERR_INVALID_OBJECT;
428 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800429 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800430
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800431 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800432 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
433 // This isn't a thread.
Ian Rogersc0542af2014-09-03 16:16:56 -0700434 *error = JDWP::ERR_INVALID_THREAD;
435 return nullptr;
Elliott Hughes221229c2013-01-08 18:17:50 -0800436 }
437
Sebastien Hertz69206392015-04-07 15:54:25 +0200438 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700439 Thread* thread = Thread::FromManagedThread(soa, thread_peer);
440 // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a
441 // zombie.
442 *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE;
443 return thread;
Elliott Hughes436e3722012-02-17 20:01:47 -0800444}
445
Elliott Hughes24437992011-11-30 14:49:33 -0800446static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
447 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
448 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
449 return static_cast<JDWP::JdwpTag>(descriptor[0]);
450}
451
Ian Rogers1ff3c982014-08-12 02:30:58 -0700452static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
453 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
454 std::string temp;
455 const char* descriptor = klass->GetDescriptor(&temp);
456 return BasicTagFromDescriptor(descriptor);
457}
458
Ian Rogers98379392014-02-24 16:53:16 -0800459static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700460 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700461 CHECK(c != nullptr);
Elliott Hughes24437992011-11-30 14:49:33 -0800462 if (c->IsArrayClass()) {
463 return JDWP::JT_ARRAY;
464 }
Elliott Hughes24437992011-11-30 14:49:33 -0800465 if (c->IsStringClass()) {
466 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800467 }
Ian Rogers98379392014-02-24 16:53:16 -0800468 if (c->IsClassClass()) {
469 return JDWP::JT_CLASS_OBJECT;
470 }
471 {
472 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
473 if (thread_class->IsAssignableFrom(c)) {
474 return JDWP::JT_THREAD;
475 }
476 }
477 {
478 mirror::Class* thread_group_class =
479 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
480 if (thread_group_class->IsAssignableFrom(c)) {
481 return JDWP::JT_THREAD_GROUP;
482 }
483 }
484 {
485 mirror::Class* class_loader_class =
486 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
487 if (class_loader_class->IsAssignableFrom(c)) {
488 return JDWP::JT_CLASS_LOADER;
489 }
490 }
491 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800492}
493
494/*
495 * Objects declared to hold Object might actually hold a more specific
496 * type. The debugger may take a special interest in these (e.g. it
497 * wants to display the contents of Strings), so we want to return an
498 * appropriate tag.
499 *
500 * Null objects are tagged JT_OBJECT.
501 */
Sebastien Hertz6995c602014-09-09 12:10:13 +0200502JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700503 return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800504}
505
506static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
507 switch (tag) {
508 case JDWP::JT_BOOLEAN:
509 case JDWP::JT_BYTE:
510 case JDWP::JT_CHAR:
511 case JDWP::JT_FLOAT:
512 case JDWP::JT_DOUBLE:
513 case JDWP::JT_INT:
514 case JDWP::JT_LONG:
515 case JDWP::JT_SHORT:
516 case JDWP::JT_VOID:
517 return true;
518 default:
519 return false;
520 }
521}
522
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100523void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700524 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700525 // No JDWP for you!
526 return;
527 }
528
Ian Rogers719d1a32014-03-06 12:13:39 -0800529 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700530 gRegistry = new ObjectRegistry;
531
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700532 // Init JDWP if the debugger is enabled. This may connect out to a
533 // debugger, passively listen for a debugger, or block waiting for a
534 // debugger.
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100535 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
Ian Rogersc0542af2014-09-03 16:16:56 -0700536 if (gJdwpState == nullptr) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800537 // We probably failed because some other process has the port already, which means that
538 // if we don't abort the user is likely to think they're talking to us when they're actually
539 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800540 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700541 }
542
543 // If a debugger has already attached, send the "welcome" message.
544 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700545 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700546 ScopedObjectAccess soa(Thread::Current());
Sebastien Hertz7d955652014-10-22 10:57:10 +0200547 gJdwpState->PostVMStart();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700548 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700549}
550
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700551void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200552 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
553 // destruction of gJdwpState).
554 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
555 gJdwpState->PostVMDeath();
556 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100557 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100558 Dispose();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700559 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800560 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700561 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800562 gRegistry = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700563}
564
Elliott Hughes767a1472011-10-26 18:49:02 -0700565void Dbg::GcDidFinish() {
566 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700567 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700568 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700569 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700570 }
571 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700572 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700573 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700574 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700575 }
576 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700577 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700578 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700579 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700580 }
581}
582
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700583void Dbg::SetJdwpAllowed(bool allowed) {
584 gJdwpAllowed = allowed;
585}
586
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700587DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700588 return Thread::Current()->GetInvokeReq();
589}
590
591Thread* Dbg::GetDebugThread() {
Ian Rogersc0542af2014-09-03 16:16:56 -0700592 return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700593}
594
595void Dbg::ClearWaitForEventThread() {
Sebastien Hertz2bf93f42015-01-09 18:44:05 +0100596 gJdwpState->ReleaseJdwpTokenForEvent();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700597}
598
599void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700600 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800601 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700602 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800603 gDisposed = false;
604}
605
Sebastien Hertzf3928792014-11-17 19:00:37 +0100606bool Dbg::RequiresDeoptimization() {
607 // We don't need deoptimization if everything runs with interpreter after
608 // enabling -Xint mode.
609 return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly();
610}
611
Elliott Hughesa2155262011-11-16 16:26:58 -0800612void Dbg::GoActive() {
613 // Enable all debugging features, including scans for breakpoints.
614 // This is a no-op if we're already active.
615 // Only called from the JDWP handler thread.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200616 if (IsDebuggerActive()) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800617 return;
618 }
619
Elliott Hughesc0f09332012-03-26 13:27:06 -0700620 {
621 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Sebastien Hertzed2be172014-08-19 15:33:43 +0200622 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700623 CHECK_EQ(gBreakpoints.size(), 0U);
624 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800625
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100626 {
Brian Carlstrom306db812014-09-05 13:01:41 -0700627 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100628 CHECK_EQ(deoptimization_requests_.size(), 0U);
629 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200630 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
631 CHECK_EQ(method_enter_event_ref_count_, 0U);
632 CHECK_EQ(method_exit_event_ref_count_, 0U);
633 CHECK_EQ(field_read_event_ref_count_, 0U);
634 CHECK_EQ(field_write_event_ref_count_, 0U);
635 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100636 }
637
Ian Rogers62d6c772013-02-27 08:32:07 -0800638 Runtime* runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700639 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800640 Thread* self = Thread::Current();
641 ThreadState old_state = self->SetStateUnsafe(kRunnable);
642 CHECK_NE(old_state, kRunnable);
Sebastien Hertzf3928792014-11-17 19:00:37 +0100643 if (RequiresDeoptimization()) {
644 runtime->GetInstrumentation()->EnableDeoptimization();
645 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200646 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800647 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800648 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
649 runtime->GetThreadList()->ResumeAll();
650
651 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700652}
653
654void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700655 CHECK(gDebuggerConnected);
656
Elliott Hughesc0f09332012-03-26 13:27:06 -0700657 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700658
Ian Rogers62d6c772013-02-27 08:32:07 -0800659 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
660 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
661 // and clear the object registry.
662 Runtime* runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700663 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800664 Thread* self = Thread::Current();
665 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100666
667 // Debugger may not be active at this point.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200668 if (IsDebuggerActive()) {
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100669 {
670 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
671 // This prevents us from having any pending deoptimization request when the debugger attaches
672 // to us again while no event has been requested yet.
Brian Carlstrom306db812014-09-05 13:01:41 -0700673 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100674 deoptimization_requests_.clear();
675 full_deoptimization_event_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100676 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200677 if (instrumentation_events_ != 0) {
678 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
679 instrumentation_events_);
680 instrumentation_events_ = 0;
681 }
Sebastien Hertzf3928792014-11-17 19:00:37 +0100682 if (RequiresDeoptimization()) {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200683 runtime->GetInstrumentation()->DisableDeoptimization(kDbgInstrumentationKey);
Sebastien Hertzf3928792014-11-17 19:00:37 +0100684 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100685 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100686 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800687 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
688 runtime->GetThreadList()->ResumeAll();
Sebastien Hertz55f65342015-01-13 22:48:34 +0100689
690 {
691 ScopedObjectAccess soa(self);
692 gRegistry->Clear();
693 }
694
695 gDebuggerConnected = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700696}
697
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100698void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) {
699 CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown);
700 gJdwpOptions = jdwp_options;
701 gJdwpConfigured = true;
702}
703
Elliott Hughesc0f09332012-03-26 13:27:06 -0700704bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700705 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700706}
707
708int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800709 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700710}
711
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700712void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700713 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700714}
715
Elliott Hughes88d63092013-01-09 09:55:54 -0800716std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700717 JDWP::JdwpError error;
718 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error);
719 if (o == nullptr) {
720 if (error == JDWP::ERR_NONE) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700721 return "null";
Ian Rogersc0542af2014-09-03 16:16:56 -0700722 } else {
723 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
724 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800725 }
726 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700727 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800728 }
Sebastien Hertz6995c602014-09-09 12:10:13 +0200729 return GetClassName(o->AsClass());
730}
731
732std::string Dbg::GetClassName(mirror::Class* klass) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200733 if (klass == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700734 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200735 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700736 std::string temp;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200737 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700738}
739
Ian Rogersc0542af2014-09-03 16:16:56 -0700740JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800741 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700742 mirror::Class* c = DecodeClass(id, &status);
743 if (c == nullptr) {
744 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800745 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800746 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700747 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800748 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800749}
750
Ian Rogersc0542af2014-09-03 16:16:56 -0700751JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800752 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700753 mirror::Class* c = DecodeClass(id, &status);
754 if (c == nullptr) {
755 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800756 return status;
757 }
758 if (c->IsInterface()) {
759 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700760 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800761 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700762 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800763 }
764 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700765}
766
Elliott Hughes436e3722012-02-17 20:01:47 -0800767JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700768 JDWP::JdwpError error;
769 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
770 if (o == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800771 return JDWP::ERR_INVALID_OBJECT;
772 }
773 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
774 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700775}
776
Elliott Hughes436e3722012-02-17 20:01:47 -0800777JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700778 JDWP::JdwpError error;
779 mirror::Class* c = DecodeClass(id, &error);
780 if (c == nullptr) {
781 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800782 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800783
784 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
785
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700786 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
787 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800788 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700789 if ((access_flags & kAccInterface) == 0) {
790 access_flags |= kAccSuper;
791 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800792
793 expandBufAdd4BE(pReply, access_flags);
794
795 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700796}
797
Ian Rogersc0542af2014-09-03 16:16:56 -0700798JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
799 JDWP::JdwpError error;
800 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
801 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800802 return JDWP::ERR_INVALID_OBJECT;
803 }
804
805 // Ensure all threads are suspended while we read objects' lock words.
806 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100807 CHECK_EQ(self->GetState(), kRunnable);
808 self->TransitionFromRunnableToSuspended(kSuspended);
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700809 Runtime::Current()->GetThreadList()->SuspendAll(__FUNCTION__);
Elliott Hughesf327e072013-01-09 16:01:26 -0800810
811 MonitorInfo monitor_info(o);
812
Sebastien Hertz54263242014-03-19 18:16:50 +0100813 Runtime::Current()->GetThreadList()->ResumeAll();
814 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800815
Ian Rogersc0542af2014-09-03 16:16:56 -0700816 if (monitor_info.owner_ != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700817 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800818 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700819 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800820 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700821 expandBufAdd4BE(reply, monitor_info.entry_count_);
822 expandBufAdd4BE(reply, monitor_info.waiters_.size());
823 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
824 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800825 }
826 return JDWP::ERR_NONE;
827}
828
Elliott Hughes734b8c62013-01-11 15:32:45 -0800829JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700830 std::vector<JDWP::ObjectId>* monitors,
831 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800832 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700833 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700834 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700835 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800836 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700837 : StackVisitor(thread, context), current_stack_depth(0),
838 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800839
840 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
841 // annotalysis.
842 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
843 if (!GetMethod()->IsRuntimeMethod()) {
844 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800845 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800846 }
847 return true;
848 }
849
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700850 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
851 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800852 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700853 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700854 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800855 }
856
Elliott Hughes734b8c62013-01-11 15:32:45 -0800857 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700858 std::vector<JDWP::ObjectId>* const monitors;
859 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800860 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800861
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700862 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +0200863 JDWP::JdwpError error;
864 Thread* thread = DecodeThread(soa, thread_id, &error);
865 if (thread == nullptr) {
866 return error;
867 }
868 if (!IsSuspendedForDebugger(soa, thread)) {
869 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700870 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700871 std::unique_ptr<Context> context(Context::Create());
Ian Rogersc0542af2014-09-03 16:16:56 -0700872 OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700873 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800874 return JDWP::ERR_NONE;
875}
876
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100877JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700878 JDWP::ObjectId* contended_monitor) {
Elliott Hughesf9501702013-01-11 11:22:27 -0800879 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -0700880 *contended_monitor = 0;
Sebastien Hertz69206392015-04-07 15:54:25 +0200881 JDWP::JdwpError error;
882 Thread* thread = DecodeThread(soa, thread_id, &error);
883 if (thread == nullptr) {
884 return error;
Elliott Hughesf9501702013-01-11 11:22:27 -0800885 }
Sebastien Hertz69206392015-04-07 15:54:25 +0200886 if (!IsSuspendedForDebugger(soa, thread)) {
887 return JDWP::ERR_THREAD_NOT_SUSPENDED;
888 }
889 mirror::Object* contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700890 // Add() requires the thread_list_lock_ not held to avoid the lock
891 // level violation.
Ian Rogersc0542af2014-09-03 16:16:56 -0700892 *contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -0800893 return JDWP::ERR_NONE;
894}
895
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800896JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -0700897 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800898 gc::Heap* heap = Runtime::Current()->GetHeap();
899 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800900 std::vector<mirror::Class*> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700901 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800902 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700903 JDWP::JdwpError error;
904 mirror::Class* c = DecodeClass(class_ids[i], &error);
905 if (c == nullptr) {
906 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800907 }
908 classes.push_back(c);
Ian Rogersc0542af2014-09-03 16:16:56 -0700909 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800910 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700911 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800912 return JDWP::ERR_NONE;
913}
914
Ian Rogersc0542af2014-09-03 16:16:56 -0700915JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
916 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800917 gc::Heap* heap = Runtime::Current()->GetHeap();
918 // We only want reachable instances, so do a GC.
919 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700920 JDWP::JdwpError error;
921 mirror::Class* c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800922 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700923 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800924 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800925 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800926 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
927 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700928 instances->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes3b78c942013-01-15 17:35:41 -0800929 }
930 return JDWP::ERR_NONE;
931}
932
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800933JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700934 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800935 gc::Heap* heap = Runtime::Current()->GetHeap();
936 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700937 JDWP::JdwpError error;
938 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
939 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800940 return JDWP::ERR_INVALID_OBJECT;
941 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800942 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800943 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800944 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700945 referring_objects->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800946 }
947 return JDWP::ERR_NONE;
948}
949
Ian Rogersc0542af2014-09-03 16:16:56 -0700950JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
951 JDWP::JdwpError error;
952 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
953 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100954 return JDWP::ERR_INVALID_OBJECT;
955 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800956 gRegistry->DisableCollection(object_id);
957 return JDWP::ERR_NONE;
958}
959
Ian Rogersc0542af2014-09-03 16:16:56 -0700960JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
961 JDWP::JdwpError error;
962 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +0100963 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
964 // also ignores these cases and never return an error. However it's not obvious why this command
965 // should behave differently from DisableCollection and IsCollected commands. So let's be more
966 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -0700967 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100968 return JDWP::ERR_INVALID_OBJECT;
969 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800970 gRegistry->EnableCollection(object_id);
971 return JDWP::ERR_NONE;
972}
973
Ian Rogersc0542af2014-09-03 16:16:56 -0700974JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
975 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100976 if (object_id == 0) {
977 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +0100978 return JDWP::ERR_INVALID_OBJECT;
979 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100980 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
981 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -0700982 JDWP::JdwpError error;
983 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
984 if (o != nullptr) {
985 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100986 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800987 return JDWP::ERR_NONE;
988}
989
Ian Rogersc0542af2014-09-03 16:16:56 -0700990void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -0800991 gRegistry->DisposeObject(object_id, reference_count);
992}
993
Sebastien Hertz6995c602014-09-09 12:10:13 +0200994JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +0100995 DCHECK(klass != nullptr);
996 if (klass->IsArrayClass()) {
997 return JDWP::TT_ARRAY;
998 } else if (klass->IsInterface()) {
999 return JDWP::TT_INTERFACE;
1000 } else {
1001 return JDWP::TT_CLASS;
1002 }
1003}
1004
Elliott Hughes88d63092013-01-09 09:55:54 -08001005JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001006 JDWP::JdwpError error;
1007 mirror::Class* c = DecodeClass(class_id, &error);
1008 if (c == nullptr) {
1009 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001010 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001011
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001012 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1013 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001014 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001015 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001016}
1017
Ian Rogersc0542af2014-09-03 16:16:56 -07001018void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001019 // Get the complete list of reference classes (i.e. all classes except
1020 // the primitive types).
1021 // Returns a newly-allocated buffer full of RefTypeId values.
1022 struct ClassListCreator {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001023 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes_in) : classes(classes_in) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001024 }
1025
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001026 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001027 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1028 }
1029
Elliott Hughes64f574f2013-02-20 14:57:12 -08001030 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1031 // annotalysis.
1032 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001033 if (!c->IsPrimitive()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001034 classes->push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001035 }
1036 return true;
1037 }
1038
Ian Rogersc0542af2014-09-03 16:16:56 -07001039 std::vector<JDWP::RefTypeId>* const classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001040 };
1041
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001042 ClassListCreator clc(classes);
Sebastien Hertz4537c412014-08-28 14:41:50 +02001043 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(ClassListCreator::Visit,
1044 &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001045}
1046
Ian Rogers1ff3c982014-08-12 02:30:58 -07001047JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1048 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001049 JDWP::JdwpError error;
1050 mirror::Class* c = DecodeClass(class_id, &error);
1051 if (c == nullptr) {
1052 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001053 }
1054
Elliott Hughesa2155262011-11-16 16:26:58 -08001055 if (c->IsArrayClass()) {
1056 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1057 *pTypeTag = JDWP::TT_ARRAY;
1058 } else {
1059 if (c->IsErroneous()) {
1060 *pStatus = JDWP::CS_ERROR;
1061 } else {
1062 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1063 }
1064 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1065 }
1066
Ian Rogersc0542af2014-09-03 16:16:56 -07001067 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001068 std::string temp;
1069 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001070 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001071 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001072}
1073
Ian Rogersc0542af2014-09-03 16:16:56 -07001074void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001075 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001076 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001077 ids->clear();
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001078 for (size_t i = 0; i < classes.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001079 ids->push_back(gRegistry->Add(classes[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001080 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001081}
1082
Ian Rogersc0542af2014-09-03 16:16:56 -07001083JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1084 JDWP::JdwpError error;
1085 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1086 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001087 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001088 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001089
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001090 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001091 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001092
1093 expandBufAdd1(pReply, type_tag);
1094 expandBufAddRefTypeId(pReply, type_id);
1095
1096 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001097}
1098
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001099JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001100 JDWP::JdwpError error;
1101 mirror::Class* c = DecodeClass(class_id, &error);
1102 if (c == nullptr) {
1103 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001104 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001105 std::string temp;
1106 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001107 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001108}
1109
Ian Rogersc0542af2014-09-03 16:16:56 -07001110JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1111 JDWP::JdwpError error;
1112 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001113 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001114 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001115 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001116 const char* source_file = c->GetSourceFile();
1117 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001118 return JDWP::ERR_ABSENT_INFORMATION;
1119 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001120 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001121 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001122}
1123
Ian Rogersc0542af2014-09-03 16:16:56 -07001124JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001125 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001126 JDWP::JdwpError error;
1127 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1128 if (error != JDWP::ERR_NONE) {
1129 *tag = JDWP::JT_VOID;
1130 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001131 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001132 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001133 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001134}
1135
Elliott Hughesaed4be92011-12-02 16:16:23 -08001136size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001137 switch (tag) {
1138 case JDWP::JT_VOID:
1139 return 0;
1140 case JDWP::JT_BYTE:
1141 case JDWP::JT_BOOLEAN:
1142 return 1;
1143 case JDWP::JT_CHAR:
1144 case JDWP::JT_SHORT:
1145 return 2;
1146 case JDWP::JT_FLOAT:
1147 case JDWP::JT_INT:
1148 return 4;
1149 case JDWP::JT_ARRAY:
1150 case JDWP::JT_OBJECT:
1151 case JDWP::JT_STRING:
1152 case JDWP::JT_THREAD:
1153 case JDWP::JT_THREAD_GROUP:
1154 case JDWP::JT_CLASS_LOADER:
1155 case JDWP::JT_CLASS_OBJECT:
1156 return sizeof(JDWP::ObjectId);
1157 case JDWP::JT_DOUBLE:
1158 case JDWP::JT_LONG:
1159 return 8;
1160 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001161 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001162 return -1;
1163 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001164}
1165
Ian Rogersc0542af2014-09-03 16:16:56 -07001166JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1167 JDWP::JdwpError error;
1168 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1169 if (a == nullptr) {
1170 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001171 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001172 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001173 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001174}
1175
Elliott Hughes88d63092013-01-09 09:55:54 -08001176JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001177 JDWP::JdwpError error;
1178 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001179 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001180 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001181 }
Elliott Hughes24437992011-11-30 14:49:33 -08001182
1183 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1184 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001185 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001186 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001187 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1188 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001189 expandBufAdd4BE(pReply, count);
1190
Ian Rogers1ff3c982014-08-12 02:30:58 -07001191 if (IsPrimitiveTag(element_tag)) {
1192 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001193 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1194 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001195 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001196 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1197 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001198 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001199 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1200 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001201 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001202 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1203 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001204 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001205 memcpy(dst, &src[offset * width], count * width);
1206 }
1207 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001208 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001209 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001210 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001211 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001212 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001213 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001214 expandBufAdd1(pReply, specific_tag);
1215 expandBufAddObjectId(pReply, gRegistry->Add(element));
1216 }
1217 }
1218
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001219 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001220}
1221
Ian Rogersef7d42f2014-01-06 12:55:46 -08001222template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001223static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001224 NO_THREAD_SAFETY_ANALYSIS {
1225 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001226 DCHECK(a->GetClass()->IsPrimitiveArray());
1227
Ian Rogersef7d42f2014-01-06 12:55:46 -08001228 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001229 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001230 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001231 }
1232}
1233
Elliott Hughes88d63092013-01-09 09:55:54 -08001234JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001235 JDWP::Request* request) {
1236 JDWP::JdwpError error;
1237 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1238 if (dst == nullptr) {
1239 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001240 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001241
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001242 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001243 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001244 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001245 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001246 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001247
Ian Rogers1ff3c982014-08-12 02:30:58 -07001248 if (IsPrimitiveTag(element_tag)) {
1249 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001250 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001251 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001252 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001253 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001254 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001255 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001256 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001257 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001258 }
1259 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001260 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001261 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001262 JDWP::ObjectId id = request->ReadObjectId();
Ian Rogersc0542af2014-09-03 16:16:56 -07001263 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1264 if (error != JDWP::ERR_NONE) {
1265 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001266 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001267 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001268 }
1269 }
1270
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001271 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001272}
1273
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001274JDWP::JdwpError Dbg::CreateString(const std::string& str, JDWP::ObjectId* new_string_id) {
1275 Thread* self = Thread::Current();
1276 mirror::String* new_string = mirror::String::AllocFromModifiedUtf8(self, str.c_str());
1277 if (new_string == nullptr) {
1278 DCHECK(self->IsExceptionPending());
1279 self->ClearException();
1280 LOG(ERROR) << "Could not allocate string";
1281 *new_string_id = 0;
1282 return JDWP::ERR_OUT_OF_MEMORY;
1283 }
1284 *new_string_id = gRegistry->Add(new_string);
1285 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001286}
1287
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001288JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001289 JDWP::JdwpError error;
1290 mirror::Class* c = DecodeClass(class_id, &error);
1291 if (c == nullptr) {
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001292 *new_object_id = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -07001293 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001294 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001295 Thread* self = Thread::Current();
1296 mirror::Object* new_object = c->AllocObject(self);
1297 if (new_object == nullptr) {
1298 DCHECK(self->IsExceptionPending());
1299 self->ClearException();
1300 LOG(ERROR) << "Could not allocate object of type " << PrettyDescriptor(c);
1301 *new_object_id = 0;
1302 return JDWP::ERR_OUT_OF_MEMORY;
1303 }
1304 *new_object_id = gRegistry->Add(new_object);
Elliott Hughes436e3722012-02-17 20:01:47 -08001305 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001306}
1307
Elliott Hughesbf13d362011-12-08 15:51:37 -08001308/*
1309 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1310 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001311JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001312 JDWP::ObjectId* new_array_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001313 JDWP::JdwpError error;
1314 mirror::Class* c = DecodeClass(array_class_id, &error);
1315 if (c == nullptr) {
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001316 *new_array_id = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -07001317 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001318 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001319 Thread* self = Thread::Current();
1320 gc::Heap* heap = Runtime::Current()->GetHeap();
1321 mirror::Array* new_array = mirror::Array::Alloc<true>(self, c, length,
1322 c->GetComponentSizeShift(),
1323 heap->GetCurrentAllocator());
1324 if (new_array == nullptr) {
1325 DCHECK(self->IsExceptionPending());
1326 self->ClearException();
1327 LOG(ERROR) << "Could not allocate array of type " << PrettyDescriptor(c);
1328 *new_array_id = 0;
1329 return JDWP::ERR_OUT_OF_MEMORY;
1330 }
1331 *new_array_id = gRegistry->Add(new_array);
Elliott Hughes436e3722012-02-17 20:01:47 -08001332 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001333}
1334
Mathieu Chartierc7853442015-03-27 14:35:38 -07001335JDWP::FieldId Dbg::ToFieldId(const ArtField* f) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001336 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001337}
1338
Brian Carlstromea46f952013-07-30 01:26:50 -07001339static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001340 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001341 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001342 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001343}
1344
Mathieu Chartierc7853442015-03-27 14:35:38 -07001345static ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001346 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001347 return reinterpret_cast<ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001348}
1349
Brian Carlstromea46f952013-07-30 01:26:50 -07001350static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001351 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001352 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001353 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001354}
1355
Sebastien Hertz6995c602014-09-09 12:10:13 +02001356bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1357 CHECK(event_thread != nullptr);
1358 JDWP::JdwpError error;
1359 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(expected_thread_id,
1360 &error);
1361 return expected_thread_peer == event_thread->GetPeer();
1362}
1363
1364bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1365 const JDWP::EventLocation& event_location) {
1366 if (expected_location.dex_pc != event_location.dex_pc) {
1367 return false;
1368 }
1369 mirror::ArtMethod* m = FromMethodId(expected_location.method_id);
1370 return m == event_location.method;
1371}
1372
1373bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001374 if (event_class == nullptr) {
1375 return false;
1376 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02001377 JDWP::JdwpError error;
1378 mirror::Class* expected_class = DecodeClass(class_id, &error);
1379 CHECK(expected_class != nullptr);
1380 return expected_class->IsAssignableFrom(event_class);
1381}
1382
1383bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001384 ArtField* event_field) {
1385 ArtField* expected_field = FromFieldId(expected_field_id);
Sebastien Hertz6995c602014-09-09 12:10:13 +02001386 if (expected_field != event_field) {
1387 return false;
1388 }
1389 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1390}
1391
1392bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1393 JDWP::JdwpError error;
1394 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error);
1395 return modifier_instance == event_instance;
1396}
1397
1398void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
Sebastien Hertz69206392015-04-07 15:54:25 +02001399 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1400 LOCKS_EXCLUDED(Locks::thread_list_lock_,
1401 Locks::thread_suspend_count_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001402 if (m == nullptr) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001403 memset(location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001404 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001405 mirror::Class* c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001406 location->type_tag = GetTypeTag(c);
1407 location->class_id = gRegistry->AddRefType(c);
1408 location->method_id = ToMethodId(m);
1409 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001410 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001411}
1412
Ian Rogersc0542af2014-09-03 16:16:56 -07001413std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001414 mirror::ArtMethod* m = FromMethodId(method_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001415 if (m == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001416 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001417 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001418 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001419}
1420
Ian Rogersc0542af2014-09-03 16:16:56 -07001421std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001422 ArtField* f = FromFieldId(field_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001423 if (f == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001424 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001425 }
1426 return f->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001427}
1428
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001429/*
1430 * Augment the access flags for synthetic methods and fields by setting
1431 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1432 * flags not specified by the Java programming language.
1433 */
1434static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1435 accessFlags &= kAccJavaFlagsMask;
1436 if ((accessFlags & kAccSynthetic) != 0) {
1437 accessFlags |= 0xf0000000;
1438 }
1439 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001440}
1441
Elliott Hughesdbb40792011-11-18 17:05:22 -08001442/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001443 * Circularly shifts registers so that arguments come first. Debuggers
1444 * expect slots to begin with arguments, but dex code places them at
1445 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001446 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001447static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1448 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001449 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001450 if (code_item == nullptr) {
1451 // We should not get here for a method without code (native, proxy or abstract). Log it and
1452 // return the slot as is since all registers are arguments.
1453 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1454 return slot;
1455 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001456 uint16_t ins_size = code_item->ins_size_;
1457 uint16_t locals_size = code_item->registers_size_ - ins_size;
1458 if (slot >= locals_size) {
1459 return slot - locals_size;
1460 } else {
1461 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001462 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001463}
1464
Jeff Haob7cefc72013-11-14 14:51:09 -08001465/*
1466 * Circularly shifts registers so that arguments come last. Reverts
1467 * slots to dex style argument placement.
1468 */
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001469static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001470 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001471 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001472 if (code_item == nullptr) {
1473 // We should not get here for a method without code (native, proxy or abstract). Log it and
1474 // return the slot as is since all registers are arguments.
1475 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001476 uint16_t vreg_count = mirror::ArtMethod::NumArgRegisters(m->GetShorty());
1477 if (slot < vreg_count) {
1478 *error = JDWP::ERR_NONE;
1479 return slot;
1480 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001481 } else {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001482 if (slot < code_item->registers_size_) {
1483 uint16_t ins_size = code_item->ins_size_;
1484 uint16_t locals_size = code_item->registers_size_ - ins_size;
1485 *error = JDWP::ERR_NONE;
1486 return (slot < ins_size) ? slot + locals_size : slot - ins_size;
1487 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001488 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001489
1490 // Slot is invalid in the method.
1491 LOG(ERROR) << "Invalid local slot " << slot << " for method " << PrettyMethod(m);
1492 *error = JDWP::ERR_INVALID_SLOT;
1493 return DexFile::kDexNoIndex16;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001494}
1495
Elliott Hughes88d63092013-01-09 09:55:54 -08001496JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001497 JDWP::JdwpError error;
1498 mirror::Class* c = DecodeClass(class_id, &error);
1499 if (c == nullptr) {
1500 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001501 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001502
1503 size_t instance_field_count = c->NumInstanceFields();
1504 size_t static_field_count = c->NumStaticFields();
1505
1506 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1507
1508 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001509 ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001510 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001511 expandBufAddUtf8String(pReply, f->GetName());
1512 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001513 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001514 static const char genericSignature[1] = "";
1515 expandBufAddUtf8String(pReply, genericSignature);
1516 }
1517 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1518 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001519 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001520}
1521
Elliott Hughes88d63092013-01-09 09:55:54 -08001522JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001523 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001524 JDWP::JdwpError error;
1525 mirror::Class* c = DecodeClass(class_id, &error);
1526 if (c == nullptr) {
1527 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001528 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001529
1530 size_t direct_method_count = c->NumDirectMethods();
1531 size_t virtual_method_count = c->NumVirtualMethods();
1532
1533 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1534
1535 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001536 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001537 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001538 expandBufAddUtf8String(pReply, m->GetName());
1539 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001540 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001541 static const char genericSignature[1] = "";
1542 expandBufAddUtf8String(pReply, genericSignature);
1543 }
1544 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1545 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001546 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001547}
1548
Elliott Hughes88d63092013-01-09 09:55:54 -08001549JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001550 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001551 Thread* self = Thread::Current();
1552 StackHandleScope<1> hs(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07001553 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error)));
Mathieu Chartierf8322842014-05-16 10:59:25 -07001554 if (c.Get() == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001555 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001556 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001557 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001558 expandBufAdd4BE(pReply, interface_count);
1559 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001560 expandBufAddRefTypeId(pReply,
1561 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001562 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001563 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001564}
1565
Ian Rogersc0542af2014-09-03 16:16:56 -07001566void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001567 struct DebugCallbackContext {
1568 int numItems;
1569 JDWP::ExpandBuf* pReply;
1570
Elliott Hughes2435a572012-02-17 16:07:41 -08001571 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001572 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1573 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001574 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001575 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001576 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001577 }
1578 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001579 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001580 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001581 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001582 if (code_item == nullptr) {
1583 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001584 start = -1;
1585 end = -1;
1586 } else {
1587 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001588 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001589 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001590 }
1591
1592 expandBufAdd8BE(pReply, start);
1593 expandBufAdd8BE(pReply, end);
1594
1595 // Add numLines later
1596 size_t numLinesOffset = expandBufGetLength(pReply);
1597 expandBufAdd4BE(pReply, 0);
1598
1599 DebugCallbackContext context;
1600 context.numItems = 0;
1601 context.pReply = pReply;
1602
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001603 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001604 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001605 DebugCallbackContext::Callback, nullptr, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001606 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001607
1608 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001609}
1610
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001611void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1612 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001613 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001614 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001615 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001616 size_t variable_count;
1617 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001618
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001619 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1620 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001621 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001622 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1623
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001624 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1625 pContext->variable_count, startAddress, endAddress - startAddress,
1626 name, descriptor, signature, slot,
1627 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001628
Jeff Haob7cefc72013-11-14 14:51:09 -08001629 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001630
Elliott Hughesdbb40792011-11-18 17:05:22 -08001631 expandBufAdd8BE(pContext->pReply, startAddress);
1632 expandBufAddUtf8String(pContext->pReply, name);
1633 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001634 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001635 expandBufAddUtf8String(pContext->pReply, signature);
1636 }
1637 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1638 expandBufAdd4BE(pContext->pReply, slot);
1639
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001640 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001641 }
1642 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001643 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001644
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001645 // arg_count considers doubles and longs to take 2 units.
1646 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001647 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001648 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001649
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001650 // We don't know the total number of variables yet, so leave a blank and update it later.
1651 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001652 expandBufAdd4BE(pReply, 0);
1653
1654 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001655 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001656 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001657 context.variable_count = 0;
1658 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001659
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001660 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001661 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001662 m->GetDexFile()->DecodeDebugInfo(
Ian Rogersc0542af2014-09-03 16:16:56 -07001663 code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001664 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001665 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001666
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001667 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001668}
1669
Jeff Hao579b0242013-11-18 13:16:49 -08001670void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1671 JDWP::ExpandBuf* pReply) {
1672 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001673 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001674 OutputJValue(tag, return_value, pReply);
1675}
1676
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001677void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1678 JDWP::ExpandBuf* pReply) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001679 ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001680 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001681 OutputJValue(tag, field_value, pReply);
1682}
1683
Elliott Hughes9777ba22013-01-17 09:04:19 -08001684JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001685 std::vector<uint8_t>* bytecodes) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001686 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001687 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001688 return JDWP::ERR_INVALID_METHODID;
1689 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001690 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001691 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1692 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1693 const uint8_t* end = begin + byte_count;
1694 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001695 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001696 }
1697 return JDWP::ERR_NONE;
1698}
1699
Elliott Hughes88d63092013-01-09 09:55:54 -08001700JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001701 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001702}
1703
Elliott Hughes88d63092013-01-09 09:55:54 -08001704JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001705 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001706}
1707
Elliott Hughes88d63092013-01-09 09:55:54 -08001708static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1709 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001710 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001711 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001712 JDWP::JdwpError error;
1713 mirror::Class* c = DecodeClass(ref_type_id, &error);
1714 if (ref_type_id != 0 && c == nullptr) {
1715 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001716 }
1717
Sebastien Hertz6995c602014-09-09 12:10:13 +02001718 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001719 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001720 return JDWP::ERR_INVALID_OBJECT;
1721 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07001722 ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001723
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001724 mirror::Class* receiver_class = c;
Ian Rogersc0542af2014-09-03 16:16:56 -07001725 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001726 receiver_class = o->GetClass();
1727 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001728 // TODO: should we give up now if receiver_class is null?
Ian Rogersc0542af2014-09-03 16:16:56 -07001729 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001730 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001731 return JDWP::ERR_INVALID_FIELDID;
1732 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001733
Elliott Hughes0cf74332012-02-23 23:14:00 -08001734 // The RI only enforces the static/non-static mismatch in one direction.
1735 // TODO: should we change the tests and check both?
1736 if (is_static) {
1737 if (!f->IsStatic()) {
1738 return JDWP::ERR_INVALID_FIELDID;
1739 }
1740 } else {
1741 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001742 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field "
1743 << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001744 }
1745 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001746 if (f->IsStatic()) {
1747 o = f->GetDeclaringClass();
1748 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001749
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001750 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001751 JValue field_value;
1752 if (tag == JDWP::JT_VOID) {
1753 LOG(FATAL) << "Unknown tag: " << tag;
1754 } else if (!IsPrimitiveTag(tag)) {
1755 field_value.SetL(f->GetObject(o));
1756 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1757 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001758 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001759 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001760 }
Jeff Hao579b0242013-11-18 13:16:49 -08001761 Dbg::OutputJValue(tag, &field_value, pReply);
1762
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001763 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001764}
1765
Elliott Hughes88d63092013-01-09 09:55:54 -08001766JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001767 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001768 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001769}
1770
Ian Rogersc0542af2014-09-03 16:16:56 -07001771JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1772 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001773 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001774}
1775
Elliott Hughes88d63092013-01-09 09:55:54 -08001776static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001777 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001778 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001779 JDWP::JdwpError error;
Sebastien Hertz6995c602014-09-09 12:10:13 +02001780 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001781 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001782 return JDWP::ERR_INVALID_OBJECT;
1783 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07001784 ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001785
1786 // The RI only enforces the static/non-static mismatch in one direction.
1787 // TODO: should we change the tests and check both?
1788 if (is_static) {
1789 if (!f->IsStatic()) {
1790 return JDWP::ERR_INVALID_FIELDID;
1791 }
1792 } else {
1793 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001794 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001795 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001796 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001797 if (f->IsStatic()) {
1798 o = f->GetDeclaringClass();
1799 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001800
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001801 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001802
1803 if (IsPrimitiveTag(tag)) {
1804 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001805 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001806 // Debugging can't use transactional mode (runtime only).
1807 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001808 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001809 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001810 // Debugging can't use transactional mode (runtime only).
1811 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001812 }
1813 } else {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001814 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001815 if (error != JDWP::ERR_NONE) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001816 return JDWP::ERR_INVALID_OBJECT;
1817 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001818 if (v != nullptr) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001819 mirror::Class* field_type;
1820 {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001821 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001822 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001823 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001824 field_type = f->GetType<true>();
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001825 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001826 if (!field_type->IsAssignableFrom(v->GetClass())) {
1827 return JDWP::ERR_INVALID_OBJECT;
1828 }
1829 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001830 // Debugging can't use transactional mode (runtime only).
1831 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001832 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001833
1834 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001835}
1836
Elliott Hughes88d63092013-01-09 09:55:54 -08001837JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001838 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001839 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001840}
1841
Elliott Hughes88d63092013-01-09 09:55:54 -08001842JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1843 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001844}
1845
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001846JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001847 JDWP::JdwpError error;
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001848 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error);
1849 if (error != JDWP::ERR_NONE) {
1850 return error;
1851 }
1852 if (obj == nullptr) {
1853 return JDWP::ERR_INVALID_OBJECT;
1854 }
1855 {
1856 ScopedObjectAccessUnchecked soa(Thread::Current());
1857 mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String);
1858 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
1859 // This isn't a string.
1860 return JDWP::ERR_INVALID_STRING;
1861 }
1862 }
1863 *str = obj->AsString()->ToModifiedUtf8();
1864 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001865}
1866
Jeff Hao579b0242013-11-18 13:16:49 -08001867void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1868 if (IsPrimitiveTag(tag)) {
1869 expandBufAdd1(pReply, tag);
1870 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1871 expandBufAdd1(pReply, return_value->GetI());
1872 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1873 expandBufAdd2BE(pReply, return_value->GetI());
1874 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1875 expandBufAdd4BE(pReply, return_value->GetI());
1876 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1877 expandBufAdd8BE(pReply, return_value->GetJ());
1878 } else {
1879 CHECK_EQ(tag, JDWP::JT_VOID);
1880 }
1881 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001882 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001883 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001884 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001885 expandBufAddObjectId(pReply, gRegistry->Add(value));
1886 }
1887}
1888
Ian Rogersc0542af2014-09-03 16:16:56 -07001889JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001890 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001891 JDWP::JdwpError error;
1892 Thread* thread = DecodeThread(soa, thread_id, &error);
1893 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001894 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1895 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001896 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001897
1898 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07001899 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1900 CHECK(thread_object != nullptr) << error;
Mathieu Chartierc7853442015-03-27 14:35:38 -07001901 ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001902 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1903 mirror::String* s =
1904 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Ian Rogersc0542af2014-09-03 16:16:56 -07001905 if (s != nullptr) {
1906 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08001907 }
1908 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001909}
1910
Elliott Hughes221229c2013-01-08 18:17:50 -08001911JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02001912 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001913 JDWP::JdwpError error;
1914 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1915 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001916 return JDWP::ERR_INVALID_OBJECT;
1917 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001918 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001919 // Okay, so it's an object, but is it actually a thread?
Sebastien Hertz69206392015-04-07 15:54:25 +02001920 Thread* thread = DecodeThread(soa, thread_id, &error);
1921 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001922 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1923 // Zombie threads are in the null group.
1924 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001925 error = JDWP::ERR_NONE;
1926 } else if (error == JDWP::ERR_NONE) {
1927 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1928 CHECK(c != nullptr);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001929 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001930 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001931 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001932 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001933 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1934 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001935 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001936 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001937}
1938
Sebastien Hertza06430c2014-09-15 19:21:30 +02001939static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
1940 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
1941 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001942 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,
1943 error);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001944 if (*error != JDWP::ERR_NONE) {
1945 return nullptr;
1946 }
1947 if (thread_group == nullptr) {
1948 *error = JDWP::ERR_INVALID_OBJECT;
1949 return nullptr;
1950 }
Ian Rogers98379392014-02-24 16:53:16 -08001951 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1952 CHECK(c != nullptr);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001953 if (!c->IsAssignableFrom(thread_group->GetClass())) {
1954 // This is not a java.lang.ThreadGroup.
1955 *error = JDWP::ERR_INVALID_THREAD_GROUP;
1956 return nullptr;
1957 }
1958 *error = JDWP::ERR_NONE;
1959 return thread_group;
1960}
1961
1962JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
1963 ScopedObjectAccessUnchecked soa(Thread::Current());
1964 JDWP::JdwpError error;
1965 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
1966 if (error != JDWP::ERR_NONE) {
1967 return error;
1968 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001969 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupName");
Mathieu Chartierc7853442015-03-27 14:35:38 -07001970 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_name);
Ian Rogersc0542af2014-09-03 16:16:56 -07001971 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001972 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Sebastien Hertza06430c2014-09-15 19:21:30 +02001973
1974 std::string thread_group_name(s->ToModifiedUtf8());
1975 expandBufAddUtf8String(pReply, thread_group_name);
1976 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001977}
1978
Sebastien Hertza06430c2014-09-15 19:21:30 +02001979JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08001980 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001981 JDWP::JdwpError error;
Sebastien Hertza06430c2014-09-15 19:21:30 +02001982 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
1983 if (error != JDWP::ERR_NONE) {
1984 return error;
1985 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001986 mirror::Object* parent;
1987 {
1988 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupParent");
Mathieu Chartierc7853442015-03-27 14:35:38 -07001989 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_parent);
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001990 CHECK(f != nullptr);
1991 parent = f->GetObject(thread_group);
1992 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02001993 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
1994 expandBufAddObjectId(pReply, parent_group_id);
1995 return JDWP::ERR_NONE;
1996}
1997
1998static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
1999 std::vector<JDWP::ObjectId>* child_thread_group_ids)
2000 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2001 CHECK(thread_group != nullptr);
2002
2003 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Mathieu Chartierc7853442015-03-27 14:35:38 -07002004 ArtField* groups_field = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_groups);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002005 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Sebastien Hertze49e1952014-10-13 11:27:13 +02002006 {
2007 // The "groups" field is declared as a java.util.List: check it really is
2008 // an instance of java.util.ArrayList.
2009 CHECK(groups_array_list != nullptr);
2010 mirror::Class* java_util_ArrayList_class =
2011 soa.Decode<mirror::Class*>(WellKnownClasses::java_util_ArrayList);
2012 CHECK(groups_array_list->InstanceOf(java_util_ArrayList_class));
2013 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002014
2015 // Get the array and size out of the ArrayList<ThreadGroup>...
Mathieu Chartierc7853442015-03-27 14:35:38 -07002016 ArtField* array_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_array);
2017 ArtField* size_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_size);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002018 mirror::ObjectArray<mirror::Object>* groups_array =
2019 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
2020 const int32_t size = size_field->GetInt(groups_array_list);
2021
2022 // Copy the first 'size' elements out of the array into the result.
Sebastien Hertz6995c602014-09-09 12:10:13 +02002023 ObjectRegistry* registry = Dbg::GetObjectRegistry();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002024 for (int32_t i = 0; i < size; ++i) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002025 child_thread_group_ids->push_back(registry->Add(groups_array->Get(i)));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002026 }
2027}
2028
2029JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2030 JDWP::ExpandBuf* pReply) {
2031 ScopedObjectAccessUnchecked soa(Thread::Current());
2032 JDWP::JdwpError error;
2033 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2034 if (error != JDWP::ERR_NONE) {
2035 return error;
2036 }
2037
2038 // Add child threads.
2039 {
2040 std::vector<JDWP::ObjectId> child_thread_ids;
2041 GetThreads(thread_group, &child_thread_ids);
2042 expandBufAdd4BE(pReply, child_thread_ids.size());
2043 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2044 expandBufAddObjectId(pReply, child_thread_id);
2045 }
2046 }
2047
2048 // Add child thread groups.
2049 {
2050 std::vector<JDWP::ObjectId> child_thread_groups_ids;
2051 GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids);
2052 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2053 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2054 expandBufAddObjectId(pReply, child_thread_group_id);
2055 }
2056 }
2057
2058 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002059}
2060
2061JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002062 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07002063 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002064 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002065 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002066}
2067
Jeff Hao920af3e2013-08-28 15:46:38 -07002068JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2069 switch (state) {
2070 case kBlocked:
2071 return JDWP::TS_MONITOR;
2072 case kNative:
2073 case kRunnable:
2074 case kSuspended:
2075 return JDWP::TS_RUNNING;
2076 case kSleeping:
2077 return JDWP::TS_SLEEPING;
2078 case kStarting:
2079 case kTerminated:
2080 return JDWP::TS_ZOMBIE;
2081 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002082 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002083 case kWaitingForDebuggerSend:
2084 case kWaitingForDebuggerSuspension:
2085 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002086 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002087 case kWaitingForGcToComplete:
Jeff Hao920af3e2013-08-28 15:46:38 -07002088 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002089 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002090 case kWaitingForSignalCatcherOutput:
Hiroshi Yamauchi0c8c3032015-01-16 16:54:35 -08002091 case kWaitingForVisitObjects:
Jeff Hao920af3e2013-08-28 15:46:38 -07002092 case kWaitingInMainDebuggerLoop:
2093 case kWaitingInMainSignalCatcherLoop:
2094 case kWaitingPerformingGc:
2095 case kWaiting:
2096 return JDWP::TS_WAIT;
2097 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2098 }
2099 LOG(FATAL) << "Unknown thread state: " << state;
2100 return JDWP::TS_ZOMBIE;
2101}
2102
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002103JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2104 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002105 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002106
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002107 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2108
Ian Rogersc0542af2014-09-03 16:16:56 -07002109 JDWP::JdwpError error;
2110 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002111 if (error != JDWP::ERR_NONE) {
2112 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2113 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002114 return JDWP::ERR_NONE;
2115 }
2116 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002117 }
2118
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002119 if (IsSuspendedForDebugger(soa, thread)) {
2120 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002121 }
2122
Jeff Hao920af3e2013-08-28 15:46:38 -07002123 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002124 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002125}
2126
Elliott Hughes221229c2013-01-08 18:17:50 -08002127JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002128 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002129 JDWP::JdwpError error;
2130 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002131 if (error != JDWP::ERR_NONE) {
2132 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002133 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002134 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002135 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002136 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002137}
2138
Elliott Hughesf9501702013-01-11 11:22:27 -08002139JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2140 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002141 JDWP::JdwpError error;
2142 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002143 if (error != JDWP::ERR_NONE) {
2144 return error;
2145 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002146 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002147 return JDWP::ERR_NONE;
2148}
2149
Sebastien Hertz070f7322014-09-09 12:08:49 +02002150static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa,
2151 mirror::Object* desired_thread_group, mirror::Object* peer)
2152 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2153 // Do we want threads from all thread groups?
2154 if (desired_thread_group == nullptr) {
2155 return true;
2156 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07002157 ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Sebastien Hertz070f7322014-09-09 12:08:49 +02002158 DCHECK(thread_group_field != nullptr);
2159 mirror::Object* group = thread_group_field->GetObject(peer);
2160 return (group == desired_thread_group);
2161}
2162
Sebastien Hertza06430c2014-09-15 19:21:30 +02002163void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002164 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz070f7322014-09-09 12:08:49 +02002165 std::list<Thread*> all_threads_list;
2166 {
2167 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2168 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2169 }
2170 for (Thread* t : all_threads_list) {
2171 if (t == Dbg::GetDebugThread()) {
2172 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2173 // query all threads, so it's easier if we just don't tell them about this thread.
2174 continue;
2175 }
2176 if (t->IsStillStarting()) {
2177 // This thread is being started (and has been registered in the thread list). However, it is
2178 // not completely started yet so we must ignore it.
2179 continue;
2180 }
2181 mirror::Object* peer = t->GetPeer();
2182 if (peer == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07002183 // peer might be null if the thread is still starting up. We can't tell the debugger about
Sebastien Hertz070f7322014-09-09 12:08:49 +02002184 // this thread yet.
2185 // TODO: if we identified threads to the debugger by their Thread*
2186 // rather than their peer's mirror::Object*, we could fix this.
2187 // Doing so might help us report ZOMBIE threads too.
2188 continue;
2189 }
2190 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
2191 thread_ids->push_back(gRegistry->Add(peer));
2192 }
2193 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002194}
Elliott Hughesa2155262011-11-16 16:26:58 -08002195
Ian Rogersc0542af2014-09-03 16:16:56 -07002196static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002197 struct CountStackDepthVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002198 explicit CountStackDepthVisitor(Thread* thread_in)
2199 : StackVisitor(thread_in, nullptr), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002200
Elliott Hughes64f574f2013-02-20 14:57:12 -08002201 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2202 // annotalysis.
2203 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002204 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002205 ++depth;
2206 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002207 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002208 }
2209 size_t depth;
2210 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002211
Ian Rogers7a22fa62013-01-23 12:16:16 -08002212 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002213 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002214 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002215}
2216
Ian Rogersc0542af2014-09-03 16:16:56 -07002217JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002218 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002219 JDWP::JdwpError error;
2220 *result = 0;
2221 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002222 if (error != JDWP::ERR_NONE) {
2223 return error;
2224 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002225 if (!IsSuspendedForDebugger(soa, thread)) {
2226 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2227 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002228 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002229 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002230}
2231
Ian Rogers306057f2012-11-26 12:45:53 -08002232JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2233 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002234 class GetFrameVisitor : public StackVisitor {
2235 public:
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002236 GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in,
2237 JDWP::ExpandBuf* buf_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002238 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07002239 : StackVisitor(thread, nullptr), depth_(0),
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002240 start_frame_(start_frame_in), frame_count_(frame_count_in), buf_(buf_in) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002241 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002242 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002243
Sebastien Hertz69206392015-04-07 15:54:25 +02002244 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002245 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002246 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002247 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002248 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002249 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002250 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002251 if (depth_ >= start_frame_) {
2252 JDWP::FrameId frame_id(GetFrameId());
2253 JDWP::JdwpLocation location;
Sebastien Hertz6995c602014-09-09 12:10:13 +02002254 SetJdwpLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002255 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002256 expandBufAdd8BE(buf_, frame_id);
2257 expandBufAddLocation(buf_, location);
2258 }
2259 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002260 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002261 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002262
2263 private:
2264 size_t depth_;
2265 const size_t start_frame_;
2266 const size_t frame_count_;
2267 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002268 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002269
2270 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002271 JDWP::JdwpError error;
2272 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002273 if (error != JDWP::ERR_NONE) {
2274 return error;
2275 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002276 if (!IsSuspendedForDebugger(soa, thread)) {
2277 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2278 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002279 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002280 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002281 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002282}
2283
2284JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002285 return GetThreadId(Thread::Current());
2286}
2287
2288JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002289 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002290 return gRegistry->Add(thread->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002291}
2292
Elliott Hughes475fc232011-10-25 15:00:35 -07002293void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002294 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002295}
2296
2297void Dbg::ResumeVM() {
Sebastien Hertz253fa552014-10-14 17:27:15 +02002298 Runtime::Current()->GetThreadList()->ResumeAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002299}
2300
Elliott Hughes221229c2013-01-08 18:17:50 -08002301JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002302 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002303 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002304 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002305 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002306 JDWP::JdwpError error;
2307 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002308 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002309 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002310 return JDWP::ERR_THREAD_NOT_ALIVE;
2311 }
Ian Rogers4ad5cd32014-11-11 23:08:07 -08002312 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002313 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002314 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2315 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2316 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002317 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002318 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002319 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002320 return JDWP::ERR_INTERNAL;
2321 } else {
2322 return JDWP::ERR_THREAD_NOT_ALIVE;
2323 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002324}
2325
Elliott Hughes221229c2013-01-08 18:17:50 -08002326void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002327 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002328 JDWP::JdwpError error;
2329 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2330 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002331 Thread* thread;
2332 {
2333 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2334 thread = Thread::FromManagedThread(soa, peer);
2335 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002336 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002337 LOG(WARNING) << "No such thread for resume: " << peer;
2338 return;
2339 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002340 bool needs_resume;
2341 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002342 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002343 needs_resume = thread->GetSuspendCount() > 0;
2344 }
2345 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002346 Runtime::Current()->GetThreadList()->Resume(thread, true);
2347 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002348}
2349
2350void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002351 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002352}
2353
Ian Rogers0399dde2012-06-06 17:09:28 -07002354struct GetThisVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002355 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002356 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002357 : StackVisitor(thread, context), this_object(nullptr), frame_id(frame_id_in) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002358
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002359 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2360 // annotalysis.
2361 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002362 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002363 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002364 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002365 this_object = GetThisObject();
2366 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002367 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002368 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002369
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002370 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002371 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002372};
2373
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002374JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2375 JDWP::ObjectId* result) {
2376 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002377 JDWP::JdwpError error;
2378 Thread* thread = DecodeThread(soa, thread_id, &error);
2379 if (error != JDWP::ERR_NONE) {
2380 return error;
2381 }
2382 if (!IsSuspendedForDebugger(soa, thread)) {
2383 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002384 }
Ian Rogers700a4022014-05-19 16:49:03 -07002385 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002386 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002387 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002388 *result = gRegistry->Add(visitor.this_object);
2389 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002390}
2391
Sebastien Hertz8009f392014-09-01 17:07:11 +02002392// Walks the stack until we find the frame with the given FrameId.
2393class FindFrameVisitor FINAL : public StackVisitor {
2394 public:
2395 FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
2396 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2397 : StackVisitor(thread, context), frame_id_(frame_id), error_(JDWP::ERR_INVALID_FRAMEID) {}
Ian Rogersca190662012-06-26 15:45:57 -07002398
Sebastien Hertz8009f392014-09-01 17:07:11 +02002399 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2400 // annotalysis.
2401 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
2402 if (GetFrameId() != frame_id_) {
2403 return true; // Not our frame, carry on.
Ian Rogers0399dde2012-06-06 17:09:28 -07002404 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002405 mirror::ArtMethod* m = GetMethod();
2406 if (m->IsNative()) {
2407 // We can't read/write local value from/into native method.
2408 error_ = JDWP::ERR_OPAQUE_FRAME;
2409 } else {
2410 // We found our frame.
2411 error_ = JDWP::ERR_NONE;
2412 }
2413 return false;
2414 }
2415
2416 JDWP::JdwpError GetError() const {
2417 return error_;
2418 }
2419
2420 private:
2421 const JDWP::FrameId frame_id_;
2422 JDWP::JdwpError error_;
2423};
2424
2425JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2426 JDWP::ObjectId thread_id = request->ReadThreadId();
2427 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002428
2429 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002430 JDWP::JdwpError error;
2431 Thread* thread = DecodeThread(soa, thread_id, &error);
2432 if (error != JDWP::ERR_NONE) {
2433 return error;
2434 }
2435 if (!IsSuspendedForDebugger(soa, thread)) {
2436 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes221229c2013-01-08 18:17:50 -08002437 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002438 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002439 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002440 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002441 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002442 if (visitor.GetError() != JDWP::ERR_NONE) {
2443 return visitor.GetError();
2444 }
2445
2446 // Read the values from visitor's context.
2447 int32_t slot_count = request->ReadSigned32("slot count");
2448 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2449 for (int32_t i = 0; i < slot_count; ++i) {
2450 uint32_t slot = request->ReadUnsigned32("slot");
2451 JDWP::JdwpTag reqSigByte = request->ReadTag();
2452
2453 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
2454
2455 size_t width = Dbg::GetTagWidth(reqSigByte);
Sebastien Hertz7d955652014-10-22 10:57:10 +02002456 uint8_t* ptr = expandBufAddSpace(pReply, width + 1);
Sebastien Hertz69206392015-04-07 15:54:25 +02002457 error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002458 if (error != JDWP::ERR_NONE) {
2459 return error;
2460 }
2461 }
2462 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002463}
2464
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002465constexpr JDWP::JdwpError kStackFrameLocalAccessError = JDWP::ERR_ABSENT_INFORMATION;
2466
2467static std::string GetStackContextAsString(const StackVisitor& visitor)
2468 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2469 return StringPrintf(" at DEX pc 0x%08x in method %s", visitor.GetDexPc(false),
2470 PrettyMethod(visitor.GetMethod()).c_str());
2471}
2472
2473static JDWP::JdwpError FailGetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2474 JDWP::JdwpTag tag)
2475 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2476 LOG(ERROR) << "Failed to read " << tag << " local from register v" << vreg
2477 << GetStackContextAsString(visitor);
2478 return kStackFrameLocalAccessError;
2479}
2480
Sebastien Hertz8009f392014-09-01 17:07:11 +02002481JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2482 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
2483 mirror::ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002484 JDWP::JdwpError error = JDWP::ERR_NONE;
2485 uint16_t vreg = DemangleSlot(slot, m, &error);
2486 if (error != JDWP::ERR_NONE) {
2487 return error;
2488 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002489 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002490 switch (tag) {
2491 case JDWP::JT_BOOLEAN: {
2492 CHECK_EQ(width, 1U);
2493 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002494 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2495 return FailGetLocalValue(visitor, vreg, tag);
Ian Rogers0399dde2012-06-06 17:09:28 -07002496 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002497 VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal;
2498 JDWP::Set1(buf + 1, intVal != 0);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002499 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002500 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002501 case JDWP::JT_BYTE: {
2502 CHECK_EQ(width, 1U);
2503 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002504 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2505 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002506 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002507 VLOG(jdwp) << "get byte local " << vreg << " = " << intVal;
2508 JDWP::Set1(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002509 break;
2510 }
2511 case JDWP::JT_SHORT:
2512 case JDWP::JT_CHAR: {
2513 CHECK_EQ(width, 2U);
2514 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002515 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2516 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002517 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002518 VLOG(jdwp) << "get short/char local " << vreg << " = " << intVal;
2519 JDWP::Set2BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002520 break;
2521 }
2522 case JDWP::JT_INT: {
2523 CHECK_EQ(width, 4U);
2524 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002525 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2526 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002527 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002528 VLOG(jdwp) << "get int local " << vreg << " = " << intVal;
2529 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002530 break;
2531 }
2532 case JDWP::JT_FLOAT: {
2533 CHECK_EQ(width, 4U);
2534 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002535 if (!visitor.GetVReg(m, vreg, kFloatVReg, &intVal)) {
2536 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002537 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002538 VLOG(jdwp) << "get float local " << vreg << " = " << intVal;
2539 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002540 break;
2541 }
2542 case JDWP::JT_ARRAY:
2543 case JDWP::JT_CLASS_LOADER:
2544 case JDWP::JT_CLASS_OBJECT:
2545 case JDWP::JT_OBJECT:
2546 case JDWP::JT_STRING:
2547 case JDWP::JT_THREAD:
2548 case JDWP::JT_THREAD_GROUP: {
2549 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2550 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002551 if (!visitor.GetVReg(m, vreg, kReferenceVReg, &intVal)) {
2552 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002553 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002554 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2555 VLOG(jdwp) << "get " << tag << " object local " << vreg << " = " << o;
2556 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2557 LOG(FATAL) << StringPrintf("Found invalid object %#" PRIxPTR " in register v%u",
2558 reinterpret_cast<uintptr_t>(o), vreg)
2559 << GetStackContextAsString(visitor);
2560 UNREACHABLE();
2561 }
2562 tag = TagFromObject(soa, o);
2563 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002564 break;
2565 }
2566 case JDWP::JT_DOUBLE: {
2567 CHECK_EQ(width, 8U);
2568 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002569 if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2570 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002571 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002572 VLOG(jdwp) << "get double local " << vreg << " = " << longVal;
2573 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002574 break;
2575 }
2576 case JDWP::JT_LONG: {
2577 CHECK_EQ(width, 8U);
2578 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002579 if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) {
2580 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002581 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002582 VLOG(jdwp) << "get long local " << vreg << " = " << longVal;
2583 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002584 break;
2585 }
2586 default:
2587 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002588 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002589 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002590
Sebastien Hertz8009f392014-09-01 17:07:11 +02002591 // Prepend tag, which may have been updated.
2592 JDWP::Set1(buf, tag);
2593 return JDWP::ERR_NONE;
2594}
2595
2596JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2597 JDWP::ObjectId thread_id = request->ReadThreadId();
2598 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002599
2600 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002601 JDWP::JdwpError error;
2602 Thread* thread = DecodeThread(soa, thread_id, &error);
2603 if (error != JDWP::ERR_NONE) {
2604 return error;
2605 }
2606 if (!IsSuspendedForDebugger(soa, thread)) {
2607 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes221229c2013-01-08 18:17:50 -08002608 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002609 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002610 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002611 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002612 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002613 if (visitor.GetError() != JDWP::ERR_NONE) {
2614 return visitor.GetError();
2615 }
2616
2617 // Writes the values into visitor's context.
2618 int32_t slot_count = request->ReadSigned32("slot count");
2619 for (int32_t i = 0; i < slot_count; ++i) {
2620 uint32_t slot = request->ReadUnsigned32("slot");
2621 JDWP::JdwpTag sigByte = request->ReadTag();
2622 size_t width = Dbg::GetTagWidth(sigByte);
2623 uint64_t value = request->ReadValue(width);
2624
2625 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
Sebastien Hertz69206392015-04-07 15:54:25 +02002626 error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002627 if (error != JDWP::ERR_NONE) {
2628 return error;
2629 }
2630 }
2631 return JDWP::ERR_NONE;
2632}
2633
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002634template<typename T>
2635static JDWP::JdwpError FailSetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2636 JDWP::JdwpTag tag, T value)
2637 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2638 LOG(ERROR) << "Failed to write " << tag << " local " << value
2639 << " (0x" << std::hex << value << ") into register v" << vreg
2640 << GetStackContextAsString(visitor);
2641 return kStackFrameLocalAccessError;
2642}
2643
Sebastien Hertz8009f392014-09-01 17:07:11 +02002644JDWP::JdwpError Dbg::SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
2645 uint64_t value, size_t width) {
2646 mirror::ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002647 JDWP::JdwpError error = JDWP::ERR_NONE;
2648 uint16_t vreg = DemangleSlot(slot, m, &error);
2649 if (error != JDWP::ERR_NONE) {
2650 return error;
2651 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002652 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002653 switch (tag) {
2654 case JDWP::JT_BOOLEAN:
2655 case JDWP::JT_BYTE:
2656 CHECK_EQ(width, 1U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002657 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2658 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002659 }
2660 break;
2661 case JDWP::JT_SHORT:
2662 case JDWP::JT_CHAR:
2663 CHECK_EQ(width, 2U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002664 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2665 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002666 }
2667 break;
2668 case JDWP::JT_INT:
2669 CHECK_EQ(width, 4U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002670 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2671 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002672 }
2673 break;
2674 case JDWP::JT_FLOAT:
2675 CHECK_EQ(width, 4U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002676 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) {
2677 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002678 }
2679 break;
2680 case JDWP::JT_ARRAY:
2681 case JDWP::JT_CLASS_LOADER:
2682 case JDWP::JT_CLASS_OBJECT:
2683 case JDWP::JT_OBJECT:
2684 case JDWP::JT_STRING:
2685 case JDWP::JT_THREAD:
2686 case JDWP::JT_THREAD_GROUP: {
2687 CHECK_EQ(width, sizeof(JDWP::ObjectId));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002688 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value),
2689 &error);
2690 if (error != JDWP::ERR_NONE) {
2691 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2692 return JDWP::ERR_INVALID_OBJECT;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002693 }
2694 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2695 kReferenceVReg)) {
2696 return FailSetLocalValue(visitor, vreg, tag, reinterpret_cast<uintptr_t>(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002697 }
2698 break;
2699 }
2700 case JDWP::JT_DOUBLE: {
2701 CHECK_EQ(width, 8U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002702 if (!visitor.SetVRegPair(m, vreg, value, kDoubleLoVReg, kDoubleHiVReg)) {
2703 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002704 }
2705 break;
2706 }
2707 case JDWP::JT_LONG: {
2708 CHECK_EQ(width, 8U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002709 if (!visitor.SetVRegPair(m, vreg, value, kLongLoVReg, kLongHiVReg)) {
2710 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002711 }
2712 break;
2713 }
2714 default:
2715 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002716 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002717 }
2718 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002719}
2720
Sebastien Hertz6995c602014-09-09 12:10:13 +02002721static void SetEventLocation(JDWP::EventLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
2722 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2723 DCHECK(location != nullptr);
2724 if (m == nullptr) {
2725 memset(location, 0, sizeof(*location));
2726 } else {
2727 location->method = m;
2728 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002729 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002730}
2731
Ian Rogersef7d42f2014-01-06 12:55:46 -08002732void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002733 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002734 if (!IsDebuggerActive()) {
2735 return;
2736 }
2737 DCHECK(m != nullptr);
2738 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002739 JDWP::EventLocation location;
2740 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002741
Sebastien Hertz6995c602014-09-09 12:10:13 +02002742 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002743}
2744
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002745void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07002746 mirror::Object* this_object, ArtField* f) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002747 if (!IsDebuggerActive()) {
2748 return;
2749 }
2750 DCHECK(m != nullptr);
2751 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002752 JDWP::EventLocation location;
2753 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002754
Sebastien Hertz6995c602014-09-09 12:10:13 +02002755 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002756}
2757
2758void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07002759 mirror::Object* this_object, ArtField* f,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002760 const JValue* field_value) {
2761 if (!IsDebuggerActive()) {
2762 return;
2763 }
2764 DCHECK(m != nullptr);
2765 DCHECK(f != nullptr);
2766 DCHECK(field_value != 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, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002771}
2772
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002773/**
2774 * Finds the location where this exception will be caught. We search until we reach the top
2775 * frame, in which case this exception is considered uncaught.
2776 */
2777class CatchLocationFinder : public StackVisitor {
2778 public:
2779 CatchLocationFinder(Thread* self, const Handle<mirror::Throwable>& exception, Context* context)
2780 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2781 : StackVisitor(self, context),
2782 self_(self),
2783 exception_(exception),
2784 handle_scope_(self),
2785 this_at_throw_(handle_scope_.NewHandle<mirror::Object>(nullptr)),
2786 catch_method_(handle_scope_.NewHandle<mirror::ArtMethod>(nullptr)),
2787 throw_method_(handle_scope_.NewHandle<mirror::ArtMethod>(nullptr)),
2788 catch_dex_pc_(DexFile::kDexNoIndex),
2789 throw_dex_pc_(DexFile::kDexNoIndex) {
2790 }
2791
2792 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2793 mirror::ArtMethod* method = GetMethod();
2794 DCHECK(method != nullptr);
2795 if (method->IsRuntimeMethod()) {
2796 // Ignore callee save method.
2797 DCHECK(method->IsCalleeSaveMethod());
2798 return true;
2799 }
2800
2801 uint32_t dex_pc = GetDexPc();
2802 if (throw_method_.Get() == nullptr) {
2803 // First Java method found. It is either the method that threw the exception,
2804 // or the Java native method that is reporting an exception thrown by
2805 // native code.
2806 this_at_throw_.Assign(GetThisObject());
2807 throw_method_.Assign(method);
2808 throw_dex_pc_ = dex_pc;
2809 }
2810
2811 if (dex_pc != DexFile::kDexNoIndex) {
2812 StackHandleScope<2> hs(self_);
2813 uint32_t found_dex_pc;
2814 Handle<mirror::Class> exception_class(hs.NewHandle(exception_->GetClass()));
2815 Handle<mirror::ArtMethod> h_method(hs.NewHandle(method));
2816 bool unused_clear_exception;
2817 found_dex_pc = mirror::ArtMethod::FindCatchBlock(
2818 h_method, exception_class, dex_pc, &unused_clear_exception);
2819 if (found_dex_pc != DexFile::kDexNoIndex) {
2820 catch_method_.Assign(method);
2821 catch_dex_pc_ = found_dex_pc;
2822 return false; // End stack walk.
2823 }
2824 }
2825 return true; // Continue stack walk.
2826 }
2827
2828 mirror::ArtMethod* GetCatchMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2829 return catch_method_.Get();
2830 }
2831
2832 mirror::ArtMethod* GetThrowMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2833 return throw_method_.Get();
2834 }
2835
2836 mirror::Object* GetThisAtThrow() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2837 return this_at_throw_.Get();
2838 }
2839
2840 uint32_t GetCatchDexPc() const {
2841 return catch_dex_pc_;
2842 }
2843
2844 uint32_t GetThrowDexPc() const {
2845 return throw_dex_pc_;
2846 }
2847
2848 private:
2849 Thread* const self_;
2850 const Handle<mirror::Throwable>& exception_;
2851 StackHandleScope<3> handle_scope_;
2852 MutableHandle<mirror::Object> this_at_throw_;
2853 MutableHandle<mirror::ArtMethod> catch_method_;
2854 MutableHandle<mirror::ArtMethod> throw_method_;
2855 uint32_t catch_dex_pc_;
2856 uint32_t throw_dex_pc_;
2857
2858 DISALLOW_COPY_AND_ASSIGN(CatchLocationFinder);
2859};
2860
2861void Dbg::PostException(mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002862 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002863 return;
2864 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002865 StackHandleScope<1> handle_scope(Thread::Current());
2866 Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object));
2867 std::unique_ptr<Context> context(Context::Create());
2868 CatchLocationFinder clf(Thread::Current(), h_exception, context.get());
2869 clf.WalkStack(/* include_transitions */ false);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002870 JDWP::EventLocation exception_throw_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002871 SetEventLocation(&exception_throw_location, clf.GetThrowMethod(), clf.GetThrowDexPc());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002872 JDWP::EventLocation exception_catch_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002873 SetEventLocation(&exception_catch_location, clf.GetCatchMethod(), clf.GetCatchDexPc());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002874
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002875 gJdwpState->PostException(&exception_throw_location, h_exception.Get(), &exception_catch_location,
2876 clf.GetThisAtThrow());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002877}
2878
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002879void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002880 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002881 return;
2882 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002883 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002884}
2885
Ian Rogers62d6c772013-02-27 08:32:07 -08002886void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002887 mirror::ArtMethod* m, uint32_t dex_pc,
2888 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002889 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002890 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002891 }
2892
Elliott Hughes86964332012-02-15 19:37:42 -08002893 if (IsBreakpoint(m, dex_pc)) {
2894 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002895 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002896
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002897 // If the debugger is single-stepping one of our threads, check to
2898 // see if we're that thread and we've reached a step point.
2899 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002900 if (single_step_control != nullptr) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002901 CHECK(!m->IsNative());
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002902 if (single_step_control->GetStepDepth() == JDWP::SD_INTO) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002903 // Step into method calls. We break when the line number
2904 // or method pointer changes. If we're in SS_MIN mode, we
2905 // always stop.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002906 if (single_step_control->GetMethod() != m) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002907 event_flags |= kSingleStep;
2908 VLOG(jdwp) << "SS new method";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002909 } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002910 event_flags |= kSingleStep;
2911 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002912 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002913 event_flags |= kSingleStep;
2914 VLOG(jdwp) << "SS new line";
2915 }
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002916 } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002917 // Step over method calls. We break when the line number is
2918 // different and the frame depth is <= the original frame
2919 // depth. (We can't just compare on the method, because we
2920 // might get unrolled past it by an exception, and it's tricky
2921 // to identify recursion.)
2922
2923 int stack_depth = GetStackDepth(thread);
2924
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002925 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002926 // Popped up one or more frames, always trigger.
2927 event_flags |= kSingleStep;
2928 VLOG(jdwp) << "SS method pop";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002929 } else if (stack_depth == single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002930 // Same depth, see if we moved.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002931 if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002932 event_flags |= kSingleStep;
2933 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002934 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002935 event_flags |= kSingleStep;
2936 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002937 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002938 }
2939 } else {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002940 CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002941 // Return from the current method. We break when the frame
2942 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002943
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002944 // This differs from the "method exit" break in that it stops
2945 // with the PC at the next instruction in the returned-to
2946 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002947
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002948 int stack_depth = GetStackDepth(thread);
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002949 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002950 event_flags |= kSingleStep;
2951 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002952 }
2953 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002954 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002955
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002956 // If there's something interesting going on, see if it matches one
2957 // of the debugger filters.
2958 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002959 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002960 }
2961}
2962
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002963size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2964 switch (instrumentation_event) {
2965 case instrumentation::Instrumentation::kMethodEntered:
2966 return &method_enter_event_ref_count_;
2967 case instrumentation::Instrumentation::kMethodExited:
2968 return &method_exit_event_ref_count_;
2969 case instrumentation::Instrumentation::kDexPcMoved:
2970 return &dex_pc_change_event_ref_count_;
2971 case instrumentation::Instrumentation::kFieldRead:
2972 return &field_read_event_ref_count_;
2973 case instrumentation::Instrumentation::kFieldWritten:
2974 return &field_write_event_ref_count_;
2975 case instrumentation::Instrumentation::kExceptionCaught:
2976 return &exception_catch_event_ref_count_;
2977 default:
2978 return nullptr;
2979 }
2980}
2981
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002982// Process request while all mutator threads are suspended.
2983void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002984 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002985 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002986 case DeoptimizationRequest::kNothing:
2987 LOG(WARNING) << "Ignoring empty deoptimization request.";
2988 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002989 case DeoptimizationRequest::kRegisterForEvent:
2990 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002991 request.InstrumentationEvent());
2992 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
2993 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002994 break;
2995 case DeoptimizationRequest::kUnregisterForEvent:
2996 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002997 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002998 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002999 request.InstrumentationEvent());
3000 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003001 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003002 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003003 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz0462c4c2015-04-01 16:34:17 +02003004 instrumentation->DeoptimizeEverything(kDbgInstrumentationKey);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003005 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003006 break;
3007 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003008 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz0462c4c2015-04-01 16:34:17 +02003009 instrumentation->UndeoptimizeEverything(kDbgInstrumentationKey);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003010 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003011 break;
3012 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003013 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
3014 instrumentation->Deoptimize(request.Method());
3015 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003016 break;
3017 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003018 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
3019 instrumentation->Undeoptimize(request.Method());
3020 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003021 break;
3022 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003023 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003024 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003025 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003026}
3027
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003028void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003029 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003030 // Nothing to do.
3031 return;
3032 }
Brian Carlstrom306db812014-09-05 13:01:41 -07003033 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003034 RequestDeoptimizationLocked(req);
3035}
3036
3037void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003038 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003039 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003040 DCHECK_NE(req.InstrumentationEvent(), 0u);
3041 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003042 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003043 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003044 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003045 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003046 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003047 deoptimization_requests_.push_back(req);
3048 }
3049 *counter = *counter + 1;
3050 break;
3051 }
3052 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003053 DCHECK_NE(req.InstrumentationEvent(), 0u);
3054 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003055 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003056 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003057 *counter = *counter - 1;
3058 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003059 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003060 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003061 deoptimization_requests_.push_back(req);
3062 }
3063 break;
3064 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003065 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003066 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003067 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003068 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3069 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003070 deoptimization_requests_.push_back(req);
3071 }
3072 ++full_deoptimization_event_count_;
3073 break;
3074 }
3075 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003076 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003077 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003078 --full_deoptimization_event_count_;
3079 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003080 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3081 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003082 deoptimization_requests_.push_back(req);
3083 }
3084 break;
3085 }
3086 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003087 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003088 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003089 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003090 deoptimization_requests_.push_back(req);
3091 break;
3092 }
3093 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003094 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003095 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003096 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003097 deoptimization_requests_.push_back(req);
3098 break;
3099 }
3100 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003101 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003102 break;
3103 }
3104 }
3105}
3106
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003107void Dbg::ManageDeoptimization() {
3108 Thread* const self = Thread::Current();
3109 {
3110 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003111 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003112 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003113 return;
3114 }
3115 }
3116 CHECK_EQ(self->GetState(), kRunnable);
3117 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3118 // We need to suspend mutator threads first.
3119 Runtime* const runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07003120 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003121 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003122 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003123 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003124 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003125 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003126 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003127 ProcessDeoptimizationRequest(request);
3128 }
3129 deoptimization_requests_.clear();
3130 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003131 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3132 runtime->GetThreadList()->ResumeAll();
3133 self->TransitionFromSuspendedToRunnable();
3134}
3135
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003136static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3137 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003138 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003139 if (code_item == nullptr) {
3140 // TODO We should not be asked to watch location in a native or abstract method so the code item
3141 // should never be null. We could just check we never encounter this case.
3142 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003143 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003144 // Note: method verifier may cause thread suspension.
3145 self->AssertThreadSuspensionIsAllowable();
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003146 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003147 mirror::Class* declaring_class = m->GetDeclaringClass();
3148 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3149 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003150 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Ian Rogers7b078e82014-09-10 14:44:24 -07003151 verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003152 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method,
Mathieu Chartier4306ef82014-12-19 18:41:47 -08003153 m->GetAccessFlags(), false, true, false, true);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003154 // Note: we don't need to verify the method.
3155 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3156}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003157
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003158static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003159 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003160 for (Breakpoint& breakpoint : gBreakpoints) {
3161 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003162 return &breakpoint;
3163 }
3164 }
3165 return nullptr;
3166}
3167
Mathieu Chartierd8565452015-03-26 09:41:50 -07003168bool Dbg::MethodHasAnyBreakpoints(mirror::ArtMethod* method) {
3169 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
3170 return FindFirstBreakpointForMethod(method) != nullptr;
3171}
3172
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003173// Sanity checks all existing breakpoints on the same method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003174static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m,
3175 DeoptimizationRequest::Kind deoptimization_kind)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003176 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003177 for (const Breakpoint& breakpoint : gBreakpoints) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003178 if (breakpoint.Method() == m) {
3179 CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind());
3180 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003181 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003182 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
3183 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003184 // We should have deoptimized everything but not "selectively" deoptimized this method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003185 CHECK(instrumentation->AreAllMethodsDeoptimized());
3186 CHECK(!instrumentation->IsDeoptimized(m));
3187 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003188 // We should have "selectively" deoptimized this method.
3189 // Note: while we have not deoptimized everything for this method, we may have done it for
3190 // another event.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003191 CHECK(instrumentation->IsDeoptimized(m));
3192 } else {
3193 // This method does not require deoptimization.
3194 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3195 CHECK(!instrumentation->IsDeoptimized(m));
3196 }
3197}
3198
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003199// Returns the deoptimization kind required to set a breakpoint in a method.
3200// If a breakpoint has already been set, we also return the first breakpoint
3201// through the given 'existing_brkpt' pointer.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003202static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self,
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003203 mirror::ArtMethod* m,
3204 const Breakpoint** existing_brkpt)
Sebastien Hertzf3928792014-11-17 19:00:37 +01003205 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
3206 if (!Dbg::RequiresDeoptimization()) {
3207 // We already run in interpreter-only mode so we don't need to deoptimize anything.
3208 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method "
3209 << PrettyMethod(m);
3210 return DeoptimizationRequest::kNothing;
3211 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003212 const Breakpoint* first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003213 {
3214 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003215 first_breakpoint = FindFirstBreakpointForMethod(m);
3216 *existing_brkpt = first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003217 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003218
3219 if (first_breakpoint == nullptr) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003220 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3221 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3222 // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension.
3223 // Therefore we must not hold any lock when we call it.
3224 bool need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3225 if (need_full_deoptimization) {
3226 VLOG(jdwp) << "Need full deoptimization because of possible inlining of method "
3227 << PrettyMethod(m);
3228 return DeoptimizationRequest::kFullDeoptimization;
3229 } else {
3230 // We don't need to deoptimize if the method has not been compiled.
3231 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
3232 const bool is_compiled = class_linker->GetOatMethodQuickCodeFor(m) != nullptr;
3233 if (is_compiled) {
Sebastien Hertz6963e442014-11-26 22:11:27 +01003234 // If the method may be called through its direct code pointer (without loading
3235 // its updated entrypoint), we need full deoptimization to not miss the breakpoint.
3236 if (class_linker->MayBeCalledWithDirectCodePointer(m)) {
3237 VLOG(jdwp) << "Need full deoptimization because of possible direct code call "
3238 << "into image for compiled method " << PrettyMethod(m);
3239 return DeoptimizationRequest::kFullDeoptimization;
3240 } else {
3241 VLOG(jdwp) << "Need selective deoptimization for compiled method " << PrettyMethod(m);
3242 return DeoptimizationRequest::kSelectiveDeoptimization;
3243 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003244 } else {
3245 // Method is not compiled: we don't need to deoptimize.
3246 VLOG(jdwp) << "No need for deoptimization for non-compiled method " << PrettyMethod(m);
3247 return DeoptimizationRequest::kNothing;
3248 }
3249 }
3250 } else {
3251 // There is at least one breakpoint for this method: we don't need to deoptimize.
3252 // Let's check that all breakpoints are configured the same way for deoptimization.
3253 VLOG(jdwp) << "Breakpoint already set: no deoptimization is required";
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003254 DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003255 if (kIsDebugBuild) {
3256 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3257 SanityCheckExistingBreakpoints(m, deoptimization_kind);
3258 }
3259 return DeoptimizationRequest::kNothing;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003260 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003261}
3262
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003263// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3264// request if we need to deoptimize.
3265void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3266 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003267 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003268 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003269
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003270 const Breakpoint* existing_breakpoint = nullptr;
3271 const DeoptimizationRequest::Kind deoptimization_kind =
3272 GetRequiredDeoptimizationKind(self, m, &existing_breakpoint);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003273 req->SetKind(deoptimization_kind);
3274 if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
3275 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003276 } else {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003277 CHECK(deoptimization_kind == DeoptimizationRequest::kNothing ||
3278 deoptimization_kind == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003279 req->SetMethod(nullptr);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003280 }
3281
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003282 {
3283 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003284 // If there is at least one existing breakpoint on the same method, the new breakpoint
3285 // must have the same deoptimization kind than the existing breakpoint(s).
3286 DeoptimizationRequest::Kind breakpoint_deoptimization_kind;
3287 if (existing_breakpoint != nullptr) {
3288 breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind();
3289 } else {
3290 breakpoint_deoptimization_kind = deoptimization_kind;
3291 }
3292 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind));
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003293 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3294 << gBreakpoints[gBreakpoints.size() - 1];
3295 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003296}
3297
3298// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3299// request if we need to undeoptimize.
3300void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003301 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003302 mirror::ArtMethod* m = FromMethodId(location->method_id);
3303 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003304 DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003305 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003306 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003307 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Sebastien Hertzf3928792014-11-17 19:00:37 +01003308 deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind();
3309 DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization,
3310 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003311 gBreakpoints.erase(gBreakpoints.begin() + i);
3312 break;
3313 }
3314 }
3315 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3316 if (existing_breakpoint == nullptr) {
3317 // There is no more breakpoint on this method: we need to undeoptimize.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003318 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003319 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003320 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3321 req->SetMethod(nullptr);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003322 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003323 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003324 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3325 req->SetMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003326 } else {
3327 // This method had no need for deoptimization: do nothing.
3328 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3329 req->SetKind(DeoptimizationRequest::kNothing);
3330 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003331 }
3332 } else {
3333 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003334 req->SetKind(DeoptimizationRequest::kNothing);
3335 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003336 if (kIsDebugBuild) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003337 SanityCheckExistingBreakpoints(m, deoptimization_kind);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003338 }
Elliott Hughes86964332012-02-15 19:37:42 -08003339 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003340}
3341
Daniel Mihalyieb076692014-08-22 17:33:31 +02003342bool Dbg::IsForcedInterpreterNeededForCallingImpl(Thread* thread, mirror::ArtMethod* m) {
3343 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3344 if (ssc == nullptr) {
3345 // If we are not single-stepping, then we don't have to force interpreter.
3346 return false;
3347 }
3348 if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) {
3349 // If we are in interpreter only mode, then we don't have to force interpreter.
3350 return false;
3351 }
3352
3353 if (!m->IsNative() && !m->IsProxyMethod()) {
3354 // If we want to step into a method, then we have to force interpreter on that call.
3355 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3356 return true;
3357 }
3358 }
3359 return false;
3360}
3361
3362bool Dbg::IsForcedInterpreterNeededForResolutionImpl(Thread* thread, mirror::ArtMethod* m) {
3363 instrumentation::Instrumentation* const instrumentation =
3364 Runtime::Current()->GetInstrumentation();
3365 // If we are in interpreter only mode, then we don't have to force interpreter.
3366 if (instrumentation->InterpretOnly()) {
3367 return false;
3368 }
3369 // We can only interpret pure Java method.
3370 if (m->IsNative() || m->IsProxyMethod()) {
3371 return false;
3372 }
3373 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3374 if (ssc != nullptr) {
3375 // If we want to step into a method, then we have to force interpreter on that call.
3376 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3377 return true;
3378 }
3379 // If we are stepping out from a static initializer, by issuing a step
3380 // in or step over, that was implicitly invoked by calling a static method,
3381 // then we need to step into that method. Having a lower stack depth than
3382 // the one the single step control has indicates that the step originates
3383 // from the static initializer.
3384 if (ssc->GetStepDepth() != JDWP::SD_OUT &&
3385 ssc->GetStackDepth() > GetStackDepth(thread)) {
3386 return true;
3387 }
3388 }
3389 // There are cases where we have to force interpreter on deoptimized methods,
3390 // because in some cases the call will not be performed by invoking an entry
3391 // point that has been replaced by the deoptimization, but instead by directly
3392 // invoking the compiled code of the method, for example.
3393 return instrumentation->IsDeoptimized(m);
3394}
3395
3396bool Dbg::IsForcedInstrumentationNeededForResolutionImpl(Thread* thread, mirror::ArtMethod* m) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003397 // The upcall can be null and in that case we don't need to do anything.
Daniel Mihalyieb076692014-08-22 17:33:31 +02003398 if (m == nullptr) {
3399 return false;
3400 }
3401 instrumentation::Instrumentation* const instrumentation =
3402 Runtime::Current()->GetInstrumentation();
3403 // If we are in interpreter only mode, then we don't have to force interpreter.
3404 if (instrumentation->InterpretOnly()) {
3405 return false;
3406 }
3407 // We can only interpret pure Java method.
3408 if (m->IsNative() || m->IsProxyMethod()) {
3409 return false;
3410 }
3411 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3412 if (ssc != nullptr) {
3413 // If we are stepping out from a static initializer, by issuing a step
3414 // out, that was implicitly invoked by calling a static method, then we
3415 // need to step into the caller of that method. Having a lower stack
3416 // depth than the one the single step control has indicates that the
3417 // step originates from the static initializer.
3418 if (ssc->GetStepDepth() == JDWP::SD_OUT &&
3419 ssc->GetStackDepth() > GetStackDepth(thread)) {
3420 return true;
3421 }
3422 }
3423 // If we are returning from a static intializer, that was implicitly
3424 // invoked by calling a static method and the caller is deoptimized,
3425 // then we have to deoptimize the stack without forcing interpreter
3426 // on the static method that was called originally. This problem can
3427 // be solved easily by forcing instrumentation on the called method,
3428 // because the instrumentation exit hook will recognise the need of
3429 // stack deoptimization by calling IsForcedInterpreterNeededForUpcall.
3430 return instrumentation->IsDeoptimized(m);
3431}
3432
3433bool Dbg::IsForcedInterpreterNeededForUpcallImpl(Thread* thread, mirror::ArtMethod* m) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003434 // The upcall can be null and in that case we don't need to do anything.
Daniel Mihalyieb076692014-08-22 17:33:31 +02003435 if (m == nullptr) {
3436 return false;
3437 }
3438 instrumentation::Instrumentation* const instrumentation =
3439 Runtime::Current()->GetInstrumentation();
3440 // If we are in interpreter only mode, then we don't have to force interpreter.
3441 if (instrumentation->InterpretOnly()) {
3442 return false;
3443 }
3444 // We can only interpret pure Java method.
3445 if (m->IsNative() || m->IsProxyMethod()) {
3446 return false;
3447 }
3448 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3449 if (ssc != nullptr) {
3450 // The debugger is not interested in what is happening under the level
3451 // of the step, thus we only force interpreter when we are not below of
3452 // the step.
3453 if (ssc->GetStackDepth() >= GetStackDepth(thread)) {
3454 return true;
3455 }
3456 }
3457 // We have to require stack deoptimization if the upcall is deoptimized.
3458 return instrumentation->IsDeoptimized(m);
3459}
3460
Jeff Hao449db332013-04-12 18:30:52 -07003461// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3462// cause suspension if the thread is the current thread.
3463class ScopedThreadSuspension {
3464 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003465 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003466 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003467 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003468 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003469 error_(JDWP::ERR_NONE),
3470 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003471 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003472 ScopedObjectAccessUnchecked soa(self);
Sebastien Hertz69206392015-04-07 15:54:25 +02003473 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003474 if (error_ == JDWP::ERR_NONE) {
3475 if (thread_ == soa.Self()) {
3476 self_suspend_ = true;
3477 } else {
3478 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Sebastien Hertz6995c602014-09-09 12:10:13 +02003479 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003480 bool timed_out;
Ian Rogers4ad5cd32014-11-11 23:08:07 -08003481 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3482 Thread* suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true,
3483 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07003484 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003485 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003486 // Thread terminated from under us while suspending.
3487 error_ = JDWP::ERR_INVALID_THREAD;
3488 } else {
3489 CHECK_EQ(suspended_thread, thread_);
3490 other_suspend_ = true;
3491 }
3492 }
3493 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003494 }
Elliott Hughes86964332012-02-15 19:37:42 -08003495
Jeff Hao449db332013-04-12 18:30:52 -07003496 Thread* GetThread() const {
3497 return thread_;
3498 }
3499
3500 JDWP::JdwpError GetError() const {
3501 return error_;
3502 }
3503
3504 ~ScopedThreadSuspension() {
3505 if (other_suspend_) {
3506 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3507 }
3508 }
3509
3510 private:
3511 Thread* thread_;
3512 JDWP::JdwpError error_;
3513 bool self_suspend_;
3514 bool other_suspend_;
3515};
3516
3517JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3518 JDWP::JdwpStepDepth step_depth) {
3519 Thread* self = Thread::Current();
3520 ScopedThreadSuspension sts(self, thread_id);
3521 if (sts.GetError() != JDWP::ERR_NONE) {
3522 return sts.GetError();
3523 }
3524
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003525 // Work out what ArtMethod* we're in, the current line number, and how deep the stack currently
Elliott Hughes2435a572012-02-17 16:07:41 -08003526 // is for step-out.
Ian Rogers0399dde2012-06-06 17:09:28 -07003527 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003528 explicit SingleStepStackVisitor(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
3529 : StackVisitor(thread, nullptr), stack_depth(0), method(nullptr), line_number(-1) {
Elliott Hughes86964332012-02-15 19:37:42 -08003530 }
Ian Rogersca190662012-06-26 15:45:57 -07003531
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003532 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3533 // annotalysis.
3534 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003535 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003536 if (!m->IsRuntimeMethod()) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003537 ++stack_depth;
3538 if (method == nullptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003539 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003540 method = m;
Ian Rogersc0542af2014-09-03 16:16:56 -07003541 if (dex_cache != nullptr) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003542 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003543 line_number = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003544 }
Elliott Hughes86964332012-02-15 19:37:42 -08003545 }
3546 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003547 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003548 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003549
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003550 int stack_depth;
3551 mirror::ArtMethod* method;
3552 int32_t line_number;
Elliott Hughes86964332012-02-15 19:37:42 -08003553 };
Jeff Hao449db332013-04-12 18:30:52 -07003554
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003555 Thread* const thread = sts.GetThread();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003556 SingleStepStackVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07003557 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003558
Elliott Hughes2435a572012-02-17 16:07:41 -08003559 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
Elliott Hughes2435a572012-02-17 16:07:41 -08003560 struct DebugCallbackContext {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003561 explicit DebugCallbackContext(SingleStepControl* single_step_control_cb,
3562 int32_t line_number_cb, const DexFile::CodeItem* code_item)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003563 : single_step_control_(single_step_control_cb), line_number_(line_number_cb),
3564 code_item_(code_item), last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003565 }
3566
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003567 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number_cb) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003568 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003569 if (static_cast<int32_t>(line_number_cb) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003570 if (!context->last_pc_valid) {
3571 // Everything from this address until the next line change is ours.
3572 context->last_pc = address;
3573 context->last_pc_valid = true;
3574 }
3575 // Otherwise, if we're already in a valid range for this line,
3576 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003577 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003578 // Add everything from the last entry up until here to the set
3579 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003580 context->single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003581 }
3582 context->last_pc_valid = false;
3583 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003584 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003585 }
3586
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003587 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003588 // If the line number was the last in the position table...
3589 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003590 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003591 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003592 single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003593 }
3594 }
3595 }
3596
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003597 SingleStepControl* const single_step_control_;
3598 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003599 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003600 bool last_pc_valid;
3601 uint32_t last_pc;
3602 };
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003603
3604 // Allocate single step.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003605 SingleStepControl* single_step_control =
3606 new (std::nothrow) SingleStepControl(step_size, step_depth,
3607 visitor.stack_depth, visitor.method);
3608 if (single_step_control == nullptr) {
3609 LOG(ERROR) << "Failed to allocate SingleStepControl";
3610 return JDWP::ERR_OUT_OF_MEMORY;
3611 }
3612
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003613 mirror::ArtMethod* m = single_step_control->GetMethod();
3614 const int32_t line_number = visitor.line_number;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003615 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003616 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003617 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003618 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07003619 DebugCallbackContext::Callback, nullptr, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003620 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003621
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003622 // Activate single-step in the thread.
3623 thread->ActivateSingleStepControl(single_step_control);
Elliott Hughes86964332012-02-15 19:37:42 -08003624
Elliott Hughes2435a572012-02-17 16:07:41 -08003625 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003626 VLOG(jdwp) << "Single-step thread: " << *thread;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003627 VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize();
3628 VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth();
3629 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->GetMethod());
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003630 VLOG(jdwp) << "Single-step current line: " << line_number;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003631 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth();
Elliott Hughes2435a572012-02-17 16:07:41 -08003632 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003633 for (uint32_t dex_pc : single_step_control->GetDexPcs()) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003634 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003635 }
3636 }
3637
3638 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003639}
3640
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003641void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3642 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07003643 JDWP::JdwpError error;
3644 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003645 if (error == JDWP::ERR_NONE) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003646 thread->DeactivateSingleStepControl();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003647 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003648}
3649
Elliott Hughes45651fd2012-02-21 15:48:20 -08003650static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3651 switch (tag) {
3652 default:
3653 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
Ian Rogersfc787ec2014-10-09 21:56:44 -07003654 UNREACHABLE();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003655
3656 // Primitives.
3657 case JDWP::JT_BYTE: return 'B';
3658 case JDWP::JT_CHAR: return 'C';
3659 case JDWP::JT_FLOAT: return 'F';
3660 case JDWP::JT_DOUBLE: return 'D';
3661 case JDWP::JT_INT: return 'I';
3662 case JDWP::JT_LONG: return 'J';
3663 case JDWP::JT_SHORT: return 'S';
3664 case JDWP::JT_VOID: return 'V';
3665 case JDWP::JT_BOOLEAN: return 'Z';
3666
3667 // Reference types.
3668 case JDWP::JT_ARRAY:
3669 case JDWP::JT_OBJECT:
3670 case JDWP::JT_STRING:
3671 case JDWP::JT_THREAD:
3672 case JDWP::JT_THREAD_GROUP:
3673 case JDWP::JT_CLASS_LOADER:
3674 case JDWP::JT_CLASS_OBJECT:
3675 return 'L';
3676 }
3677}
3678
Elliott Hughes88d63092013-01-09 09:55:54 -08003679JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3680 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003681 uint32_t arg_count, uint64_t* arg_values,
3682 JDWP::JdwpTag* arg_types, uint32_t options,
3683 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3684 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003685 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3686
Ian Rogersc0542af2014-09-03 16:16:56 -07003687 Thread* targetThread = nullptr;
Sebastien Hertz1558b572015-02-25 15:05:59 +01003688 std::unique_ptr<DebugInvokeReq> req;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003689 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003690 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003691 ScopedObjectAccessUnchecked soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07003692 JDWP::JdwpError error;
3693 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003694 if (error != JDWP::ERR_NONE) {
3695 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3696 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003697 }
Sebastien Hertz1558b572015-02-25 15:05:59 +01003698 if (targetThread->GetInvokeReq() != nullptr) {
3699 // Thread is already invoking a method on behalf of the debugger.
3700 LOG(ERROR) << "InvokeMethod request for thread already invoking a method: " << *targetThread;
3701 return JDWP::ERR_ALREADY_INVOKING;
3702 }
3703 if (!targetThread->IsReadyForDebugInvoke()) {
3704 // Thread is not suspended by an event so it cannot invoke a method.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003705 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3706 return JDWP::ERR_INVALID_THREAD;
3707 }
3708
3709 /*
3710 * We currently have a bug where we don't successfully resume the
3711 * target thread if the suspend count is too deep. We're expected to
3712 * require one "resume" for each "suspend", but when asked to execute
3713 * a method we have to resume fully and then re-suspend it back to the
3714 * same level. (The easiest way to cause this is to type "suspend"
3715 * multiple times in jdb.)
3716 *
3717 * It's unclear what this means when the event specifies "resume all"
3718 * and some threads are suspended more deeply than others. This is
3719 * a rare problem, so for now we just prevent it from hanging forever
3720 * by rejecting the method invocation request. Without this, we will
3721 * be stuck waiting on a suspended thread.
3722 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003723 int suspend_count;
3724 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003725 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003726 suspend_count = targetThread->GetSuspendCount();
3727 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003728 if (suspend_count > 1) {
3729 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003730 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003731 }
3732
Ian Rogersc0542af2014-09-03 16:16:56 -07003733 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3734 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003735 return JDWP::ERR_INVALID_OBJECT;
3736 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003737
Sebastien Hertz1558b572015-02-25 15:05:59 +01003738 gRegistry->Get<mirror::Object*>(thread_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07003739 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003740 return JDWP::ERR_INVALID_OBJECT;
3741 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003742
Ian Rogersc0542af2014-09-03 16:16:56 -07003743 mirror::Class* c = DecodeClass(class_id, &error);
3744 if (c == nullptr) {
3745 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003746 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003747
Brian Carlstromea46f952013-07-30 01:26:50 -07003748 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003749 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003750 return JDWP::ERR_INVALID_METHODID;
3751 }
3752 if (m->IsStatic()) {
3753 if (m->GetDeclaringClass() != c) {
3754 return JDWP::ERR_INVALID_METHODID;
3755 }
3756 } else {
3757 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3758 return JDWP::ERR_INVALID_METHODID;
3759 }
3760 }
3761
3762 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003763 uint32_t shorty_len = 0;
3764 const char* shorty = m->GetShorty(&shorty_len);
3765 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003766 return JDWP::ERR_ILLEGAL_ARGUMENT;
3767 }
Elliott Hughes09201632013-04-15 15:50:07 -07003768
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003769 {
3770 StackHandleScope<3> hs(soa.Self());
Ian Rogersa0485602014-12-02 15:48:04 -08003771 HandleWrapper<mirror::ArtMethod> h_m(hs.NewHandleWrapper(&m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003772 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3773 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3774 const DexFile::TypeList* types = m->GetParameterTypeList();
3775 for (size_t i = 0; i < arg_count; ++i) {
3776 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003777 return JDWP::ERR_ILLEGAL_ARGUMENT;
3778 }
3779
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003780 if (shorty[i + 1] == 'L') {
3781 // Did we really get an argument of an appropriate reference type?
Ian Rogersa0485602014-12-02 15:48:04 -08003782 mirror::Class* parameter_type =
3783 h_m->GetClassFromTypeIndex(types->GetTypeItem(i).type_idx_, true);
Ian Rogersc0542af2014-09-03 16:16:56 -07003784 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
3785 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003786 return JDWP::ERR_INVALID_OBJECT;
3787 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003788 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003789 return JDWP::ERR_ILLEGAL_ARGUMENT;
3790 }
3791
3792 // Turn the on-the-wire ObjectId into a jobject.
3793 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3794 v.l = gRegistry->GetJObject(arg_values[i]);
3795 }
Elliott Hughes09201632013-04-15 15:50:07 -07003796 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003797 }
3798
Sebastien Hertz1558b572015-02-25 15:05:59 +01003799 // Allocates a DebugInvokeReq.
3800 req.reset(new (std::nothrow) DebugInvokeReq(receiver, c, m, options, arg_values, arg_count));
3801 if (req.get() == nullptr) {
3802 LOG(ERROR) << "Failed to allocate DebugInvokeReq";
3803 return JDWP::ERR_OUT_OF_MEMORY;
3804 }
3805
3806 // Attach the DebugInvokeReq to the target thread so it executes the method when
3807 // it is resumed. Once the invocation completes, it will detach it and signal us
3808 // before suspending itself.
3809 targetThread->SetDebugInvokeReq(req.get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003810 }
3811
3812 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3813 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3814 // call, and it's unwise to hold it during WaitForSuspend.
3815
3816 {
3817 /*
3818 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003819 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003820 * run out of memory. It's also a good idea to change it before locking
3821 * the invokeReq mutex, although that should never be held for long.
3822 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003823 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003824
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003825 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003826 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003827 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003828
3829 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003830 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003831 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003832 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003833 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003834 thread_list->Resume(targetThread, true);
3835 }
3836
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003837 // The target thread is resumed but needs the JDWP token we're holding.
3838 // We release it now and will acquire it again when the invocation is
3839 // complete and the target thread suspends itself.
3840 gJdwpState->ReleaseJdwpTokenForCommand();
3841
Elliott Hughesd07986f2011-12-06 18:27:45 -08003842 // Wait for the request to finish executing.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003843 while (targetThread->GetInvokeReq() != nullptr) {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003844 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003845 }
3846 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003847 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003848
3849 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003850 SuspendThread(thread_id, false /* request_suspension */);
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003851
3852 // Now the thread is suspended again, we can re-acquire the JDWP token.
3853 gJdwpState->AcquireJdwpTokenForCommand();
3854
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003855 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003856 }
3857
3858 /*
3859 * Suspend the threads. We waited for the target thread to suspend
3860 * itself, so all we need to do is suspend the others.
3861 *
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003862 * The SuspendAllForDebugger() call will double-suspend the event thread,
Elliott Hughesd07986f2011-12-06 18:27:45 -08003863 * so we want to resume the target thread once to keep the books straight.
3864 */
3865 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003866 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003867 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003868 thread_list->SuspendAllForDebugger();
3869 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003870 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003871 thread_list->Resume(targetThread, true);
3872 }
3873
3874 // Copy the result.
3875 *pResultTag = req->result_tag;
Sebastien Hertz1558b572015-02-25 15:05:59 +01003876 *pResultValue = req->result_value;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003877 *pExceptionId = req->exception;
3878 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003879}
3880
3881void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003882 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003883
Elliott Hughes81ff3182012-03-23 20:35:56 -07003884 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003885 // to preserve that across the method invocation.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003886 StackHandleScope<4> hs(soa.Self());
3887 auto old_exception = hs.NewHandle<mirror::Throwable>(soa.Self()->GetException());
3888 soa.Self()->ClearException();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003889
3890 // Translate the method through the vtable, unless the debugger wants to suppress it.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003891 MutableHandle<mirror::ArtMethod> m(hs.NewHandle(pReq->method.Read()));
3892 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) {
3893 mirror::ArtMethod* actual_method = pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m.Get());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003894 if (actual_method != m.Get()) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01003895 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get())
3896 << " to " << PrettyMethod(actual_method);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003897 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003898 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003899 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003900 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertz1558b572015-02-25 15:05:59 +01003901 << " receiver=" << pReq->receiver.Read()
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003902 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003903 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003904
3905 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3906
Sebastien Hertz1558b572015-02-25 15:05:59 +01003907 JValue result = InvokeWithJValues(soa, pReq->receiver.Read(), soa.EncodeMethod(m.Get()),
3908 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003909
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003910 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Sebastien Hertz1558b572015-02-25 15:05:59 +01003911 const bool is_object_result = (pReq->result_tag == JDWP::JT_OBJECT);
3912 Handle<mirror::Object> object_result = hs.NewHandle(is_object_result ? result.GetL() : nullptr);
3913 Handle<mirror::Throwable> exception = hs.NewHandle(soa.Self()->GetException());
3914 soa.Self()->ClearException();
3915 pReq->exception = gRegistry->Add(exception.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003916 if (pReq->exception != 0) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01003917 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get()
3918 << " " << exception->Dump();
3919 pReq->result_value = 0;
3920 } else if (is_object_result) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003921 /* if no exception thrown, examine object result more closely */
Sebastien Hertz1558b572015-02-25 15:05:59 +01003922 JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003923 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003924 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003925 pReq->result_tag = new_tag;
3926 }
3927
Sebastien Hertz1558b572015-02-25 15:05:59 +01003928 // Register the object in the registry and reference its ObjectId. This ensures
3929 // GC safety and prevents from accessing stale reference if the object is moved.
3930 pReq->result_value = gRegistry->Add(object_result.Get());
3931 } else {
3932 // Primitive result.
3933 DCHECK(IsPrimitiveTag(pReq->result_tag));
3934 pReq->result_value = result.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003935 }
3936
Ian Rogersc0542af2014-09-03 16:16:56 -07003937 if (old_exception.Get() != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003938 soa.Self()->SetException(old_exception.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003939 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003940}
3941
Elliott Hughesd07986f2011-12-06 18:27:45 -08003942/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003943 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003944 * need to process each, accumulate the replies, and ship the whole thing
3945 * back.
3946 *
3947 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3948 * and includes the chunk type/length, followed by the data.
3949 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003950 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003951 * chunk. If this becomes inconvenient we will need to adapt.
3952 */
Ian Rogersc0542af2014-09-03 16:16:56 -07003953bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003954 Thread* self = Thread::Current();
3955 JNIEnv* env = self->GetJniEnv();
3956
Ian Rogersc0542af2014-09-03 16:16:56 -07003957 uint32_t type = request->ReadUnsigned32("type");
3958 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003959
3960 // Create a byte[] corresponding to 'request'.
Ian Rogersc0542af2014-09-03 16:16:56 -07003961 size_t request_length = request->size();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003962 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Ian Rogersc0542af2014-09-03 16:16:56 -07003963 if (dataArray.get() == nullptr) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003964 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003965 env->ExceptionClear();
3966 return false;
3967 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003968 env->SetByteArrayRegion(dataArray.get(), 0, request_length,
3969 reinterpret_cast<const jbyte*>(request->data()));
3970 request->Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003971
3972 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003973 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003974 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003975 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003976 return false;
3977 }
3978
3979 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003980 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3981 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003982 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003983 if (env->ExceptionCheck()) {
3984 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3985 env->ExceptionDescribe();
3986 env->ExceptionClear();
3987 return false;
3988 }
3989
Ian Rogersc0542af2014-09-03 16:16:56 -07003990 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003991 return false;
3992 }
3993
3994 /*
3995 * Pull the pieces out of the chunk. We copy the results into a
3996 * newly-allocated buffer that the caller can free. We don't want to
3997 * continue using the Chunk object because nothing has a reference to it.
3998 *
3999 * We could avoid this by returning type/data/offset/length and having
4000 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07004001 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004002 * if we have responses for multiple chunks.
4003 *
4004 * So we're pretty much stuck with copying data around multiple times.
4005 */
Elliott Hugheseac76672012-05-24 21:56:51 -07004006 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 -08004007 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07004008 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07004009 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004010
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004011 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 -07004012 if (length == 0 || replyData.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004013 return false;
4014 }
4015
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004016 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004017 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
Ian Rogersc0542af2014-09-03 16:16:56 -07004018 if (reply == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004019 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
4020 return false;
4021 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07004022 JDWP::Set4BE(reply + 0, type);
4023 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004024 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004025
4026 *pReplyBuf = reply;
4027 *pReplyLen = length + kChunkHdrLen;
4028
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004029 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004030 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004031}
4032
Elliott Hughesa2155262011-11-16 16:26:58 -08004033void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004034 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07004035
4036 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07004037 if (self->GetState() != kRunnable) {
4038 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
4039 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07004040 }
4041
4042 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07004043 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07004044 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4045 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
4046 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07004047 if (env->ExceptionCheck()) {
4048 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
4049 env->ExceptionDescribe();
4050 env->ExceptionClear();
4051 }
4052}
4053
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004054void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004055 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004056}
4057
4058void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004059 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07004060 gDdmThreadNotification = false;
4061}
4062
4063/*
Elliott Hughes82188472011-11-07 18:11:48 -08004064 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07004065 *
4066 * Because we broadcast the full set of threads when the notifications are
4067 * first enabled, it's possible for "thread" to be actively executing.
4068 */
Elliott Hughes82188472011-11-07 18:11:48 -08004069void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004070 if (!gDdmThreadNotification) {
4071 return;
4072 }
4073
Elliott Hughes82188472011-11-07 18:11:48 -08004074 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004075 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004076 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07004077 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08004078 } else {
4079 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004080 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004081 StackHandleScope<1> hs(soa.Self());
4082 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
Ian Rogersc0542af2014-09-03 16:16:56 -07004083 size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0;
Jeff Hao848f70a2014-01-15 13:49:50 -08004084 const jchar* chars = (name.Get() != nullptr) ? name->GetValue() : nullptr;
Elliott Hughes82188472011-11-07 18:11:48 -08004085
Elliott Hughes21f32d72011-11-09 17:44:13 -08004086 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004087 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004088 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08004089 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
4090 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07004091 }
4092}
4093
Elliott Hughes47fce012011-10-25 18:37:19 -07004094void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004095 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07004096 gDdmThreadNotification = enable;
4097 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004098 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
4099 // see a suspension in progress and block until that ends. They then post their own start
4100 // notification.
4101 SuspendVM();
4102 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07004103 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004104 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004105 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004106 threads = Runtime::Current()->GetThreadList()->GetList();
4107 }
4108 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004109 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07004110 for (Thread* thread : threads) {
4111 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004112 }
4113 }
4114 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07004115 }
4116}
4117
Elliott Hughesa2155262011-11-16 16:26:58 -08004118void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07004119 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02004120 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004121 }
Elliott Hughes82188472011-11-07 18:11:48 -08004122 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07004123}
4124
4125void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004126 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004127}
4128
4129void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004130 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004131}
4132
Elliott Hughes82188472011-11-07 18:11:48 -08004133void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004134 CHECK(buf != nullptr);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004135 iovec vec[1];
4136 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
4137 vec[0].iov_len = byte_count;
4138 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004139}
4140
Elliott Hughes21f32d72011-11-09 17:44:13 -08004141void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
4142 DdmSendChunk(type, bytes.size(), &bytes[0]);
4143}
4144
Brian Carlstromf5293522013-07-19 00:24:00 -07004145void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004146 if (gJdwpState == nullptr) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004147 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07004148 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08004149 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004150 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004151}
4152
Mathieu Chartierad466ad2015-01-08 16:28:08 -08004153JDWP::JdwpState* Dbg::GetJdwpState() {
4154 return gJdwpState;
4155}
4156
Elliott Hughes767a1472011-10-26 18:49:02 -07004157int Dbg::DdmHandleHpifChunk(HpifWhen when) {
4158 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07004159 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07004160 return true;
4161 }
4162
4163 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4164 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4165 return false;
4166 }
4167
4168 gDdmHpifWhen = when;
4169 return true;
4170}
4171
4172bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4173 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4174 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4175 return false;
4176 }
4177
4178 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4179 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4180 return false;
4181 }
4182
4183 if (native) {
4184 gDdmNhsgWhen = when;
4185 gDdmNhsgWhat = what;
4186 } else {
4187 gDdmHpsgWhen = when;
4188 gDdmHpsgWhat = what;
4189 }
4190 return true;
4191}
4192
Elliott Hughes7162ad92011-10-27 14:08:42 -07004193void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4194 // If there's a one-shot 'when', reset it.
4195 if (reason == gDdmHpifWhen) {
4196 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4197 gDdmHpifWhen = HPIF_WHEN_NEVER;
4198 }
4199 }
4200
4201 /*
4202 * Chunk HPIF (client --> server)
4203 *
4204 * Heap Info. General information about the heap,
4205 * suitable for a summary display.
4206 *
4207 * [u4]: number of heaps
4208 *
4209 * For each heap:
4210 * [u4]: heap ID
4211 * [u8]: timestamp in ms since Unix epoch
4212 * [u1]: capture reason (same as 'when' value from server)
4213 * [u4]: max heap size in bytes (-Xmx)
4214 * [u4]: current heap size in bytes
4215 * [u4]: current number of bytes allocated
4216 * [u4]: current number of objects allocated
4217 */
4218 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004219 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004220 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004221 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004222 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004223 JDWP::Append8BE(bytes, MilliTime());
4224 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004225 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4226 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004227 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4228 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004229 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
4230 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07004231}
4232
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004233enum HpsgSolidity {
4234 SOLIDITY_FREE = 0,
4235 SOLIDITY_HARD = 1,
4236 SOLIDITY_SOFT = 2,
4237 SOLIDITY_WEAK = 3,
4238 SOLIDITY_PHANTOM = 4,
4239 SOLIDITY_FINALIZABLE = 5,
4240 SOLIDITY_SWEEP = 6,
4241};
4242
4243enum HpsgKind {
4244 KIND_OBJECT = 0,
4245 KIND_CLASS_OBJECT = 1,
4246 KIND_ARRAY_1 = 2,
4247 KIND_ARRAY_2 = 3,
4248 KIND_ARRAY_4 = 4,
4249 KIND_ARRAY_8 = 5,
4250 KIND_UNKNOWN = 6,
4251 KIND_NATIVE = 7,
4252};
4253
4254#define HPSG_PARTIAL (1<<7)
4255#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4256
Ian Rogers30fab402012-01-23 15:43:46 -08004257class HeapChunkContext {
4258 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004259 // Maximum chunk size. Obtain this from the formula:
4260 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4261 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004262 : buf_(16384 - 16),
4263 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004264 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004265 Reset();
4266 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004267 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004268 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004269 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004270 }
4271 }
4272
4273 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004274 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004275 Flush();
4276 }
4277 }
4278
Mathieu Chartier36dab362014-07-30 14:59:56 -07004279 void SetChunkOverhead(size_t chunk_overhead) {
4280 chunk_overhead_ = chunk_overhead;
4281 }
4282
4283 void ResetStartOfNextChunk() {
4284 startOfNextMemoryChunk_ = nullptr;
4285 }
4286
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004287 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004288 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004289 return;
4290 }
4291
4292 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004293 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4294 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004295
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004296 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4297 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004298 // [u4]: length of piece, in allocation units
4299 // 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 -08004300 pieceLenField_ = p_;
4301 JDWP::Write4BE(&p_, 0x55555555);
4302 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004303 }
4304
Ian Rogersb726dcb2012-09-05 08:57:23 -07004305 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004306 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004307 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4308 CHECK(needHeader_);
4309 return;
4310 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004311 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004312 CHECK_LE(&buf_[0], pieceLenField_);
4313 CHECK_LE(pieceLenField_, p_);
4314 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004315
Ian Rogers30fab402012-01-23 15:43:46 -08004316 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004317 Reset();
4318 }
4319
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004320 static void HeapChunkJavaCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004321 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4322 Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004323 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes);
4324 }
4325
4326 static void HeapChunkNativeCallback(void* start, void* end, size_t used_bytes, void* arg)
4327 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4328 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004329 }
4330
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004331 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004332 enum { ALLOCATION_UNIT_SIZE = 8 };
4333
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004334 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004335 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004336 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004337 totalAllocationUnits_ = 0;
4338 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004339 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004340 }
4341
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004342 bool IsNative() const {
4343 return type_ == CHUNK_TYPE("NHSG");
4344 }
4345
4346 // Returns true if the object is not an empty chunk.
4347 bool ProcessRecord(void* start, size_t used_bytes) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004348 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4349 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004350 if (used_bytes == 0) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004351 if (start == nullptr) {
4352 // Reset for start of new heap.
4353 startOfNextMemoryChunk_ = nullptr;
4354 Flush();
4355 }
4356 // Only process in use memory so that free region information
4357 // also includes dlmalloc book keeping.
4358 return false;
Elliott Hughesa2155262011-11-16 16:26:58 -08004359 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004360 if (startOfNextMemoryChunk_ != nullptr) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004361 // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because
4362 // of the use of mmaps, so don't report. If not free memory then start a new segment.
4363 bool flush = true;
4364 if (start > startOfNextMemoryChunk_) {
4365 const size_t kMaxFreeLen = 2 * kPageSize;
4366 void* free_start = startOfNextMemoryChunk_;
4367 void* free_end = start;
4368 const size_t free_len =
4369 reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start);
4370 if (!IsNative() || free_len < kMaxFreeLen) {
4371 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative());
4372 flush = false;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004373 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004374 }
4375 if (flush) {
4376 startOfNextMemoryChunk_ = nullptr;
4377 Flush();
4378 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004379 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004380 return true;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004381 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004382
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004383 void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes)
4384 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4385 if (ProcessRecord(start, used_bytes)) {
4386 uint8_t state = ExamineNativeObject(start);
4387 AppendChunk(state, start, used_bytes + chunk_overhead_, true /*is_native*/);
4388 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4389 }
4390 }
4391
4392 void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes)
4393 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
4394 if (ProcessRecord(start, used_bytes)) {
4395 // Determine the type of this chunk.
4396 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4397 // If it's the same, we should combine them.
4398 uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start));
4399 AppendChunk(state, start, used_bytes + chunk_overhead_, false /*is_native*/);
4400 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4401 }
4402 }
4403
4404 void AppendChunk(uint8_t state, void* ptr, size_t length, bool is_native)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004405 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004406 // Make sure there's enough room left in the buffer.
4407 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4408 // 17 bytes for any header.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004409 const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17;
4410 size_t byte_left = &buf_.back() - p_;
4411 if (byte_left < needed) {
4412 if (is_native) {
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004413 // Cannot trigger memory allocation while walking native heap.
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004414 return;
4415 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004416 Flush();
4417 }
4418
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004419 byte_left = &buf_.back() - p_;
4420 if (byte_left < needed) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004421 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4422 << needed << " bytes)";
4423 return;
4424 }
4425 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004426 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004427 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4428 totalAllocationUnits_ += length;
4429 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004430 *p_++ = state | HPSG_PARTIAL;
4431 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004432 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004433 }
Ian Rogers30fab402012-01-23 15:43:46 -08004434 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004435 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004436 }
4437
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004438 uint8_t ExamineNativeObject(const void* p) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4439 return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4440 }
4441
4442 uint8_t ExamineJavaObject(mirror::Object* o)
Ian Rogersef7d42f2014-01-06 12:55:46 -08004443 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004444 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004445 return HPSG_STATE(SOLIDITY_FREE, 0);
4446 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004447 // It's an allocated chunk. Figure out what it is.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004448 gc::Heap* heap = Runtime::Current()->GetHeap();
4449 if (!heap->IsLiveObjectLocked(o)) {
4450 LOG(ERROR) << "Invalid object in managed heap: " << o;
Elliott Hughesa2155262011-11-16 16:26:58 -08004451 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4452 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004453 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004454 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004455 // The object was probably just created but hasn't been initialized yet.
4456 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4457 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004458 if (!heap->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004459 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004460 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4461 }
Mathieu Chartierf26e1b32015-01-29 10:47:10 -08004462 if (c->GetClass() == nullptr) {
4463 LOG(ERROR) << "Null class of class " << c << " for object " << o;
4464 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4465 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004466 if (c->IsClassClass()) {
4467 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4468 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004469 if (c->IsArrayClass()) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004470 switch (c->GetComponentSize()) {
4471 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4472 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4473 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4474 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4475 }
4476 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004477 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4478 }
4479
Ian Rogers30fab402012-01-23 15:43:46 -08004480 std::vector<uint8_t> buf_;
4481 uint8_t* p_;
4482 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004483 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004484 size_t totalAllocationUnits_;
4485 uint32_t type_;
Ian Rogers30fab402012-01-23 15:43:46 -08004486 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004487 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004488
Elliott Hughesa2155262011-11-16 16:26:58 -08004489 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4490};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004491
Mathieu Chartier36dab362014-07-30 14:59:56 -07004492static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
4493 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
4494 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004495 HeapChunkContext::HeapChunkJavaCallback(
Mathieu Chartier36dab362014-07-30 14:59:56 -07004496 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4497}
4498
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004499void Dbg::DdmSendHeapSegments(bool native) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004500 Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen;
4501 Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004502 if (when == HPSG_WHEN_NEVER) {
4503 return;
4504 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004505 // Figure out what kind of chunks we'll be sending.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004506 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS)
4507 << static_cast<int>(what);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004508
4509 // First, send a heap start chunk.
4510 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004511 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004512 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004513 Thread* self = Thread::Current();
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004514 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004515
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004516 // Send a series of heap segment chunks.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004517 HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native);
Elliott Hughesa2155262011-11-16 16:26:58 -08004518 if (native) {
Ian Rogers872dd822014-10-30 11:19:14 -07004519#if defined(HAVE_ANDROID_OS) && defined(USE_DLMALLOC)
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004520 dlmalloc_inspect_all(HeapChunkContext::HeapChunkNativeCallback, &context);
4521 HeapChunkContext::HeapChunkNativeCallback(nullptr, nullptr, 0, &context); // Indicate end of a space.
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004522#else
4523 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4524#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004525 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004526 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004527 for (const auto& space : heap->GetContinuousSpaces()) {
4528 if (space->IsDlMallocSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004529 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004530 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4531 // allocation then the first sizeof(size_t) may belong to it.
4532 context.SetChunkOverhead(sizeof(size_t));
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004533 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004534 } else if (space->IsRosAllocSpace()) {
4535 context.SetChunkOverhead(0);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004536 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4537 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
4538 self->TransitionFromRunnableToSuspended(kSuspended);
4539 ThreadList* tl = Runtime::Current()->GetThreadList();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07004540 tl->SuspendAll(__FUNCTION__);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004541 {
4542 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004543 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004544 }
4545 tl->ResumeAll();
4546 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004547 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004548 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004549 context.SetChunkOverhead(0);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004550 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004551 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004552 } else if (space->IsRegionSpace()) {
4553 heap->IncrementDisableMovingGC(self);
4554 self->TransitionFromRunnableToSuspended(kSuspended);
4555 ThreadList* tl = Runtime::Current()->GetThreadList();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07004556 tl->SuspendAll(__FUNCTION__);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004557 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4558 context.SetChunkOverhead(0);
4559 space->AsRegionSpace()->Walk(BumpPointerSpaceCallback, &context);
4560 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
4561 tl->ResumeAll();
4562 self->TransitionFromSuspendedToRunnable();
4563 heap->DecrementDisableMovingGC(self);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004564 } else {
4565 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004566 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004567 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004568 }
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004569 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004570 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004571 context.SetChunkOverhead(0);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004572 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004573 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004574
4575 // Finally, send a heap end chunk.
4576 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004577}
4578
Elliott Hughesb1a58792013-07-11 18:10:58 -07004579static size_t GetAllocTrackerMax() {
4580#ifdef HAVE_ANDROID_OS
4581 // Check whether there's a system property overriding the number of records.
4582 const char* propertyName = "dalvik.vm.allocTrackerMax";
4583 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4584 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4585 char* end;
4586 size_t value = strtoul(allocRecordMaxString, &end, 10);
4587 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004588 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4589 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004590 return kDefaultNumAllocRecords;
4591 }
4592 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004593 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4594 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004595 return kDefaultNumAllocRecords;
4596 }
4597 return value;
4598 }
4599#endif
4600 return kDefaultNumAllocRecords;
4601}
4602
Brian Carlstrom306db812014-09-05 13:01:41 -07004603void Dbg::SetAllocTrackingEnabled(bool enable) {
4604 Thread* self = Thread::Current();
4605 if (enable) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004606 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004607 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4608 if (recent_allocation_records_ != nullptr) {
4609 return; // Already enabled, bail.
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004610 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004611 alloc_record_max_ = GetAllocTrackerMax();
4612 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4613 << kMaxAllocRecordStackDepth << " frames, taking "
4614 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4615 DCHECK_EQ(alloc_record_head_, 0U);
4616 DCHECK_EQ(alloc_record_count_, 0U);
4617 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4618 CHECK(recent_allocation_records_ != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004619 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004620 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004621 } else {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004622 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004623 ScopedObjectAccess soa(self); // For type_cache_.Clear();
4624 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4625 if (recent_allocation_records_ == nullptr) {
4626 return; // Already disabled, bail.
4627 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07004628 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004629 delete[] recent_allocation_records_;
Ian Rogersc0542af2014-09-03 16:16:56 -07004630 recent_allocation_records_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -07004631 alloc_record_head_ = 0;
4632 alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004633 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004634 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004635 // If an allocation comes in before we uninstrument, we will safely drop it on the floor.
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004636 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004637 }
4638}
4639
Ian Rogers0399dde2012-06-06 17:09:28 -07004640struct AllocRecordStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004641 AllocRecordStackVisitor(Thread* thread, AllocRecord* record_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004642 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004643 : StackVisitor(thread, nullptr), record(record_in), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004644
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004645 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4646 // annotalysis.
4647 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004648 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004649 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004650 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004651 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004652 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004653 record->StackElement(depth)->SetMethod(m);
4654 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004655 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004656 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004657 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004658 }
4659
4660 ~AllocRecordStackVisitor() {
4661 // Clear out any unused stack trace elements.
4662 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004663 record->StackElement(depth)->SetMethod(nullptr);
4664 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004665 }
4666 }
4667
4668 AllocRecord* record;
4669 size_t depth;
4670};
4671
Ian Rogers844506b2014-09-12 19:59:33 -07004672void Dbg::RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004673 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004674 if (recent_allocation_records_ == nullptr) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004675 // In the process of shutting down recording, bail.
Elliott Hughes545a0642011-11-08 19:10:03 -08004676 return;
4677 }
4678
4679 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004680 if (++alloc_record_head_ == alloc_record_max_) {
4681 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004682 }
4683
4684 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004685 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004686 record->SetType(type);
4687 record->SetByteCount(byte_count);
4688 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004689
4690 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004691 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004692 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004693
Ian Rogers719d1a32014-03-06 12:13:39 -08004694 if (alloc_record_count_ < alloc_record_max_) {
4695 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004696 }
4697}
4698
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004699// Returns the index of the head element.
4700//
Brian Carlstrom306db812014-09-05 13:01:41 -07004701// We point at the most-recently-written record, so if alloc_record_count_ is 1
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004702// we want to use the current element. Take "head+1" and subtract count
4703// from it.
4704//
4705// We need to handle underflow in our circular buffer, so we add
Brian Carlstrom306db812014-09-05 13:01:41 -07004706// alloc_record_max_ and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004707size_t Dbg::HeadIndex() {
4708 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4709 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004710}
4711
4712void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004713 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004714 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004715 if (recent_allocation_records_ == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004716 LOG(INFO) << "Not recording tracked allocations";
4717 return;
4718 }
4719
4720 // "i" is the head of the list. We want to start at the end of the
4721 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004722 size_t i = HeadIndex();
Brian Carlstrom306db812014-09-05 13:01:41 -07004723 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4724 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004725
Ian Rogers719d1a32014-03-06 12:13:39 -08004726 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004727 while (count--) {
4728 AllocRecord* record = &recent_allocation_records_[i];
4729
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004730 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4731 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004732
4733 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004734 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4735 mirror::ArtMethod* m = stack_element->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004736 if (m == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004737 break;
4738 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004739 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004740 }
4741
4742 // pause periodically to help logcat catch up
4743 if ((count % 5) == 0) {
4744 usleep(40000);
4745 }
4746
Ian Rogers719d1a32014-03-06 12:13:39 -08004747 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004748 }
4749}
4750
4751class StringTable {
4752 public:
4753 StringTable() {
4754 }
4755
Mathieu Chartier4345c462014-06-27 10:20:14 -07004756 void Add(const std::string& str) {
4757 table_.insert(str);
4758 }
4759
4760 void Add(const char* str) {
4761 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004762 }
4763
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004764 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004765 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004766 if (it == table_.end()) {
4767 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4768 }
4769 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004770 }
4771
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004772 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004773 return table_.size();
4774 }
4775
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004776 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004777 for (const std::string& str : table_) {
4778 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004779 size_t s_len = CountModifiedUtf8Chars(s);
Christopher Ferris8a354052015-04-24 17:23:53 -07004780 std::unique_ptr<uint16_t[]> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004781 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4782 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004783 }
4784 }
4785
4786 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004787 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004788 DISALLOW_COPY_AND_ASSIGN(StringTable);
4789};
4790
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004791static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004792 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004793 DCHECK(method != nullptr);
4794 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004795 return (source_file != nullptr) ? source_file : "";
4796}
4797
Elliott Hughes545a0642011-11-08 19:10:03 -08004798/*
4799 * The data we send to DDMS contains everything we have recorded.
4800 *
4801 * Message header (all values big-endian):
4802 * (1b) message header len (to allow future expansion); includes itself
4803 * (1b) entry header len
4804 * (1b) stack frame len
4805 * (2b) number of entries
4806 * (4b) offset to string table from start of message
4807 * (2b) number of class name strings
4808 * (2b) number of method name strings
4809 * (2b) number of source file name strings
4810 * For each entry:
4811 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004812 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004813 * (2b) allocated object's class name index
4814 * (1b) stack depth
4815 * For each stack frame:
4816 * (2b) method's class name
4817 * (2b) method name
4818 * (2b) method source file
4819 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4820 * (xb) class name strings
4821 * (xb) method name strings
4822 * (xb) source file strings
4823 *
4824 * As with other DDM traffic, strings are sent as a 4-byte length
4825 * followed by UTF-16 data.
4826 *
4827 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07004828 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004829 * each table, but in practice there should be far fewer.
4830 *
4831 * The chief reason for using a string table here is to keep the size of
4832 * the DDMS message to a minimum. This is partly to make the protocol
4833 * efficient, but also because we have to form the whole thing up all at
4834 * once in a memory buffer.
4835 *
4836 * We use separate string tables for class names, method names, and source
4837 * files to keep the indexes small. There will generally be no overlap
4838 * between the contents of these tables.
4839 */
4840jbyteArray Dbg::GetRecentAllocations() {
Ian Rogerscf7f1912014-10-22 22:06:39 -07004841 if ((false)) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004842 DumpRecentAllocations();
4843 }
4844
Ian Rogers50b35e22012-10-04 10:09:15 -07004845 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004846 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004847 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004848 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004849 //
4850 // Part 1: generate string tables.
4851 //
4852 StringTable class_names;
4853 StringTable method_names;
4854 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004855
Brian Carlstrom306db812014-09-05 13:01:41 -07004856 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4857 uint16_t count = capped_count;
4858 size_t idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004859 while (count--) {
4860 AllocRecord* record = &recent_allocation_records_[idx];
Ian Rogers1ff3c982014-08-12 02:30:58 -07004861 std::string temp;
4862 class_names.Add(record->Type()->GetDescriptor(&temp));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004863 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004864 mirror::ArtMethod* m = record->StackElement(i)->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004865 if (m != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004866 class_names.Add(m->GetDeclaringClassDescriptor());
4867 method_names.Add(m->GetName());
4868 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004869 }
4870 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004871
Ian Rogers719d1a32014-03-06 12:13:39 -08004872 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004873 }
4874
Brian Carlstrom306db812014-09-05 13:01:41 -07004875 LOG(INFO) << "allocation records: " << capped_count;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004876
4877 //
4878 // Part 2: Generate the output and store it in the buffer.
4879 //
4880
4881 // (1b) message header len (to allow future expansion); includes itself
4882 // (1b) entry header len
4883 // (1b) stack frame len
4884 const int kMessageHeaderLen = 15;
4885 const int kEntryHeaderLen = 9;
4886 const int kStackFrameLen = 8;
4887 JDWP::Append1BE(bytes, kMessageHeaderLen);
4888 JDWP::Append1BE(bytes, kEntryHeaderLen);
4889 JDWP::Append1BE(bytes, kStackFrameLen);
4890
4891 // (2b) number of entries
4892 // (4b) offset to string table from start of message
4893 // (2b) number of class name strings
4894 // (2b) number of method name strings
4895 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07004896 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004897 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004898 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004899 JDWP::Append2BE(bytes, class_names.Size());
4900 JDWP::Append2BE(bytes, method_names.Size());
4901 JDWP::Append2BE(bytes, filenames.Size());
4902
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004903 idx = HeadIndex();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004904 std::string temp;
Brian Carlstrom306db812014-09-05 13:01:41 -07004905 for (count = capped_count; count != 0; --count) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004906 // For each entry:
4907 // (4b) total allocation size
4908 // (2b) thread id
4909 // (2b) allocated object's class name index
4910 // (1b) stack depth
4911 AllocRecord* record = &recent_allocation_records_[idx];
4912 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004913 size_t allocated_object_class_name_index =
Ian Rogers1ff3c982014-08-12 02:30:58 -07004914 class_names.IndexOf(record->Type()->GetDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004915 JDWP::Append4BE(bytes, record->ByteCount());
4916 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004917 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4918 JDWP::Append1BE(bytes, stack_depth);
4919
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004920 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4921 // For each stack frame:
4922 // (2b) method's class name
4923 // (2b) method name
4924 // (2b) method source file
4925 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004926 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004927 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4928 size_t method_name_index = method_names.IndexOf(m->GetName());
4929 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004930 JDWP::Append2BE(bytes, class_name_index);
4931 JDWP::Append2BE(bytes, method_name_index);
4932 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004933 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004934 }
Ian Rogers719d1a32014-03-06 12:13:39 -08004935 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004936 }
4937
4938 // (xb) class name strings
4939 // (xb) method name strings
4940 // (xb) source file strings
4941 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4942 class_names.WriteTo(bytes);
4943 method_names.WriteTo(bytes);
4944 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004945 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004946 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004947 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07004948 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004949 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4950 }
4951 return result;
4952}
4953
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07004954mirror::ArtMethod* DeoptimizationRequest::Method() const {
4955 ScopedObjectAccessUnchecked soa(Thread::Current());
4956 return soa.DecodeMethod(method_);
4957}
4958
4959void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
4960 ScopedObjectAccessUnchecked soa(Thread::Current());
4961 method_ = soa.EncodeMethod(m);
4962}
4963
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004964} // namespace art