blob: a909a1afbe5f78b56525dd8b2c6d1a26f3135791 [file] [log] [blame]
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "debugger.h"
18
Elliott Hughes3bb81562011-10-21 18:52:59 -070019#include <sys/uio.h>
20
Elliott Hughes545a0642011-11-08 19:10:03 -080021#include <set>
22
Ian Rogers166db042013-07-26 12:05:57 -070023#include "arch/context.h"
Elliott Hughes545a0642011-11-08 19:10:03 -080024#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070026#include "dex_file-inl.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070027#include "dex_instruction.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070028#include "gc/accounting/card_table-inl.h"
29#include "gc/space/large_object_space.h"
30#include "gc/space/space-inl.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070031#include "handle_scope.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080032#include "jdwp/object_registry.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070033#include "mirror/art_field-inl.h"
34#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035#include "mirror/class.h"
36#include "mirror/class-inl.h"
37#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038#include "mirror/object-inl.h"
39#include "mirror/object_array-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070040#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080041#include "mirror/throwable.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010042#include "quick/inline_method_analyser.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070043#include "reflection.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070044#include "safe_map.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080045#include "scoped_thread_state_change.h"
Elliott Hughes6a5bd492011-10-28 14:33:57 -070046#include "ScopedLocalRef.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070047#include "ScopedPrimitiveArray.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070048#include "handle_scope-inl.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070049#include "thread_list.h"
Ian 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
Brian Carlstrom7934ac22013-07-26 10:54:15 -070060static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
Brian Carlstrom306db812014-09-05 13:01:41 -070061static const size_t kDefaultNumAllocRecords = 64*1024; // Must be a power of 2. 2BE can hold 64k-1.
62
63// Limit alloc_record_count to the 2BE value that is the limit of the current protocol.
64static uint16_t CappedAllocRecordCount(size_t alloc_record_count) {
65 if (alloc_record_count > 0xffff) {
66 return 0xffff;
67 }
68 return alloc_record_count;
69}
Elliott Hughes475fc232011-10-25 15:00:35 -070070
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070071class AllocRecordStackTraceElement {
72 public:
73 AllocRecordStackTraceElement() : method_(nullptr), dex_pc_(0) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080074 }
75
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070076 int32_t LineNumber() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
77 mirror::ArtMethod* method = Method();
78 DCHECK(method != nullptr);
79 return method->GetLineNumFromDexPC(DexPc());
Elliott Hughes545a0642011-11-08 19:10:03 -080080 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070081
82 mirror::ArtMethod* Method() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -070083 ScopedObjectAccessUnchecked soa(Thread::Current());
84 return soa.DecodeMethod(method_);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070085 }
86
87 void SetMethod(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
88 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4345c462014-06-27 10:20:14 -070089 method_ = soa.EncodeMethod(m);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070090 }
91
92 uint32_t DexPc() const {
93 return dex_pc_;
94 }
95
96 void SetDexPc(uint32_t pc) {
97 dex_pc_ = pc;
98 }
99
100 private:
Mathieu Chartier4345c462014-06-27 10:20:14 -0700101 jmethodID method_;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700102 uint32_t dex_pc_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800103};
104
Mathieu Chartier4345c462014-06-27 10:20:14 -0700105jobject Dbg::TypeCache::Add(mirror::Class* t) {
106 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800107 JNIEnv* const env = soa.Env();
108 ScopedLocalRef<jobject> local_ref(soa.Env(), soa.AddLocalReference<jobject>(t));
109 const int32_t hash_code = soa.Decode<mirror::Class*>(local_ref.get())->IdentityHashCode();
Mathieu Chartier4345c462014-06-27 10:20:14 -0700110 auto range = objects_.equal_range(hash_code);
111 for (auto it = range.first; it != range.second; ++it) {
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800112 if (soa.Decode<mirror::Class*>(it->second) == soa.Decode<mirror::Class*>(local_ref.get())) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700113 // Found a matching weak global, return it.
114 return it->second;
115 }
116 }
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800117 const jobject weak_global = env->NewWeakGlobalRef(local_ref.get());
Mathieu Chartier4345c462014-06-27 10:20:14 -0700118 objects_.insert(std::make_pair(hash_code, weak_global));
119 return weak_global;
120}
121
122void Dbg::TypeCache::Clear() {
Brian Carlstrom306db812014-09-05 13:01:41 -0700123 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
124 Thread* self = Thread::Current();
Mathieu Chartier4345c462014-06-27 10:20:14 -0700125 for (const auto& p : objects_) {
Brian Carlstrom306db812014-09-05 13:01:41 -0700126 vm->DeleteWeakGlobalRef(self, p.second);
Mathieu Chartier4345c462014-06-27 10:20:14 -0700127 }
128 objects_.clear();
129}
130
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700131class AllocRecord {
132 public:
133 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -0800134
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700135 mirror::Class* Type() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700136 return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700137 }
138
Brian Carlstrom306db812014-09-05 13:01:41 -0700139 void SetType(mirror::Class* t) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
140 Locks::alloc_tracker_lock_) {
141 type_ = Dbg::type_cache_.Add(t);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700142 }
143
144 size_t GetDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800145 size_t depth = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -0700146 while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800147 ++depth;
148 }
149 return depth;
150 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800151
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700152 size_t ByteCount() const {
153 return byte_count_;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800154 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700155
156 void SetByteCount(size_t count) {
157 byte_count_ = count;
158 }
159
160 uint16_t ThinLockId() const {
161 return thin_lock_id_;
162 }
163
164 void SetThinLockId(uint16_t id) {
165 thin_lock_id_ = id;
166 }
167
168 AllocRecordStackTraceElement* StackElement(size_t index) {
169 DCHECK_LT(index, kMaxAllocRecordStackDepth);
170 return &stack_[index];
171 }
172
173 private:
174 jobject type_; // This is a weak global.
175 size_t byte_count_;
176 uint16_t thin_lock_id_;
Ian Rogersc0542af2014-09-03 16:16:56 -0700177 AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth]; // Unused entries have nullptr method.
Elliott Hughes545a0642011-11-08 19:10:03 -0800178};
179
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700180class Breakpoint {
181 public:
Sebastien Hertzf3928792014-11-17 19:00:37 +0100182 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc,
183 DeoptimizationRequest::Kind deoptimization_kind)
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700184 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertzf3928792014-11-17 19:00:37 +0100185 : method_(nullptr), dex_pc_(dex_pc), deoptimization_kind_(deoptimization_kind) {
186 CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing ||
187 deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization ||
188 deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700189 ScopedObjectAccessUnchecked soa(Thread::Current());
190 method_ = soa.EncodeMethod(method);
191 }
192
193 Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
194 : method_(nullptr), dex_pc_(other.dex_pc_),
Sebastien Hertzf3928792014-11-17 19:00:37 +0100195 deoptimization_kind_(other.deoptimization_kind_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700196 ScopedObjectAccessUnchecked soa(Thread::Current());
197 method_ = soa.EncodeMethod(other.Method());
198 }
199
200 mirror::ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
201 ScopedObjectAccessUnchecked soa(Thread::Current());
202 return soa.DecodeMethod(method_);
203 }
204
205 uint32_t DexPc() const {
206 return dex_pc_;
207 }
208
Sebastien Hertzf3928792014-11-17 19:00:37 +0100209 DeoptimizationRequest::Kind GetDeoptimizationKind() const {
210 return deoptimization_kind_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700211 }
212
213 private:
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100214 // The location of this breakpoint.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700215 jmethodID method_;
216 uint32_t dex_pc_;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100217
218 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
Sebastien Hertzf3928792014-11-17 19:00:37 +0100219 DeoptimizationRequest::Kind deoptimization_kind_;
Elliott Hughes86964332012-02-15 19:37:42 -0800220};
221
Sebastien Hertzed2be172014-08-19 15:33:43 +0200222static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700223 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700224 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
Elliott Hughes86964332012-02-15 19:37:42 -0800225 return os;
226}
227
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200228class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800229 public:
230 DebugInstrumentationListener() {}
231 virtual ~DebugInstrumentationListener() {}
232
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200233 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700234 uint32_t dex_pc ATTRIBUTE_UNUSED)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200235 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800236 if (method->IsNative()) {
237 // TODO: post location events is a suspension point and native method entry stubs aren't.
238 return;
239 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100240 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800241 }
242
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200243 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
244 uint32_t dex_pc, const JValue& return_value)
245 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800246 if (method->IsNative()) {
247 // TODO: post location events is a suspension point and native method entry stubs aren't.
248 return;
249 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100250 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800251 }
252
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200253 void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
254 uint32_t dex_pc)
255 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800256 // We're not recorded to listen to this kind of event, so complain.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700257 UNUSED(thread, this_object, method, dex_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800258 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100259 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800260 }
261
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200262 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
263 uint32_t new_dex_pc)
264 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz8379b222014-02-24 17:38:15 +0100265 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800266 }
267
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200268 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
269 uint32_t dex_pc, mirror::ArtField* field)
270 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700271 UNUSED(thread);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200272 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800273 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200274
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700275 void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object,
276 mirror::ArtMethod* method, uint32_t dex_pc, mirror::ArtField* field,
277 const JValue& field_value)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200278 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
279 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
280 }
281
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000282 void ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED, mirror::Throwable* exception_object)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200283 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000284 Dbg::PostException(exception_object);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200285 }
286
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800287 // We only care about how many backward branches were executed in the Jit.
288 void BackwardBranch(Thread* /*thread*/, mirror::ArtMethod* method, int32_t dex_pc_offset)
289 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
290 LOG(ERROR) << "Unexpected backward branch event in debugger " << PrettyMethod(method)
291 << " " << dex_pc_offset;
292 }
293
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200294 private:
295 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800296} gDebugInstrumentationListener;
297
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700298// JDWP is allowed unless the Zygote forbids it.
299static bool gJdwpAllowed = true;
300
Elliott Hughesc0f09332012-03-26 13:27:06 -0700301// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700302static bool gJdwpConfigured = false;
303
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100304// JDWP options for debugging. Only valid if IsJdwpConfigured() is true.
305static JDWP::JdwpOptions gJdwpOptions;
306
Elliott Hughes3bb81562011-10-21 18:52:59 -0700307// Runtime JDWP state.
Ian Rogersc0542af2014-09-03 16:16:56 -0700308static JDWP::JdwpState* gJdwpState = nullptr;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700309static bool gDebuggerConnected; // debugger or DDMS is connected.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700310
Elliott Hughes47fce012011-10-25 18:37:19 -0700311static bool gDdmThreadNotification = false;
312
Elliott Hughes767a1472011-10-26 18:49:02 -0700313// DDMS GC-related settings.
314static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
315static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
316static Dbg::HpsgWhat gDdmHpsgWhat;
317static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
318static Dbg::HpsgWhat gDdmNhsgWhat;
319
Daniel Mihalyieb076692014-08-22 17:33:31 +0200320bool Dbg::gDebuggerActive = false;
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100321bool Dbg::gDisposed = false;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200322ObjectRegistry* Dbg::gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700323
Elliott Hughes545a0642011-11-08 19:10:03 -0800324// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800325AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
326size_t Dbg::alloc_record_max_ = 0;
327size_t Dbg::alloc_record_head_ = 0;
328size_t Dbg::alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -0700329Dbg::TypeCache Dbg::type_cache_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800330
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100331// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100332std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
333size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100334
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200335// Instrumentation event reference counters.
336size_t Dbg::dex_pc_change_event_ref_count_ = 0;
337size_t Dbg::method_enter_event_ref_count_ = 0;
338size_t Dbg::method_exit_event_ref_count_ = 0;
339size_t Dbg::field_read_event_ref_count_ = 0;
340size_t Dbg::field_write_event_ref_count_ = 0;
341size_t Dbg::exception_catch_event_ref_count_ = 0;
342uint32_t Dbg::instrumentation_events_ = 0;
343
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100344// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800345static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800346
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700347void DebugInvokeReq::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
348 receiver.VisitRootIfNonNull(visitor, root_info); // null for static method call.
349 klass.VisitRoot(visitor, root_info);
350 method.VisitRoot(visitor, root_info);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200351}
352
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700353void SingleStepControl::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
354 visitor->VisitRootIfNonNull(reinterpret_cast<mirror::Object**>(&method_), root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700355}
356
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100357void SingleStepControl::AddDexPc(uint32_t dex_pc) {
358 dex_pcs_.insert(dex_pc);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200359}
360
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100361bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
362 return dex_pcs_.find(dex_pc) == dex_pcs_.end();
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200363}
364
Brian Carlstromea46f952013-07-30 01:26:50 -0700365static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800366 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700367 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzed2be172014-08-19 15:33:43 +0200368 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100369 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700370 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
Elliott Hughes86964332012-02-15 19:37:42 -0800371 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
372 return true;
373 }
374 }
375 return false;
376}
377
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100378static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
379 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800380 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
381 // A thread may be suspended for GC; in this code, we really want to know whether
382 // there's a debugger suspension active.
383 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
384}
385
Ian Rogersc0542af2014-09-03 16:16:56 -0700386static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700387 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200388 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700389 if (o == nullptr) {
390 *error = JDWP::ERR_INVALID_OBJECT;
391 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800392 }
393 if (!o->IsArrayInstance()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700394 *error = JDWP::ERR_INVALID_ARRAY;
395 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800396 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700397 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800398 return o->AsArray();
399}
400
Ian Rogersc0542af2014-09-03 16:16:56 -0700401static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700402 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200403 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700404 if (o == nullptr) {
405 *error = JDWP::ERR_INVALID_OBJECT;
406 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800407 }
408 if (!o->IsClass()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700409 *error = JDWP::ERR_INVALID_CLASS;
410 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800411 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700412 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800413 return o->AsClass();
414}
415
Ian Rogersc0542af2014-09-03 16:16:56 -0700416static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
417 JDWP::JdwpError* error)
jeffhaoa77f0f62012-12-05 17:19:31 -0800418 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700419 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
420 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200421 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700422 if (thread_peer == nullptr) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800423 // This isn't even an object.
Ian Rogersc0542af2014-09-03 16:16:56 -0700424 *error = JDWP::ERR_INVALID_OBJECT;
425 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800426 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800427
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800428 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800429 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
430 // This isn't a thread.
Ian Rogersc0542af2014-09-03 16:16:56 -0700431 *error = JDWP::ERR_INVALID_THREAD;
432 return nullptr;
Elliott Hughes221229c2013-01-08 18:17:50 -0800433 }
434
Ian Rogersc0542af2014-09-03 16:16:56 -0700435 Thread* thread = Thread::FromManagedThread(soa, thread_peer);
436 // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a
437 // zombie.
438 *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE;
439 return thread;
Elliott Hughes436e3722012-02-17 20:01:47 -0800440}
441
Elliott Hughes24437992011-11-30 14:49:33 -0800442static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
443 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
444 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
445 return static_cast<JDWP::JdwpTag>(descriptor[0]);
446}
447
Ian Rogers1ff3c982014-08-12 02:30:58 -0700448static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
449 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
450 std::string temp;
451 const char* descriptor = klass->GetDescriptor(&temp);
452 return BasicTagFromDescriptor(descriptor);
453}
454
Ian Rogers98379392014-02-24 16:53:16 -0800455static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700456 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700457 CHECK(c != nullptr);
Elliott Hughes24437992011-11-30 14:49:33 -0800458 if (c->IsArrayClass()) {
459 return JDWP::JT_ARRAY;
460 }
Elliott Hughes24437992011-11-30 14:49:33 -0800461 if (c->IsStringClass()) {
462 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800463 }
Ian Rogers98379392014-02-24 16:53:16 -0800464 if (c->IsClassClass()) {
465 return JDWP::JT_CLASS_OBJECT;
466 }
467 {
468 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
469 if (thread_class->IsAssignableFrom(c)) {
470 return JDWP::JT_THREAD;
471 }
472 }
473 {
474 mirror::Class* thread_group_class =
475 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
476 if (thread_group_class->IsAssignableFrom(c)) {
477 return JDWP::JT_THREAD_GROUP;
478 }
479 }
480 {
481 mirror::Class* class_loader_class =
482 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
483 if (class_loader_class->IsAssignableFrom(c)) {
484 return JDWP::JT_CLASS_LOADER;
485 }
486 }
487 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800488}
489
490/*
491 * Objects declared to hold Object might actually hold a more specific
492 * type. The debugger may take a special interest in these (e.g. it
493 * wants to display the contents of Strings), so we want to return an
494 * appropriate tag.
495 *
496 * Null objects are tagged JT_OBJECT.
497 */
Sebastien Hertz6995c602014-09-09 12:10:13 +0200498JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700499 return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800500}
501
502static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
503 switch (tag) {
504 case JDWP::JT_BOOLEAN:
505 case JDWP::JT_BYTE:
506 case JDWP::JT_CHAR:
507 case JDWP::JT_FLOAT:
508 case JDWP::JT_DOUBLE:
509 case JDWP::JT_INT:
510 case JDWP::JT_LONG:
511 case JDWP::JT_SHORT:
512 case JDWP::JT_VOID:
513 return true;
514 default:
515 return false;
516 }
517}
518
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100519void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700520 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700521 // No JDWP for you!
522 return;
523 }
524
Ian Rogers719d1a32014-03-06 12:13:39 -0800525 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700526 gRegistry = new ObjectRegistry;
527
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700528 // Init JDWP if the debugger is enabled. This may connect out to a
529 // debugger, passively listen for a debugger, or block waiting for a
530 // debugger.
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100531 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
Ian Rogersc0542af2014-09-03 16:16:56 -0700532 if (gJdwpState == nullptr) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800533 // We probably failed because some other process has the port already, which means that
534 // if we don't abort the user is likely to think they're talking to us when they're actually
535 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800536 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700537 }
538
539 // If a debugger has already attached, send the "welcome" message.
540 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700541 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700542 ScopedObjectAccess soa(Thread::Current());
Sebastien Hertz7d955652014-10-22 10:57:10 +0200543 gJdwpState->PostVMStart();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700544 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700545}
546
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700547void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200548 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
549 // destruction of gJdwpState).
550 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
551 gJdwpState->PostVMDeath();
552 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100553 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100554 Dispose();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700555 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800556 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700557 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800558 gRegistry = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700559}
560
Elliott Hughes767a1472011-10-26 18:49:02 -0700561void Dbg::GcDidFinish() {
562 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700563 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700564 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700565 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700566 }
567 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700568 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700569 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700570 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700571 }
572 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700573 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700574 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700575 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700576 }
577}
578
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700579void Dbg::SetJdwpAllowed(bool allowed) {
580 gJdwpAllowed = allowed;
581}
582
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700583DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700584 return Thread::Current()->GetInvokeReq();
585}
586
587Thread* Dbg::GetDebugThread() {
Ian Rogersc0542af2014-09-03 16:16:56 -0700588 return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700589}
590
591void Dbg::ClearWaitForEventThread() {
Sebastien Hertz2bf93f42015-01-09 18:44:05 +0100592 gJdwpState->ReleaseJdwpTokenForEvent();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700593}
594
595void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700596 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800597 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700598 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800599 gDisposed = false;
600}
601
Sebastien Hertzf3928792014-11-17 19:00:37 +0100602bool Dbg::RequiresDeoptimization() {
603 // We don't need deoptimization if everything runs with interpreter after
604 // enabling -Xint mode.
605 return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly();
606}
607
Elliott Hughesa2155262011-11-16 16:26:58 -0800608void Dbg::GoActive() {
609 // Enable all debugging features, including scans for breakpoints.
610 // This is a no-op if we're already active.
611 // Only called from the JDWP handler thread.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200612 if (IsDebuggerActive()) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800613 return;
614 }
615
Elliott Hughesc0f09332012-03-26 13:27:06 -0700616 {
617 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Sebastien Hertzed2be172014-08-19 15:33:43 +0200618 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700619 CHECK_EQ(gBreakpoints.size(), 0U);
620 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800621
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100622 {
Brian Carlstrom306db812014-09-05 13:01:41 -0700623 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100624 CHECK_EQ(deoptimization_requests_.size(), 0U);
625 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200626 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
627 CHECK_EQ(method_enter_event_ref_count_, 0U);
628 CHECK_EQ(method_exit_event_ref_count_, 0U);
629 CHECK_EQ(field_read_event_ref_count_, 0U);
630 CHECK_EQ(field_write_event_ref_count_, 0U);
631 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100632 }
633
Ian Rogers62d6c772013-02-27 08:32:07 -0800634 Runtime* runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700635 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800636 Thread* self = Thread::Current();
637 ThreadState old_state = self->SetStateUnsafe(kRunnable);
638 CHECK_NE(old_state, kRunnable);
Sebastien Hertzf3928792014-11-17 19:00:37 +0100639 if (RequiresDeoptimization()) {
640 runtime->GetInstrumentation()->EnableDeoptimization();
641 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200642 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800643 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800644 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
645 runtime->GetThreadList()->ResumeAll();
646
647 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700648}
649
650void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700651 CHECK(gDebuggerConnected);
652
Elliott Hughesc0f09332012-03-26 13:27:06 -0700653 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700654
Ian Rogers62d6c772013-02-27 08:32:07 -0800655 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
656 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
657 // and clear the object registry.
658 Runtime* runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700659 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800660 Thread* self = Thread::Current();
661 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100662
663 // Debugger may not be active at this point.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200664 if (IsDebuggerActive()) {
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100665 {
666 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
667 // This prevents us from having any pending deoptimization request when the debugger attaches
668 // to us again while no event has been requested yet.
Brian Carlstrom306db812014-09-05 13:01:41 -0700669 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100670 deoptimization_requests_.clear();
671 full_deoptimization_event_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100672 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200673 if (instrumentation_events_ != 0) {
674 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
675 instrumentation_events_);
676 instrumentation_events_ = 0;
677 }
Sebastien Hertzf3928792014-11-17 19:00:37 +0100678 if (RequiresDeoptimization()) {
679 runtime->GetInstrumentation()->DisableDeoptimization();
680 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100681 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100682 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800683 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
684 runtime->GetThreadList()->ResumeAll();
Sebastien Hertz55f65342015-01-13 22:48:34 +0100685
686 {
687 ScopedObjectAccess soa(self);
688 gRegistry->Clear();
689 }
690
691 gDebuggerConnected = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700692}
693
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100694void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) {
695 CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown);
696 gJdwpOptions = jdwp_options;
697 gJdwpConfigured = true;
698}
699
Elliott Hughesc0f09332012-03-26 13:27:06 -0700700bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700701 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700702}
703
704int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800705 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700706}
707
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700708void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700709 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700710}
711
Elliott Hughes88d63092013-01-09 09:55:54 -0800712std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700713 JDWP::JdwpError error;
714 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error);
715 if (o == nullptr) {
716 if (error == JDWP::ERR_NONE) {
717 return "NULL";
718 } else {
719 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
720 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800721 }
722 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700723 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800724 }
Sebastien Hertz6995c602014-09-09 12:10:13 +0200725 return GetClassName(o->AsClass());
726}
727
728std::string Dbg::GetClassName(mirror::Class* klass) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200729 if (klass == nullptr) {
730 return "NULL";
731 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700732 std::string temp;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200733 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700734}
735
Ian Rogersc0542af2014-09-03 16:16:56 -0700736JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800737 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700738 mirror::Class* c = DecodeClass(id, &status);
739 if (c == nullptr) {
740 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800741 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800742 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700743 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800744 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800745}
746
Ian Rogersc0542af2014-09-03 16:16:56 -0700747JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800748 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700749 mirror::Class* c = DecodeClass(id, &status);
750 if (c == nullptr) {
751 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800752 return status;
753 }
754 if (c->IsInterface()) {
755 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700756 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800757 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700758 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800759 }
760 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700761}
762
Elliott Hughes436e3722012-02-17 20:01:47 -0800763JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700764 JDWP::JdwpError error;
765 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
766 if (o == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800767 return JDWP::ERR_INVALID_OBJECT;
768 }
769 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
770 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700771}
772
Elliott Hughes436e3722012-02-17 20:01:47 -0800773JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700774 JDWP::JdwpError error;
775 mirror::Class* c = DecodeClass(id, &error);
776 if (c == nullptr) {
777 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800778 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800779
780 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
781
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700782 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
783 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800784 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700785 if ((access_flags & kAccInterface) == 0) {
786 access_flags |= kAccSuper;
787 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800788
789 expandBufAdd4BE(pReply, access_flags);
790
791 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700792}
793
Ian Rogersc0542af2014-09-03 16:16:56 -0700794JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
795 JDWP::JdwpError error;
796 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
797 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800798 return JDWP::ERR_INVALID_OBJECT;
799 }
800
801 // Ensure all threads are suspended while we read objects' lock words.
802 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100803 CHECK_EQ(self->GetState(), kRunnable);
804 self->TransitionFromRunnableToSuspended(kSuspended);
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700805 Runtime::Current()->GetThreadList()->SuspendAll(__FUNCTION__);
Elliott Hughesf327e072013-01-09 16:01:26 -0800806
807 MonitorInfo monitor_info(o);
808
Sebastien Hertz54263242014-03-19 18:16:50 +0100809 Runtime::Current()->GetThreadList()->ResumeAll();
810 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800811
Ian Rogersc0542af2014-09-03 16:16:56 -0700812 if (monitor_info.owner_ != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700813 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800814 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700815 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800816 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700817 expandBufAdd4BE(reply, monitor_info.entry_count_);
818 expandBufAdd4BE(reply, monitor_info.waiters_.size());
819 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
820 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800821 }
822 return JDWP::ERR_NONE;
823}
824
Elliott Hughes734b8c62013-01-11 15:32:45 -0800825JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700826 std::vector<JDWP::ObjectId>* monitors,
827 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800828 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700829 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700830 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700831 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800832 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700833 : StackVisitor(thread, context), current_stack_depth(0),
834 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800835
836 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
837 // annotalysis.
838 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
839 if (!GetMethod()->IsRuntimeMethod()) {
840 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800841 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800842 }
843 return true;
844 }
845
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700846 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
847 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800848 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700849 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700850 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800851 }
852
Elliott Hughes734b8c62013-01-11 15:32:45 -0800853 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700854 std::vector<JDWP::ObjectId>* const monitors;
855 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800856 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800857
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700858 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700859 Thread* thread;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700860 {
861 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700862 JDWP::JdwpError error;
863 thread = DecodeThread(soa, thread_id, &error);
864 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700865 return error;
866 }
867 if (!IsSuspendedForDebugger(soa, thread)) {
868 return JDWP::ERR_THREAD_NOT_SUSPENDED;
869 }
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) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700879 mirror::Object* contended_monitor_obj;
Elliott Hughesf9501702013-01-11 11:22:27 -0800880 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -0700881 *contended_monitor = 0;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700882 {
883 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700884 JDWP::JdwpError error;
885 Thread* thread = DecodeThread(soa, thread_id, &error);
886 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700887 return error;
888 }
889 if (!IsSuspendedForDebugger(soa, thread)) {
890 return JDWP::ERR_THREAD_NOT_SUSPENDED;
891 }
892 contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Elliott Hughesf9501702013-01-11 11:22:27 -0800893 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700894 // Add() requires the thread_list_lock_ not held to avoid the lock
895 // level violation.
Ian Rogersc0542af2014-09-03 16:16:56 -0700896 *contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -0800897 return JDWP::ERR_NONE;
898}
899
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800900JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -0700901 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800902 gc::Heap* heap = Runtime::Current()->GetHeap();
903 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800904 std::vector<mirror::Class*> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700905 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800906 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700907 JDWP::JdwpError error;
908 mirror::Class* c = DecodeClass(class_ids[i], &error);
909 if (c == nullptr) {
910 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800911 }
912 classes.push_back(c);
Ian Rogersc0542af2014-09-03 16:16:56 -0700913 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800914 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700915 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800916 return JDWP::ERR_NONE;
917}
918
Ian Rogersc0542af2014-09-03 16:16:56 -0700919JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
920 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800921 gc::Heap* heap = Runtime::Current()->GetHeap();
922 // We only want reachable instances, so do a GC.
923 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700924 JDWP::JdwpError error;
925 mirror::Class* c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800926 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700927 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800928 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800929 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800930 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
931 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700932 instances->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes3b78c942013-01-15 17:35:41 -0800933 }
934 return JDWP::ERR_NONE;
935}
936
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800937JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700938 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800939 gc::Heap* heap = Runtime::Current()->GetHeap();
940 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700941 JDWP::JdwpError error;
942 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
943 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800944 return JDWP::ERR_INVALID_OBJECT;
945 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800946 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800947 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800948 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700949 referring_objects->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800950 }
951 return JDWP::ERR_NONE;
952}
953
Ian Rogersc0542af2014-09-03 16:16:56 -0700954JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
955 JDWP::JdwpError error;
956 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
957 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100958 return JDWP::ERR_INVALID_OBJECT;
959 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800960 gRegistry->DisableCollection(object_id);
961 return JDWP::ERR_NONE;
962}
963
Ian Rogersc0542af2014-09-03 16:16:56 -0700964JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
965 JDWP::JdwpError error;
966 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +0100967 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
968 // also ignores these cases and never return an error. However it's not obvious why this command
969 // should behave differently from DisableCollection and IsCollected commands. So let's be more
970 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -0700971 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100972 return JDWP::ERR_INVALID_OBJECT;
973 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800974 gRegistry->EnableCollection(object_id);
975 return JDWP::ERR_NONE;
976}
977
Ian Rogersc0542af2014-09-03 16:16:56 -0700978JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
979 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100980 if (object_id == 0) {
981 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +0100982 return JDWP::ERR_INVALID_OBJECT;
983 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100984 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
985 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -0700986 JDWP::JdwpError error;
987 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
988 if (o != nullptr) {
989 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100990 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800991 return JDWP::ERR_NONE;
992}
993
Ian Rogersc0542af2014-09-03 16:16:56 -0700994void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -0800995 gRegistry->DisposeObject(object_id, reference_count);
996}
997
Sebastien Hertz6995c602014-09-09 12:10:13 +0200998JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +0100999 DCHECK(klass != nullptr);
1000 if (klass->IsArrayClass()) {
1001 return JDWP::TT_ARRAY;
1002 } else if (klass->IsInterface()) {
1003 return JDWP::TT_INTERFACE;
1004 } else {
1005 return JDWP::TT_CLASS;
1006 }
1007}
1008
Elliott Hughes88d63092013-01-09 09:55:54 -08001009JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001010 JDWP::JdwpError error;
1011 mirror::Class* c = DecodeClass(class_id, &error);
1012 if (c == nullptr) {
1013 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001014 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001015
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001016 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1017 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001018 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001019 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001020}
1021
Ian Rogersc0542af2014-09-03 16:16:56 -07001022void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001023 // Get the complete list of reference classes (i.e. all classes except
1024 // the primitive types).
1025 // Returns a newly-allocated buffer full of RefTypeId values.
1026 struct ClassListCreator {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001027 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes_in) : classes(classes_in) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001028 }
1029
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001030 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001031 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1032 }
1033
Elliott Hughes64f574f2013-02-20 14:57:12 -08001034 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1035 // annotalysis.
1036 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001037 if (!c->IsPrimitive()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001038 classes->push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001039 }
1040 return true;
1041 }
1042
Ian Rogersc0542af2014-09-03 16:16:56 -07001043 std::vector<JDWP::RefTypeId>* const classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001044 };
1045
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001046 ClassListCreator clc(classes);
Sebastien Hertz4537c412014-08-28 14:41:50 +02001047 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(ClassListCreator::Visit,
1048 &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001049}
1050
Ian Rogers1ff3c982014-08-12 02:30:58 -07001051JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1052 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001053 JDWP::JdwpError error;
1054 mirror::Class* c = DecodeClass(class_id, &error);
1055 if (c == nullptr) {
1056 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001057 }
1058
Elliott Hughesa2155262011-11-16 16:26:58 -08001059 if (c->IsArrayClass()) {
1060 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1061 *pTypeTag = JDWP::TT_ARRAY;
1062 } else {
1063 if (c->IsErroneous()) {
1064 *pStatus = JDWP::CS_ERROR;
1065 } else {
1066 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1067 }
1068 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1069 }
1070
Ian Rogersc0542af2014-09-03 16:16:56 -07001071 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001072 std::string temp;
1073 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001074 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001075 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001076}
1077
Ian Rogersc0542af2014-09-03 16:16:56 -07001078void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001079 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001080 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001081 ids->clear();
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001082 for (size_t i = 0; i < classes.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001083 ids->push_back(gRegistry->Add(classes[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001084 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001085}
1086
Ian Rogersc0542af2014-09-03 16:16:56 -07001087JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1088 JDWP::JdwpError error;
1089 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1090 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001091 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001092 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001093
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001094 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001095 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001096
1097 expandBufAdd1(pReply, type_tag);
1098 expandBufAddRefTypeId(pReply, type_id);
1099
1100 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001101}
1102
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001103JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001104 JDWP::JdwpError error;
1105 mirror::Class* c = DecodeClass(class_id, &error);
1106 if (c == nullptr) {
1107 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001108 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001109 std::string temp;
1110 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001111 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001112}
1113
Ian Rogersc0542af2014-09-03 16:16:56 -07001114JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1115 JDWP::JdwpError error;
1116 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001117 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001118 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001119 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001120 const char* source_file = c->GetSourceFile();
1121 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001122 return JDWP::ERR_ABSENT_INFORMATION;
1123 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001124 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001125 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001126}
1127
Ian Rogersc0542af2014-09-03 16:16:56 -07001128JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001129 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001130 JDWP::JdwpError error;
1131 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1132 if (error != JDWP::ERR_NONE) {
1133 *tag = JDWP::JT_VOID;
1134 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001135 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001136 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001137 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001138}
1139
Elliott Hughesaed4be92011-12-02 16:16:23 -08001140size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001141 switch (tag) {
1142 case JDWP::JT_VOID:
1143 return 0;
1144 case JDWP::JT_BYTE:
1145 case JDWP::JT_BOOLEAN:
1146 return 1;
1147 case JDWP::JT_CHAR:
1148 case JDWP::JT_SHORT:
1149 return 2;
1150 case JDWP::JT_FLOAT:
1151 case JDWP::JT_INT:
1152 return 4;
1153 case JDWP::JT_ARRAY:
1154 case JDWP::JT_OBJECT:
1155 case JDWP::JT_STRING:
1156 case JDWP::JT_THREAD:
1157 case JDWP::JT_THREAD_GROUP:
1158 case JDWP::JT_CLASS_LOADER:
1159 case JDWP::JT_CLASS_OBJECT:
1160 return sizeof(JDWP::ObjectId);
1161 case JDWP::JT_DOUBLE:
1162 case JDWP::JT_LONG:
1163 return 8;
1164 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001165 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001166 return -1;
1167 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001168}
1169
Ian Rogersc0542af2014-09-03 16:16:56 -07001170JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1171 JDWP::JdwpError error;
1172 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1173 if (a == nullptr) {
1174 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001175 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001176 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001177 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001178}
1179
Elliott Hughes88d63092013-01-09 09:55:54 -08001180JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001181 JDWP::JdwpError error;
1182 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001183 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001184 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001185 }
Elliott Hughes24437992011-11-30 14:49:33 -08001186
1187 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1188 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001189 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001190 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001191 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1192 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001193 expandBufAdd4BE(pReply, count);
1194
Ian Rogers1ff3c982014-08-12 02:30:58 -07001195 if (IsPrimitiveTag(element_tag)) {
1196 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001197 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1198 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001199 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001200 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1201 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001202 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001203 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1204 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001205 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001206 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1207 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001208 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001209 memcpy(dst, &src[offset * width], count * width);
1210 }
1211 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001212 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001213 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001214 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001215 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001216 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001217 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001218 expandBufAdd1(pReply, specific_tag);
1219 expandBufAddObjectId(pReply, gRegistry->Add(element));
1220 }
1221 }
1222
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001223 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001224}
1225
Ian Rogersef7d42f2014-01-06 12:55:46 -08001226template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001227static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001228 NO_THREAD_SAFETY_ANALYSIS {
1229 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001230 DCHECK(a->GetClass()->IsPrimitiveArray());
1231
Ian Rogersef7d42f2014-01-06 12:55:46 -08001232 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001233 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001234 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001235 }
1236}
1237
Elliott Hughes88d63092013-01-09 09:55:54 -08001238JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001239 JDWP::Request* request) {
1240 JDWP::JdwpError error;
1241 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1242 if (dst == nullptr) {
1243 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001244 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001245
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001246 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001247 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001248 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001249 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001250 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001251
Ian Rogers1ff3c982014-08-12 02:30:58 -07001252 if (IsPrimitiveTag(element_tag)) {
1253 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001254 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001255 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001256 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001257 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001258 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001259 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001260 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001261 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001262 }
1263 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001264 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001265 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001266 JDWP::ObjectId id = request->ReadObjectId();
Ian Rogersc0542af2014-09-03 16:16:56 -07001267 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1268 if (error != JDWP::ERR_NONE) {
1269 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001270 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001271 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001272 }
1273 }
1274
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001275 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001276}
1277
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001278JDWP::JdwpError Dbg::CreateString(const std::string& str, JDWP::ObjectId* new_string_id) {
1279 Thread* self = Thread::Current();
1280 mirror::String* new_string = mirror::String::AllocFromModifiedUtf8(self, str.c_str());
1281 if (new_string == nullptr) {
1282 DCHECK(self->IsExceptionPending());
1283 self->ClearException();
1284 LOG(ERROR) << "Could not allocate string";
1285 *new_string_id = 0;
1286 return JDWP::ERR_OUT_OF_MEMORY;
1287 }
1288 *new_string_id = gRegistry->Add(new_string);
1289 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001290}
1291
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001292JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001293 JDWP::JdwpError error;
1294 mirror::Class* c = DecodeClass(class_id, &error);
1295 if (c == nullptr) {
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001296 *new_object_id = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -07001297 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001298 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001299 Thread* self = Thread::Current();
1300 mirror::Object* new_object = c->AllocObject(self);
1301 if (new_object == nullptr) {
1302 DCHECK(self->IsExceptionPending());
1303 self->ClearException();
1304 LOG(ERROR) << "Could not allocate object of type " << PrettyDescriptor(c);
1305 *new_object_id = 0;
1306 return JDWP::ERR_OUT_OF_MEMORY;
1307 }
1308 *new_object_id = gRegistry->Add(new_object);
Elliott Hughes436e3722012-02-17 20:01:47 -08001309 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001310}
1311
Elliott Hughesbf13d362011-12-08 15:51:37 -08001312/*
1313 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1314 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001315JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001316 JDWP::ObjectId* new_array_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001317 JDWP::JdwpError error;
1318 mirror::Class* c = DecodeClass(array_class_id, &error);
1319 if (c == nullptr) {
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001320 *new_array_id = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -07001321 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001322 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001323 Thread* self = Thread::Current();
1324 gc::Heap* heap = Runtime::Current()->GetHeap();
1325 mirror::Array* new_array = mirror::Array::Alloc<true>(self, c, length,
1326 c->GetComponentSizeShift(),
1327 heap->GetCurrentAllocator());
1328 if (new_array == nullptr) {
1329 DCHECK(self->IsExceptionPending());
1330 self->ClearException();
1331 LOG(ERROR) << "Could not allocate array of type " << PrettyDescriptor(c);
1332 *new_array_id = 0;
1333 return JDWP::ERR_OUT_OF_MEMORY;
1334 }
1335 *new_array_id = gRegistry->Add(new_array);
Elliott Hughes436e3722012-02-17 20:01:47 -08001336 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001337}
1338
Sebastien Hertz6995c602014-09-09 12:10:13 +02001339JDWP::FieldId Dbg::ToFieldId(const mirror::ArtField* f) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001340 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001341 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001342}
1343
Brian Carlstromea46f952013-07-30 01:26:50 -07001344static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001345 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001346 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001347 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001348}
1349
Brian Carlstromea46f952013-07-30 01:26:50 -07001350static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001351 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001352 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001353 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001354}
1355
Brian Carlstromea46f952013-07-30 01:26:50 -07001356static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001357 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001358 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001359 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001360}
1361
Sebastien Hertz6995c602014-09-09 12:10:13 +02001362bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1363 CHECK(event_thread != nullptr);
1364 JDWP::JdwpError error;
1365 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(expected_thread_id,
1366 &error);
1367 return expected_thread_peer == event_thread->GetPeer();
1368}
1369
1370bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1371 const JDWP::EventLocation& event_location) {
1372 if (expected_location.dex_pc != event_location.dex_pc) {
1373 return false;
1374 }
1375 mirror::ArtMethod* m = FromMethodId(expected_location.method_id);
1376 return m == event_location.method;
1377}
1378
1379bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001380 if (event_class == nullptr) {
1381 return false;
1382 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02001383 JDWP::JdwpError error;
1384 mirror::Class* expected_class = DecodeClass(class_id, &error);
1385 CHECK(expected_class != nullptr);
1386 return expected_class->IsAssignableFrom(event_class);
1387}
1388
1389bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
1390 mirror::ArtField* event_field) {
1391 mirror::ArtField* expected_field = FromFieldId(expected_field_id);
1392 if (expected_field != event_field) {
1393 return false;
1394 }
1395 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1396}
1397
1398bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1399 JDWP::JdwpError error;
1400 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error);
1401 return modifier_instance == event_instance;
1402}
1403
1404void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001405 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001406 if (m == nullptr) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001407 memset(location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001408 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001409 mirror::Class* c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001410 location->type_tag = GetTypeTag(c);
1411 location->class_id = gRegistry->AddRefType(c);
1412 location->method_id = ToMethodId(m);
1413 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001414 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001415}
1416
Ian Rogersc0542af2014-09-03 16:16:56 -07001417std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001418 mirror::ArtMethod* m = FromMethodId(method_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001419 if (m == nullptr) {
1420 return "NULL";
1421 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001422 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001423}
1424
Ian Rogersc0542af2014-09-03 16:16:56 -07001425std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001426 mirror::ArtField* f = FromFieldId(field_id);
1427 if (f == nullptr) {
1428 return "NULL";
1429 }
1430 return f->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001431}
1432
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001433/*
1434 * Augment the access flags for synthetic methods and fields by setting
1435 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1436 * flags not specified by the Java programming language.
1437 */
1438static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1439 accessFlags &= kAccJavaFlagsMask;
1440 if ((accessFlags & kAccSynthetic) != 0) {
1441 accessFlags |= 0xf0000000;
1442 }
1443 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001444}
1445
Elliott Hughesdbb40792011-11-18 17:05:22 -08001446/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001447 * Circularly shifts registers so that arguments come first. Debuggers
1448 * expect slots to begin with arguments, but dex code places them at
1449 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001450 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001451static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1452 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001453 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001454 if (code_item == nullptr) {
1455 // We should not get here for a method without code (native, proxy or abstract). Log it and
1456 // return the slot as is since all registers are arguments.
1457 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1458 return slot;
1459 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001460 uint16_t ins_size = code_item->ins_size_;
1461 uint16_t locals_size = code_item->registers_size_ - ins_size;
1462 if (slot >= locals_size) {
1463 return slot - locals_size;
1464 } else {
1465 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001466 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001467}
1468
Jeff Haob7cefc72013-11-14 14:51:09 -08001469/*
1470 * Circularly shifts registers so that arguments come last. Reverts
1471 * slots to dex style argument placement.
1472 */
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001473static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001474 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001475 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001476 if (code_item == nullptr) {
1477 // We should not get here for a method without code (native, proxy or abstract). Log it and
1478 // return the slot as is since all registers are arguments.
1479 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001480 uint16_t vreg_count = mirror::ArtMethod::NumArgRegisters(m->GetShorty());
1481 if (slot < vreg_count) {
1482 *error = JDWP::ERR_NONE;
1483 return slot;
1484 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001485 } else {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001486 if (slot < code_item->registers_size_) {
1487 uint16_t ins_size = code_item->ins_size_;
1488 uint16_t locals_size = code_item->registers_size_ - ins_size;
1489 *error = JDWP::ERR_NONE;
1490 return (slot < ins_size) ? slot + locals_size : slot - ins_size;
1491 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001492 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001493
1494 // Slot is invalid in the method.
1495 LOG(ERROR) << "Invalid local slot " << slot << " for method " << PrettyMethod(m);
1496 *error = JDWP::ERR_INVALID_SLOT;
1497 return DexFile::kDexNoIndex16;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001498}
1499
Elliott Hughes88d63092013-01-09 09:55:54 -08001500JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001501 JDWP::JdwpError error;
1502 mirror::Class* c = DecodeClass(class_id, &error);
1503 if (c == nullptr) {
1504 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001505 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001506
1507 size_t instance_field_count = c->NumInstanceFields();
1508 size_t static_field_count = c->NumStaticFields();
1509
1510 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1511
1512 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001513 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001514 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001515 expandBufAddUtf8String(pReply, f->GetName());
1516 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001517 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001518 static const char genericSignature[1] = "";
1519 expandBufAddUtf8String(pReply, genericSignature);
1520 }
1521 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1522 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001523 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001524}
1525
Elliott Hughes88d63092013-01-09 09:55:54 -08001526JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001527 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001528 JDWP::JdwpError error;
1529 mirror::Class* c = DecodeClass(class_id, &error);
1530 if (c == nullptr) {
1531 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001532 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001533
1534 size_t direct_method_count = c->NumDirectMethods();
1535 size_t virtual_method_count = c->NumVirtualMethods();
1536
1537 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1538
1539 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001540 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001541 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001542 expandBufAddUtf8String(pReply, m->GetName());
1543 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001544 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001545 static const char genericSignature[1] = "";
1546 expandBufAddUtf8String(pReply, genericSignature);
1547 }
1548 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1549 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001550 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001551}
1552
Elliott Hughes88d63092013-01-09 09:55:54 -08001553JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001554 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001555 Thread* self = Thread::Current();
1556 StackHandleScope<1> hs(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07001557 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error)));
Mathieu Chartierf8322842014-05-16 10:59:25 -07001558 if (c.Get() == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001559 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001560 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001561 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001562 expandBufAdd4BE(pReply, interface_count);
1563 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001564 expandBufAddRefTypeId(pReply,
1565 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001566 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001567 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001568}
1569
Ian Rogersc0542af2014-09-03 16:16:56 -07001570void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001571 struct DebugCallbackContext {
1572 int numItems;
1573 JDWP::ExpandBuf* pReply;
1574
Elliott Hughes2435a572012-02-17 16:07:41 -08001575 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001576 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1577 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001578 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001579 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001580 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001581 }
1582 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001583 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001584 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001585 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001586 if (code_item == nullptr) {
1587 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001588 start = -1;
1589 end = -1;
1590 } else {
1591 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001592 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001593 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001594 }
1595
1596 expandBufAdd8BE(pReply, start);
1597 expandBufAdd8BE(pReply, end);
1598
1599 // Add numLines later
1600 size_t numLinesOffset = expandBufGetLength(pReply);
1601 expandBufAdd4BE(pReply, 0);
1602
1603 DebugCallbackContext context;
1604 context.numItems = 0;
1605 context.pReply = pReply;
1606
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001607 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001608 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001609 DebugCallbackContext::Callback, nullptr, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001610 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001611
1612 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001613}
1614
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001615void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1616 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001617 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001618 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001619 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001620 size_t variable_count;
1621 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001622
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001623 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1624 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001625 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001626 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1627
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001628 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1629 pContext->variable_count, startAddress, endAddress - startAddress,
1630 name, descriptor, signature, slot,
1631 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001632
Jeff Haob7cefc72013-11-14 14:51:09 -08001633 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001634
Elliott Hughesdbb40792011-11-18 17:05:22 -08001635 expandBufAdd8BE(pContext->pReply, startAddress);
1636 expandBufAddUtf8String(pContext->pReply, name);
1637 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001638 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001639 expandBufAddUtf8String(pContext->pReply, signature);
1640 }
1641 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1642 expandBufAdd4BE(pContext->pReply, slot);
1643
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001644 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001645 }
1646 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001647 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001648
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001649 // arg_count considers doubles and longs to take 2 units.
1650 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001651 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001652 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001653
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001654 // We don't know the total number of variables yet, so leave a blank and update it later.
1655 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001656 expandBufAdd4BE(pReply, 0);
1657
1658 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001659 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001660 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001661 context.variable_count = 0;
1662 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001663
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001664 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001665 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001666 m->GetDexFile()->DecodeDebugInfo(
Ian Rogersc0542af2014-09-03 16:16:56 -07001667 code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001668 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001669 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001670
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001671 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001672}
1673
Jeff Hao579b0242013-11-18 13:16:49 -08001674void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1675 JDWP::ExpandBuf* pReply) {
1676 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001677 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001678 OutputJValue(tag, return_value, pReply);
1679}
1680
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001681void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1682 JDWP::ExpandBuf* pReply) {
1683 mirror::ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001684 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001685 OutputJValue(tag, field_value, pReply);
1686}
1687
Elliott Hughes9777ba22013-01-17 09:04:19 -08001688JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001689 std::vector<uint8_t>* bytecodes) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001690 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001691 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001692 return JDWP::ERR_INVALID_METHODID;
1693 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001694 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001695 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1696 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1697 const uint8_t* end = begin + byte_count;
1698 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001699 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001700 }
1701 return JDWP::ERR_NONE;
1702}
1703
Elliott Hughes88d63092013-01-09 09:55:54 -08001704JDWP::JdwpTag Dbg::GetFieldBasicTag(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 -08001708JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001709 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001710}
1711
Elliott Hughes88d63092013-01-09 09:55:54 -08001712static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1713 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001714 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001715 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001716 JDWP::JdwpError error;
1717 mirror::Class* c = DecodeClass(ref_type_id, &error);
1718 if (ref_type_id != 0 && c == nullptr) {
1719 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001720 }
1721
Sebastien Hertz6995c602014-09-09 12:10:13 +02001722 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001723 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001724 return JDWP::ERR_INVALID_OBJECT;
1725 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001726 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001727
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001728 mirror::Class* receiver_class = c;
Ian Rogersc0542af2014-09-03 16:16:56 -07001729 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001730 receiver_class = o->GetClass();
1731 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001732 // TODO: should we give up now if receiver_class is nullptr?
1733 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001734 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001735 return JDWP::ERR_INVALID_FIELDID;
1736 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001737
Elliott Hughes0cf74332012-02-23 23:14:00 -08001738 // The RI only enforces the static/non-static mismatch in one direction.
1739 // TODO: should we change the tests and check both?
1740 if (is_static) {
1741 if (!f->IsStatic()) {
1742 return JDWP::ERR_INVALID_FIELDID;
1743 }
1744 } else {
1745 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001746 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field "
1747 << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001748 }
1749 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001750 if (f->IsStatic()) {
1751 o = f->GetDeclaringClass();
1752 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001753
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001754 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001755 JValue field_value;
1756 if (tag == JDWP::JT_VOID) {
1757 LOG(FATAL) << "Unknown tag: " << tag;
1758 } else if (!IsPrimitiveTag(tag)) {
1759 field_value.SetL(f->GetObject(o));
1760 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1761 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001762 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001763 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001764 }
Jeff Hao579b0242013-11-18 13:16:49 -08001765 Dbg::OutputJValue(tag, &field_value, pReply);
1766
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001767 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001768}
1769
Elliott Hughes88d63092013-01-09 09:55:54 -08001770JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001771 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001772 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001773}
1774
Ian Rogersc0542af2014-09-03 16:16:56 -07001775JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1776 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001777 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001778}
1779
Elliott Hughes88d63092013-01-09 09:55:54 -08001780static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001781 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001782 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001783 JDWP::JdwpError error;
Sebastien Hertz6995c602014-09-09 12:10:13 +02001784 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001785 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001786 return JDWP::ERR_INVALID_OBJECT;
1787 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001788 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001789
1790 // The RI only enforces the static/non-static mismatch in one direction.
1791 // TODO: should we change the tests and check both?
1792 if (is_static) {
1793 if (!f->IsStatic()) {
1794 return JDWP::ERR_INVALID_FIELDID;
1795 }
1796 } else {
1797 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001798 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001799 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001800 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001801 if (f->IsStatic()) {
1802 o = f->GetDeclaringClass();
1803 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001804
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001805 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001806
1807 if (IsPrimitiveTag(tag)) {
1808 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001809 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001810 // Debugging can't use transactional mode (runtime only).
1811 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001812 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001813 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001814 // Debugging can't use transactional mode (runtime only).
1815 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001816 }
1817 } else {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001818 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001819 if (error != JDWP::ERR_NONE) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001820 return JDWP::ERR_INVALID_OBJECT;
1821 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001822 if (v != nullptr) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001823 mirror::Class* field_type;
1824 {
1825 StackHandleScope<3> hs(Thread::Current());
1826 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1827 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
1828 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07001829 field_type = h_f->GetType<true>();
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001830 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001831 if (!field_type->IsAssignableFrom(v->GetClass())) {
1832 return JDWP::ERR_INVALID_OBJECT;
1833 }
1834 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001835 // Debugging can't use transactional mode (runtime only).
1836 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001837 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001838
1839 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001840}
1841
Elliott Hughes88d63092013-01-09 09:55:54 -08001842JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001843 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001844 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001845}
1846
Elliott Hughes88d63092013-01-09 09:55:54 -08001847JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1848 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001849}
1850
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001851JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001852 JDWP::JdwpError error;
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001853 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error);
1854 if (error != JDWP::ERR_NONE) {
1855 return error;
1856 }
1857 if (obj == nullptr) {
1858 return JDWP::ERR_INVALID_OBJECT;
1859 }
1860 {
1861 ScopedObjectAccessUnchecked soa(Thread::Current());
1862 mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String);
1863 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
1864 // This isn't a string.
1865 return JDWP::ERR_INVALID_STRING;
1866 }
1867 }
1868 *str = obj->AsString()->ToModifiedUtf8();
1869 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001870}
1871
Jeff Hao579b0242013-11-18 13:16:49 -08001872void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1873 if (IsPrimitiveTag(tag)) {
1874 expandBufAdd1(pReply, tag);
1875 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1876 expandBufAdd1(pReply, return_value->GetI());
1877 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1878 expandBufAdd2BE(pReply, return_value->GetI());
1879 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1880 expandBufAdd4BE(pReply, return_value->GetI());
1881 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1882 expandBufAdd8BE(pReply, return_value->GetJ());
1883 } else {
1884 CHECK_EQ(tag, JDWP::JT_VOID);
1885 }
1886 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001887 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001888 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001889 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001890 expandBufAddObjectId(pReply, gRegistry->Add(value));
1891 }
1892}
1893
Ian Rogersc0542af2014-09-03 16:16:56 -07001894JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001895 ScopedObjectAccessUnchecked soa(Thread::Current());
1896 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001897 JDWP::JdwpError error;
1898 Thread* thread = DecodeThread(soa, thread_id, &error);
1899 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001900 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1901 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001902 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001903
1904 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07001905 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1906 CHECK(thread_object != nullptr) << error;
Brian Carlstromea46f952013-07-30 01:26:50 -07001907 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001908 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1909 mirror::String* s =
1910 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Ian Rogersc0542af2014-09-03 16:16:56 -07001911 if (s != nullptr) {
1912 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08001913 }
1914 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001915}
1916
Elliott Hughes221229c2013-01-08 18:17:50 -08001917JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02001918 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001919 JDWP::JdwpError error;
1920 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1921 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001922 return JDWP::ERR_INVALID_OBJECT;
1923 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001924 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001925 // Okay, so it's an object, but is it actually a thread?
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001926 {
1927 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001928 Thread* thread = DecodeThread(soa, thread_id, &error);
1929 UNUSED(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001930 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001931 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1932 // Zombie threads are in the null group.
1933 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001934 error = JDWP::ERR_NONE;
1935 } else if (error == JDWP::ERR_NONE) {
1936 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1937 CHECK(c != nullptr);
Sebastien Hertze49e1952014-10-13 11:27:13 +02001938 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001939 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001940 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001941 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001942 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1943 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001944 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001945 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001946}
1947
Sebastien Hertza06430c2014-09-15 19:21:30 +02001948static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
1949 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
1950 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001951 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,
1952 error);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001953 if (*error != JDWP::ERR_NONE) {
1954 return nullptr;
1955 }
1956 if (thread_group == nullptr) {
1957 *error = JDWP::ERR_INVALID_OBJECT;
1958 return nullptr;
1959 }
Ian Rogers98379392014-02-24 16:53:16 -08001960 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1961 CHECK(c != nullptr);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001962 if (!c->IsAssignableFrom(thread_group->GetClass())) {
1963 // This is not a java.lang.ThreadGroup.
1964 *error = JDWP::ERR_INVALID_THREAD_GROUP;
1965 return nullptr;
1966 }
1967 *error = JDWP::ERR_NONE;
1968 return thread_group;
1969}
1970
1971JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
1972 ScopedObjectAccessUnchecked soa(Thread::Current());
1973 JDWP::JdwpError error;
1974 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
1975 if (error != JDWP::ERR_NONE) {
1976 return error;
1977 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001978 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupName");
Sebastien Hertze49e1952014-10-13 11:27:13 +02001979 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_name);
Ian Rogersc0542af2014-09-03 16:16:56 -07001980 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001981 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Sebastien Hertza06430c2014-09-15 19:21:30 +02001982
1983 std::string thread_group_name(s->ToModifiedUtf8());
1984 expandBufAddUtf8String(pReply, thread_group_name);
1985 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001986}
1987
Sebastien Hertza06430c2014-09-15 19:21:30 +02001988JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08001989 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001990 JDWP::JdwpError error;
Sebastien Hertza06430c2014-09-15 19:21:30 +02001991 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
1992 if (error != JDWP::ERR_NONE) {
1993 return error;
1994 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001995 mirror::Object* parent;
1996 {
1997 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupParent");
Sebastien Hertze49e1952014-10-13 11:27:13 +02001998 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_parent);
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001999 CHECK(f != nullptr);
2000 parent = f->GetObject(thread_group);
2001 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002002 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
2003 expandBufAddObjectId(pReply, parent_group_id);
2004 return JDWP::ERR_NONE;
2005}
2006
2007static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
2008 std::vector<JDWP::ObjectId>* child_thread_group_ids)
2009 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2010 CHECK(thread_group != nullptr);
2011
2012 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Sebastien Hertze49e1952014-10-13 11:27:13 +02002013 mirror::ArtField* groups_field = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_groups);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002014 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Sebastien Hertze49e1952014-10-13 11:27:13 +02002015 {
2016 // The "groups" field is declared as a java.util.List: check it really is
2017 // an instance of java.util.ArrayList.
2018 CHECK(groups_array_list != nullptr);
2019 mirror::Class* java_util_ArrayList_class =
2020 soa.Decode<mirror::Class*>(WellKnownClasses::java_util_ArrayList);
2021 CHECK(groups_array_list->InstanceOf(java_util_ArrayList_class));
2022 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002023
2024 // Get the array and size out of the ArrayList<ThreadGroup>...
Sebastien Hertze49e1952014-10-13 11:27:13 +02002025 mirror::ArtField* array_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_array);
2026 mirror::ArtField* size_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_size);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002027 mirror::ObjectArray<mirror::Object>* groups_array =
2028 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
2029 const int32_t size = size_field->GetInt(groups_array_list);
2030
2031 // Copy the first 'size' elements out of the array into the result.
Sebastien Hertz6995c602014-09-09 12:10:13 +02002032 ObjectRegistry* registry = Dbg::GetObjectRegistry();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002033 for (int32_t i = 0; i < size; ++i) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002034 child_thread_group_ids->push_back(registry->Add(groups_array->Get(i)));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002035 }
2036}
2037
2038JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2039 JDWP::ExpandBuf* pReply) {
2040 ScopedObjectAccessUnchecked soa(Thread::Current());
2041 JDWP::JdwpError error;
2042 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2043 if (error != JDWP::ERR_NONE) {
2044 return error;
2045 }
2046
2047 // Add child threads.
2048 {
2049 std::vector<JDWP::ObjectId> child_thread_ids;
2050 GetThreads(thread_group, &child_thread_ids);
2051 expandBufAdd4BE(pReply, child_thread_ids.size());
2052 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2053 expandBufAddObjectId(pReply, child_thread_id);
2054 }
2055 }
2056
2057 // Add child thread groups.
2058 {
2059 std::vector<JDWP::ObjectId> child_thread_groups_ids;
2060 GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids);
2061 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2062 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2063 expandBufAddObjectId(pReply, child_thread_group_id);
2064 }
2065 }
2066
2067 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002068}
2069
2070JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002071 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07002072 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002073 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002074 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002075}
2076
Jeff Hao920af3e2013-08-28 15:46:38 -07002077JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2078 switch (state) {
2079 case kBlocked:
2080 return JDWP::TS_MONITOR;
2081 case kNative:
2082 case kRunnable:
2083 case kSuspended:
2084 return JDWP::TS_RUNNING;
2085 case kSleeping:
2086 return JDWP::TS_SLEEPING;
2087 case kStarting:
2088 case kTerminated:
2089 return JDWP::TS_ZOMBIE;
2090 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002091 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002092 case kWaitingForDebuggerSend:
2093 case kWaitingForDebuggerSuspension:
2094 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002095 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002096 case kWaitingForGcToComplete:
Jeff Hao920af3e2013-08-28 15:46:38 -07002097 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002098 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002099 case kWaitingForSignalCatcherOutput:
Hiroshi Yamauchi0c8c3032015-01-16 16:54:35 -08002100 case kWaitingForVisitObjects:
Jeff Hao920af3e2013-08-28 15:46:38 -07002101 case kWaitingInMainDebuggerLoop:
2102 case kWaitingInMainSignalCatcherLoop:
2103 case kWaitingPerformingGc:
2104 case kWaiting:
2105 return JDWP::TS_WAIT;
2106 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2107 }
2108 LOG(FATAL) << "Unknown thread state: " << state;
2109 return JDWP::TS_ZOMBIE;
2110}
2111
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002112JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2113 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002114 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002115
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002116 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2117
Ian Rogers50b35e22012-10-04 10:09:15 -07002118 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002119 JDWP::JdwpError error;
2120 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002121 if (error != JDWP::ERR_NONE) {
2122 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2123 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002124 return JDWP::ERR_NONE;
2125 }
2126 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002127 }
2128
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002129 if (IsSuspendedForDebugger(soa, thread)) {
2130 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002131 }
2132
Jeff Hao920af3e2013-08-28 15:46:38 -07002133 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002134 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002135}
2136
Elliott Hughes221229c2013-01-08 18:17:50 -08002137JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002138 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07002139 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002140 JDWP::JdwpError error;
2141 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002142 if (error != JDWP::ERR_NONE) {
2143 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002144 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002145 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002146 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002147 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002148}
2149
Elliott Hughesf9501702013-01-11 11:22:27 -08002150JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2151 ScopedObjectAccess soa(Thread::Current());
2152 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002153 JDWP::JdwpError error;
2154 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002155 if (error != JDWP::ERR_NONE) {
2156 return error;
2157 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002158 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002159 return JDWP::ERR_NONE;
2160}
2161
Sebastien Hertz070f7322014-09-09 12:08:49 +02002162static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa,
2163 mirror::Object* desired_thread_group, mirror::Object* peer)
2164 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2165 // Do we want threads from all thread groups?
2166 if (desired_thread_group == nullptr) {
2167 return true;
2168 }
2169 mirror::ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
2170 DCHECK(thread_group_field != nullptr);
2171 mirror::Object* group = thread_group_field->GetObject(peer);
2172 return (group == desired_thread_group);
2173}
2174
Sebastien Hertza06430c2014-09-15 19:21:30 +02002175void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002176 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz070f7322014-09-09 12:08:49 +02002177 std::list<Thread*> all_threads_list;
2178 {
2179 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2180 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2181 }
2182 for (Thread* t : all_threads_list) {
2183 if (t == Dbg::GetDebugThread()) {
2184 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2185 // query all threads, so it's easier if we just don't tell them about this thread.
2186 continue;
2187 }
2188 if (t->IsStillStarting()) {
2189 // This thread is being started (and has been registered in the thread list). However, it is
2190 // not completely started yet so we must ignore it.
2191 continue;
2192 }
2193 mirror::Object* peer = t->GetPeer();
2194 if (peer == nullptr) {
2195 // peer might be NULL if the thread is still starting up. We can't tell the debugger about
2196 // this thread yet.
2197 // TODO: if we identified threads to the debugger by their Thread*
2198 // rather than their peer's mirror::Object*, we could fix this.
2199 // Doing so might help us report ZOMBIE threads too.
2200 continue;
2201 }
2202 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
2203 thread_ids->push_back(gRegistry->Add(peer));
2204 }
2205 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002206}
Elliott Hughesa2155262011-11-16 16:26:58 -08002207
Ian Rogersc0542af2014-09-03 16:16:56 -07002208static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002209 struct CountStackDepthVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002210 explicit CountStackDepthVisitor(Thread* thread_in)
2211 : StackVisitor(thread_in, nullptr), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002212
Elliott Hughes64f574f2013-02-20 14:57:12 -08002213 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2214 // annotalysis.
2215 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002216 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002217 ++depth;
2218 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002219 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002220 }
2221 size_t depth;
2222 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002223
Ian Rogers7a22fa62013-01-23 12:16:16 -08002224 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002225 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002226 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002227}
2228
Ian Rogersc0542af2014-09-03 16:16:56 -07002229JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002230 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002231 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002232 JDWP::JdwpError error;
2233 *result = 0;
2234 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002235 if (error != JDWP::ERR_NONE) {
2236 return error;
2237 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002238 if (!IsSuspendedForDebugger(soa, thread)) {
2239 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2240 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002241 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002242 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002243}
2244
Ian Rogers306057f2012-11-26 12:45:53 -08002245JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2246 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002247 class GetFrameVisitor : public StackVisitor {
2248 public:
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002249 GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in,
2250 JDWP::ExpandBuf* buf_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002251 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07002252 : StackVisitor(thread, nullptr), depth_(0),
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002253 start_frame_(start_frame_in), frame_count_(frame_count_in), buf_(buf_in) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002254 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002255 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002256
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002257 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2258 // annotalysis.
2259 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002260 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002261 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002262 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002263 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002264 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002265 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002266 if (depth_ >= start_frame_) {
2267 JDWP::FrameId frame_id(GetFrameId());
2268 JDWP::JdwpLocation location;
Sebastien Hertz6995c602014-09-09 12:10:13 +02002269 SetJdwpLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002270 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002271 expandBufAdd8BE(buf_, frame_id);
2272 expandBufAddLocation(buf_, location);
2273 }
2274 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002275 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002276 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002277
2278 private:
2279 size_t depth_;
2280 const size_t start_frame_;
2281 const size_t frame_count_;
2282 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002283 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002284
2285 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002286 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002287 JDWP::JdwpError error;
2288 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002289 if (error != JDWP::ERR_NONE) {
2290 return error;
2291 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002292 if (!IsSuspendedForDebugger(soa, thread)) {
2293 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2294 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002295 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002296 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002297 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002298}
2299
2300JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002301 return GetThreadId(Thread::Current());
2302}
2303
2304JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002305 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002306 return gRegistry->Add(thread->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002307}
2308
Elliott Hughes475fc232011-10-25 15:00:35 -07002309void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002310 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002311}
2312
2313void Dbg::ResumeVM() {
Sebastien Hertz253fa552014-10-14 17:27:15 +02002314 Runtime::Current()->GetThreadList()->ResumeAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002315}
2316
Elliott Hughes221229c2013-01-08 18:17:50 -08002317JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002318 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002319 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002320 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002321 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002322 JDWP::JdwpError error;
2323 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002324 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002325 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002326 return JDWP::ERR_THREAD_NOT_ALIVE;
2327 }
Ian Rogers4ad5cd32014-11-11 23:08:07 -08002328 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002329 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002330 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2331 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2332 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002333 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002334 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002335 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002336 return JDWP::ERR_INTERNAL;
2337 } else {
2338 return JDWP::ERR_THREAD_NOT_ALIVE;
2339 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002340}
2341
Elliott Hughes221229c2013-01-08 18:17:50 -08002342void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002343 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002344 JDWP::JdwpError error;
2345 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2346 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002347 Thread* thread;
2348 {
2349 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2350 thread = Thread::FromManagedThread(soa, peer);
2351 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002352 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002353 LOG(WARNING) << "No such thread for resume: " << peer;
2354 return;
2355 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002356 bool needs_resume;
2357 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002358 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002359 needs_resume = thread->GetSuspendCount() > 0;
2360 }
2361 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002362 Runtime::Current()->GetThreadList()->Resume(thread, true);
2363 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002364}
2365
2366void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002367 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002368}
2369
Ian Rogers0399dde2012-06-06 17:09:28 -07002370struct GetThisVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002371 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002372 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002373 : StackVisitor(thread, context), this_object(nullptr), frame_id(frame_id_in) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002374
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002375 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2376 // annotalysis.
2377 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002378 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002379 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002380 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002381 this_object = GetThisObject();
2382 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002383 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002384 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002385
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002386 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002387 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002388};
2389
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002390JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2391 JDWP::ObjectId* result) {
2392 ScopedObjectAccessUnchecked soa(Thread::Current());
2393 Thread* thread;
2394 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002395 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002396 JDWP::JdwpError error;
2397 thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002398 if (error != JDWP::ERR_NONE) {
2399 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002400 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002401 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002402 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2403 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002404 }
Ian Rogers700a4022014-05-19 16:49:03 -07002405 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002406 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002407 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002408 *result = gRegistry->Add(visitor.this_object);
2409 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002410}
2411
Sebastien Hertz8009f392014-09-01 17:07:11 +02002412// Walks the stack until we find the frame with the given FrameId.
2413class FindFrameVisitor FINAL : public StackVisitor {
2414 public:
2415 FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
2416 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2417 : StackVisitor(thread, context), frame_id_(frame_id), error_(JDWP::ERR_INVALID_FRAMEID) {}
Ian Rogersca190662012-06-26 15:45:57 -07002418
Sebastien Hertz8009f392014-09-01 17:07:11 +02002419 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2420 // annotalysis.
2421 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
2422 if (GetFrameId() != frame_id_) {
2423 return true; // Not our frame, carry on.
Ian Rogers0399dde2012-06-06 17:09:28 -07002424 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002425 mirror::ArtMethod* m = GetMethod();
2426 if (m->IsNative()) {
2427 // We can't read/write local value from/into native method.
2428 error_ = JDWP::ERR_OPAQUE_FRAME;
2429 } else {
2430 // We found our frame.
2431 error_ = JDWP::ERR_NONE;
2432 }
2433 return false;
2434 }
2435
2436 JDWP::JdwpError GetError() const {
2437 return error_;
2438 }
2439
2440 private:
2441 const JDWP::FrameId frame_id_;
2442 JDWP::JdwpError error_;
2443};
2444
2445JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2446 JDWP::ObjectId thread_id = request->ReadThreadId();
2447 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002448
2449 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002450 Thread* thread;
2451 {
2452 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2453 JDWP::JdwpError error;
2454 thread = DecodeThread(soa, thread_id, &error);
2455 if (error != JDWP::ERR_NONE) {
2456 return error;
2457 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002458 if (!IsSuspendedForDebugger(soa, thread)) {
2459 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2460 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002461 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002462 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002463 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002464 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002465 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002466 if (visitor.GetError() != JDWP::ERR_NONE) {
2467 return visitor.GetError();
2468 }
2469
2470 // Read the values from visitor's context.
2471 int32_t slot_count = request->ReadSigned32("slot count");
2472 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2473 for (int32_t i = 0; i < slot_count; ++i) {
2474 uint32_t slot = request->ReadUnsigned32("slot");
2475 JDWP::JdwpTag reqSigByte = request->ReadTag();
2476
2477 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
2478
2479 size_t width = Dbg::GetTagWidth(reqSigByte);
Sebastien Hertz7d955652014-10-22 10:57:10 +02002480 uint8_t* ptr = expandBufAddSpace(pReply, width + 1);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002481 JDWP::JdwpError error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width);
2482 if (error != JDWP::ERR_NONE) {
2483 return error;
2484 }
2485 }
2486 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002487}
2488
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002489constexpr JDWP::JdwpError kStackFrameLocalAccessError = JDWP::ERR_ABSENT_INFORMATION;
2490
2491static std::string GetStackContextAsString(const StackVisitor& visitor)
2492 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2493 return StringPrintf(" at DEX pc 0x%08x in method %s", visitor.GetDexPc(false),
2494 PrettyMethod(visitor.GetMethod()).c_str());
2495}
2496
2497static JDWP::JdwpError FailGetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2498 JDWP::JdwpTag tag)
2499 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2500 LOG(ERROR) << "Failed to read " << tag << " local from register v" << vreg
2501 << GetStackContextAsString(visitor);
2502 return kStackFrameLocalAccessError;
2503}
2504
Sebastien Hertz8009f392014-09-01 17:07:11 +02002505JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2506 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
2507 mirror::ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002508 JDWP::JdwpError error = JDWP::ERR_NONE;
2509 uint16_t vreg = DemangleSlot(slot, m, &error);
2510 if (error != JDWP::ERR_NONE) {
2511 return error;
2512 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002513 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002514 switch (tag) {
2515 case JDWP::JT_BOOLEAN: {
2516 CHECK_EQ(width, 1U);
2517 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002518 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2519 return FailGetLocalValue(visitor, vreg, tag);
Ian Rogers0399dde2012-06-06 17:09:28 -07002520 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002521 VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal;
2522 JDWP::Set1(buf + 1, intVal != 0);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002523 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002524 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002525 case JDWP::JT_BYTE: {
2526 CHECK_EQ(width, 1U);
2527 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002528 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2529 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002530 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002531 VLOG(jdwp) << "get byte local " << vreg << " = " << intVal;
2532 JDWP::Set1(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002533 break;
2534 }
2535 case JDWP::JT_SHORT:
2536 case JDWP::JT_CHAR: {
2537 CHECK_EQ(width, 2U);
2538 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002539 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2540 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002541 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002542 VLOG(jdwp) << "get short/char local " << vreg << " = " << intVal;
2543 JDWP::Set2BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002544 break;
2545 }
2546 case JDWP::JT_INT: {
2547 CHECK_EQ(width, 4U);
2548 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002549 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2550 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002551 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002552 VLOG(jdwp) << "get int local " << vreg << " = " << intVal;
2553 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002554 break;
2555 }
2556 case JDWP::JT_FLOAT: {
2557 CHECK_EQ(width, 4U);
2558 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002559 if (!visitor.GetVReg(m, vreg, kFloatVReg, &intVal)) {
2560 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002561 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002562 VLOG(jdwp) << "get float local " << vreg << " = " << intVal;
2563 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002564 break;
2565 }
2566 case JDWP::JT_ARRAY:
2567 case JDWP::JT_CLASS_LOADER:
2568 case JDWP::JT_CLASS_OBJECT:
2569 case JDWP::JT_OBJECT:
2570 case JDWP::JT_STRING:
2571 case JDWP::JT_THREAD:
2572 case JDWP::JT_THREAD_GROUP: {
2573 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2574 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002575 if (!visitor.GetVReg(m, vreg, kReferenceVReg, &intVal)) {
2576 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002577 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002578 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2579 VLOG(jdwp) << "get " << tag << " object local " << vreg << " = " << o;
2580 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2581 LOG(FATAL) << StringPrintf("Found invalid object %#" PRIxPTR " in register v%u",
2582 reinterpret_cast<uintptr_t>(o), vreg)
2583 << GetStackContextAsString(visitor);
2584 UNREACHABLE();
2585 }
2586 tag = TagFromObject(soa, o);
2587 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002588 break;
2589 }
2590 case JDWP::JT_DOUBLE: {
2591 CHECK_EQ(width, 8U);
2592 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002593 if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2594 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002595 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002596 VLOG(jdwp) << "get double local " << vreg << " = " << longVal;
2597 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002598 break;
2599 }
2600 case JDWP::JT_LONG: {
2601 CHECK_EQ(width, 8U);
2602 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002603 if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) {
2604 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002605 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002606 VLOG(jdwp) << "get long local " << vreg << " = " << longVal;
2607 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002608 break;
2609 }
2610 default:
2611 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002612 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002613 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002614
Sebastien Hertz8009f392014-09-01 17:07:11 +02002615 // Prepend tag, which may have been updated.
2616 JDWP::Set1(buf, tag);
2617 return JDWP::ERR_NONE;
2618}
2619
2620JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2621 JDWP::ObjectId thread_id = request->ReadThreadId();
2622 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002623
2624 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002625 Thread* thread;
2626 {
2627 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2628 JDWP::JdwpError error;
2629 thread = DecodeThread(soa, thread_id, &error);
2630 if (error != JDWP::ERR_NONE) {
2631 return error;
2632 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002633 if (!IsSuspendedForDebugger(soa, thread)) {
2634 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2635 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002636 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002637 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002638 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002639 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002640 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002641 if (visitor.GetError() != JDWP::ERR_NONE) {
2642 return visitor.GetError();
2643 }
2644
2645 // Writes the values into visitor's context.
2646 int32_t slot_count = request->ReadSigned32("slot count");
2647 for (int32_t i = 0; i < slot_count; ++i) {
2648 uint32_t slot = request->ReadUnsigned32("slot");
2649 JDWP::JdwpTag sigByte = request->ReadTag();
2650 size_t width = Dbg::GetTagWidth(sigByte);
2651 uint64_t value = request->ReadValue(width);
2652
2653 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
2654 JDWP::JdwpError error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width);
2655 if (error != JDWP::ERR_NONE) {
2656 return error;
2657 }
2658 }
2659 return JDWP::ERR_NONE;
2660}
2661
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002662template<typename T>
2663static JDWP::JdwpError FailSetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2664 JDWP::JdwpTag tag, T value)
2665 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2666 LOG(ERROR) << "Failed to write " << tag << " local " << value
2667 << " (0x" << std::hex << value << ") into register v" << vreg
2668 << GetStackContextAsString(visitor);
2669 return kStackFrameLocalAccessError;
2670}
2671
Sebastien Hertz8009f392014-09-01 17:07:11 +02002672JDWP::JdwpError Dbg::SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
2673 uint64_t value, size_t width) {
2674 mirror::ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002675 JDWP::JdwpError error = JDWP::ERR_NONE;
2676 uint16_t vreg = DemangleSlot(slot, m, &error);
2677 if (error != JDWP::ERR_NONE) {
2678 return error;
2679 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002680 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002681 switch (tag) {
2682 case JDWP::JT_BOOLEAN:
2683 case JDWP::JT_BYTE:
2684 CHECK_EQ(width, 1U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002685 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2686 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002687 }
2688 break;
2689 case JDWP::JT_SHORT:
2690 case JDWP::JT_CHAR:
2691 CHECK_EQ(width, 2U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002692 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2693 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002694 }
2695 break;
2696 case JDWP::JT_INT:
2697 CHECK_EQ(width, 4U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002698 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2699 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002700 }
2701 break;
2702 case JDWP::JT_FLOAT:
2703 CHECK_EQ(width, 4U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002704 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) {
2705 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002706 }
2707 break;
2708 case JDWP::JT_ARRAY:
2709 case JDWP::JT_CLASS_LOADER:
2710 case JDWP::JT_CLASS_OBJECT:
2711 case JDWP::JT_OBJECT:
2712 case JDWP::JT_STRING:
2713 case JDWP::JT_THREAD:
2714 case JDWP::JT_THREAD_GROUP: {
2715 CHECK_EQ(width, sizeof(JDWP::ObjectId));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002716 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value),
2717 &error);
2718 if (error != JDWP::ERR_NONE) {
2719 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2720 return JDWP::ERR_INVALID_OBJECT;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002721 }
2722 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2723 kReferenceVReg)) {
2724 return FailSetLocalValue(visitor, vreg, tag, reinterpret_cast<uintptr_t>(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002725 }
2726 break;
2727 }
2728 case JDWP::JT_DOUBLE: {
2729 CHECK_EQ(width, 8U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002730 if (!visitor.SetVRegPair(m, vreg, value, kDoubleLoVReg, kDoubleHiVReg)) {
2731 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002732 }
2733 break;
2734 }
2735 case JDWP::JT_LONG: {
2736 CHECK_EQ(width, 8U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002737 if (!visitor.SetVRegPair(m, vreg, value, kLongLoVReg, kLongHiVReg)) {
2738 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002739 }
2740 break;
2741 }
2742 default:
2743 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002744 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002745 }
2746 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002747}
2748
Sebastien Hertz6995c602014-09-09 12:10:13 +02002749static void SetEventLocation(JDWP::EventLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
2750 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2751 DCHECK(location != nullptr);
2752 if (m == nullptr) {
2753 memset(location, 0, sizeof(*location));
2754 } else {
2755 location->method = m;
2756 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002757 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002758}
2759
Ian Rogersef7d42f2014-01-06 12:55:46 -08002760void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002761 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002762 if (!IsDebuggerActive()) {
2763 return;
2764 }
2765 DCHECK(m != nullptr);
2766 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002767 JDWP::EventLocation location;
2768 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002769
Sebastien Hertz6995c602014-09-09 12:10:13 +02002770 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002771}
2772
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002773void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
2774 mirror::Object* this_object, mirror::ArtField* f) {
2775 if (!IsDebuggerActive()) {
2776 return;
2777 }
2778 DCHECK(m != nullptr);
2779 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002780 JDWP::EventLocation location;
2781 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002782
Sebastien Hertz6995c602014-09-09 12:10:13 +02002783 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002784}
2785
2786void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
2787 mirror::Object* this_object, mirror::ArtField* f,
2788 const JValue* field_value) {
2789 if (!IsDebuggerActive()) {
2790 return;
2791 }
2792 DCHECK(m != nullptr);
2793 DCHECK(f != nullptr);
2794 DCHECK(field_value != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002795 JDWP::EventLocation location;
2796 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002797
Sebastien Hertz6995c602014-09-09 12:10:13 +02002798 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002799}
2800
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002801/**
2802 * Finds the location where this exception will be caught. We search until we reach the top
2803 * frame, in which case this exception is considered uncaught.
2804 */
2805class CatchLocationFinder : public StackVisitor {
2806 public:
2807 CatchLocationFinder(Thread* self, const Handle<mirror::Throwable>& exception, Context* context)
2808 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2809 : StackVisitor(self, context),
2810 self_(self),
2811 exception_(exception),
2812 handle_scope_(self),
2813 this_at_throw_(handle_scope_.NewHandle<mirror::Object>(nullptr)),
2814 catch_method_(handle_scope_.NewHandle<mirror::ArtMethod>(nullptr)),
2815 throw_method_(handle_scope_.NewHandle<mirror::ArtMethod>(nullptr)),
2816 catch_dex_pc_(DexFile::kDexNoIndex),
2817 throw_dex_pc_(DexFile::kDexNoIndex) {
2818 }
2819
2820 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2821 mirror::ArtMethod* method = GetMethod();
2822 DCHECK(method != nullptr);
2823 if (method->IsRuntimeMethod()) {
2824 // Ignore callee save method.
2825 DCHECK(method->IsCalleeSaveMethod());
2826 return true;
2827 }
2828
2829 uint32_t dex_pc = GetDexPc();
2830 if (throw_method_.Get() == nullptr) {
2831 // First Java method found. It is either the method that threw the exception,
2832 // or the Java native method that is reporting an exception thrown by
2833 // native code.
2834 this_at_throw_.Assign(GetThisObject());
2835 throw_method_.Assign(method);
2836 throw_dex_pc_ = dex_pc;
2837 }
2838
2839 if (dex_pc != DexFile::kDexNoIndex) {
2840 StackHandleScope<2> hs(self_);
2841 uint32_t found_dex_pc;
2842 Handle<mirror::Class> exception_class(hs.NewHandle(exception_->GetClass()));
2843 Handle<mirror::ArtMethod> h_method(hs.NewHandle(method));
2844 bool unused_clear_exception;
2845 found_dex_pc = mirror::ArtMethod::FindCatchBlock(
2846 h_method, exception_class, dex_pc, &unused_clear_exception);
2847 if (found_dex_pc != DexFile::kDexNoIndex) {
2848 catch_method_.Assign(method);
2849 catch_dex_pc_ = found_dex_pc;
2850 return false; // End stack walk.
2851 }
2852 }
2853 return true; // Continue stack walk.
2854 }
2855
2856 mirror::ArtMethod* GetCatchMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2857 return catch_method_.Get();
2858 }
2859
2860 mirror::ArtMethod* GetThrowMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2861 return throw_method_.Get();
2862 }
2863
2864 mirror::Object* GetThisAtThrow() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2865 return this_at_throw_.Get();
2866 }
2867
2868 uint32_t GetCatchDexPc() const {
2869 return catch_dex_pc_;
2870 }
2871
2872 uint32_t GetThrowDexPc() const {
2873 return throw_dex_pc_;
2874 }
2875
2876 private:
2877 Thread* const self_;
2878 const Handle<mirror::Throwable>& exception_;
2879 StackHandleScope<3> handle_scope_;
2880 MutableHandle<mirror::Object> this_at_throw_;
2881 MutableHandle<mirror::ArtMethod> catch_method_;
2882 MutableHandle<mirror::ArtMethod> throw_method_;
2883 uint32_t catch_dex_pc_;
2884 uint32_t throw_dex_pc_;
2885
2886 DISALLOW_COPY_AND_ASSIGN(CatchLocationFinder);
2887};
2888
2889void Dbg::PostException(mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002890 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002891 return;
2892 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002893 StackHandleScope<1> handle_scope(Thread::Current());
2894 Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object));
2895 std::unique_ptr<Context> context(Context::Create());
2896 CatchLocationFinder clf(Thread::Current(), h_exception, context.get());
2897 clf.WalkStack(/* include_transitions */ false);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002898 JDWP::EventLocation exception_throw_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002899 SetEventLocation(&exception_throw_location, clf.GetThrowMethod(), clf.GetThrowDexPc());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002900 JDWP::EventLocation exception_catch_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002901 SetEventLocation(&exception_catch_location, clf.GetCatchMethod(), clf.GetCatchDexPc());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002902
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002903 gJdwpState->PostException(&exception_throw_location, h_exception.Get(), &exception_catch_location,
2904 clf.GetThisAtThrow());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002905}
2906
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002907void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002908 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002909 return;
2910 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002911 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002912}
2913
Ian Rogers62d6c772013-02-27 08:32:07 -08002914void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002915 mirror::ArtMethod* m, uint32_t dex_pc,
2916 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002917 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002918 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002919 }
2920
Elliott Hughes86964332012-02-15 19:37:42 -08002921 if (IsBreakpoint(m, dex_pc)) {
2922 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002923 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002924
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002925 // If the debugger is single-stepping one of our threads, check to
2926 // see if we're that thread and we've reached a step point.
2927 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002928 if (single_step_control != nullptr) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002929 CHECK(!m->IsNative());
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002930 if (single_step_control->GetStepDepth() == JDWP::SD_INTO) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002931 // Step into method calls. We break when the line number
2932 // or method pointer changes. If we're in SS_MIN mode, we
2933 // always stop.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002934 if (single_step_control->GetMethod() != m) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002935 event_flags |= kSingleStep;
2936 VLOG(jdwp) << "SS new method";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002937 } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002938 event_flags |= kSingleStep;
2939 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002940 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002941 event_flags |= kSingleStep;
2942 VLOG(jdwp) << "SS new line";
2943 }
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002944 } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002945 // Step over method calls. We break when the line number is
2946 // different and the frame depth is <= the original frame
2947 // depth. (We can't just compare on the method, because we
2948 // might get unrolled past it by an exception, and it's tricky
2949 // to identify recursion.)
2950
2951 int stack_depth = GetStackDepth(thread);
2952
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002953 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002954 // Popped up one or more frames, always trigger.
2955 event_flags |= kSingleStep;
2956 VLOG(jdwp) << "SS method pop";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002957 } else if (stack_depth == single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002958 // Same depth, see if we moved.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002959 if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002960 event_flags |= kSingleStep;
2961 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002962 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002963 event_flags |= kSingleStep;
2964 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002965 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002966 }
2967 } else {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002968 CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002969 // Return from the current method. We break when the frame
2970 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002971
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002972 // This differs from the "method exit" break in that it stops
2973 // with the PC at the next instruction in the returned-to
2974 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002975
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002976 int stack_depth = GetStackDepth(thread);
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002977 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002978 event_flags |= kSingleStep;
2979 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002980 }
2981 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002982 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002983
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002984 // If there's something interesting going on, see if it matches one
2985 // of the debugger filters.
2986 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002987 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002988 }
2989}
2990
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002991size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2992 switch (instrumentation_event) {
2993 case instrumentation::Instrumentation::kMethodEntered:
2994 return &method_enter_event_ref_count_;
2995 case instrumentation::Instrumentation::kMethodExited:
2996 return &method_exit_event_ref_count_;
2997 case instrumentation::Instrumentation::kDexPcMoved:
2998 return &dex_pc_change_event_ref_count_;
2999 case instrumentation::Instrumentation::kFieldRead:
3000 return &field_read_event_ref_count_;
3001 case instrumentation::Instrumentation::kFieldWritten:
3002 return &field_write_event_ref_count_;
3003 case instrumentation::Instrumentation::kExceptionCaught:
3004 return &exception_catch_event_ref_count_;
3005 default:
3006 return nullptr;
3007 }
3008}
3009
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003010// Process request while all mutator threads are suspended.
3011void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003012 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003013 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003014 case DeoptimizationRequest::kNothing:
3015 LOG(WARNING) << "Ignoring empty deoptimization request.";
3016 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003017 case DeoptimizationRequest::kRegisterForEvent:
3018 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003019 request.InstrumentationEvent());
3020 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
3021 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003022 break;
3023 case DeoptimizationRequest::kUnregisterForEvent:
3024 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003025 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003026 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003027 request.InstrumentationEvent());
3028 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003029 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003030 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003031 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003032 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003033 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003034 break;
3035 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003036 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003037 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003038 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003039 break;
3040 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003041 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
3042 instrumentation->Deoptimize(request.Method());
3043 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003044 break;
3045 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003046 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
3047 instrumentation->Undeoptimize(request.Method());
3048 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003049 break;
3050 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003051 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003052 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003053 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003054}
3055
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003056void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003057 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003058 // Nothing to do.
3059 return;
3060 }
Brian Carlstrom306db812014-09-05 13:01:41 -07003061 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003062 RequestDeoptimizationLocked(req);
3063}
3064
3065void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003066 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003067 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003068 DCHECK_NE(req.InstrumentationEvent(), 0u);
3069 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003070 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003071 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003072 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003073 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003074 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003075 deoptimization_requests_.push_back(req);
3076 }
3077 *counter = *counter + 1;
3078 break;
3079 }
3080 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003081 DCHECK_NE(req.InstrumentationEvent(), 0u);
3082 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003083 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003084 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003085 *counter = *counter - 1;
3086 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003087 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003088 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003089 deoptimization_requests_.push_back(req);
3090 }
3091 break;
3092 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003093 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003094 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003095 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003096 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3097 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003098 deoptimization_requests_.push_back(req);
3099 }
3100 ++full_deoptimization_event_count_;
3101 break;
3102 }
3103 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003104 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003105 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003106 --full_deoptimization_event_count_;
3107 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003108 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3109 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003110 deoptimization_requests_.push_back(req);
3111 }
3112 break;
3113 }
3114 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003115 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003116 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003117 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003118 deoptimization_requests_.push_back(req);
3119 break;
3120 }
3121 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003122 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003123 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003124 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003125 deoptimization_requests_.push_back(req);
3126 break;
3127 }
3128 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003129 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003130 break;
3131 }
3132 }
3133}
3134
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003135void Dbg::ManageDeoptimization() {
3136 Thread* const self = Thread::Current();
3137 {
3138 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003139 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003140 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003141 return;
3142 }
3143 }
3144 CHECK_EQ(self->GetState(), kRunnable);
3145 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3146 // We need to suspend mutator threads first.
3147 Runtime* const runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07003148 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003149 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003150 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003151 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003152 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003153 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003154 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003155 ProcessDeoptimizationRequest(request);
3156 }
3157 deoptimization_requests_.clear();
3158 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003159 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3160 runtime->GetThreadList()->ResumeAll();
3161 self->TransitionFromSuspendedToRunnable();
3162}
3163
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003164static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3165 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003166 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003167 if (code_item == nullptr) {
3168 // TODO We should not be asked to watch location in a native or abstract method so the code item
3169 // should never be null. We could just check we never encounter this case.
3170 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003171 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003172 // Note: method verifier may cause thread suspension.
3173 self->AssertThreadSuspensionIsAllowable();
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003174 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003175 mirror::Class* declaring_class = m->GetDeclaringClass();
3176 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3177 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003178 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Ian Rogers7b078e82014-09-10 14:44:24 -07003179 verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003180 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method,
Mathieu Chartier4306ef82014-12-19 18:41:47 -08003181 m->GetAccessFlags(), false, true, false, true);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003182 // Note: we don't need to verify the method.
3183 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3184}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003185
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003186static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003187 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003188 for (Breakpoint& breakpoint : gBreakpoints) {
3189 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003190 return &breakpoint;
3191 }
3192 }
3193 return nullptr;
3194}
3195
Mathieu Chartierd8565452015-03-26 09:41:50 -07003196bool Dbg::MethodHasAnyBreakpoints(mirror::ArtMethod* method) {
3197 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
3198 return FindFirstBreakpointForMethod(method) != nullptr;
3199}
3200
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003201// Sanity checks all existing breakpoints on the same method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003202static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m,
3203 DeoptimizationRequest::Kind deoptimization_kind)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003204 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003205 for (const Breakpoint& breakpoint : gBreakpoints) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003206 if (breakpoint.Method() == m) {
3207 CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind());
3208 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003209 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003210 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
3211 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003212 // We should have deoptimized everything but not "selectively" deoptimized this method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003213 CHECK(instrumentation->AreAllMethodsDeoptimized());
3214 CHECK(!instrumentation->IsDeoptimized(m));
3215 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003216 // We should have "selectively" deoptimized this method.
3217 // Note: while we have not deoptimized everything for this method, we may have done it for
3218 // another event.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003219 CHECK(instrumentation->IsDeoptimized(m));
3220 } else {
3221 // This method does not require deoptimization.
3222 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3223 CHECK(!instrumentation->IsDeoptimized(m));
3224 }
3225}
3226
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003227// Returns the deoptimization kind required to set a breakpoint in a method.
3228// If a breakpoint has already been set, we also return the first breakpoint
3229// through the given 'existing_brkpt' pointer.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003230static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self,
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003231 mirror::ArtMethod* m,
3232 const Breakpoint** existing_brkpt)
Sebastien Hertzf3928792014-11-17 19:00:37 +01003233 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
3234 if (!Dbg::RequiresDeoptimization()) {
3235 // We already run in interpreter-only mode so we don't need to deoptimize anything.
3236 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method "
3237 << PrettyMethod(m);
3238 return DeoptimizationRequest::kNothing;
3239 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003240 const Breakpoint* first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003241 {
3242 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003243 first_breakpoint = FindFirstBreakpointForMethod(m);
3244 *existing_brkpt = first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003245 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003246
3247 if (first_breakpoint == nullptr) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003248 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3249 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3250 // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension.
3251 // Therefore we must not hold any lock when we call it.
3252 bool need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3253 if (need_full_deoptimization) {
3254 VLOG(jdwp) << "Need full deoptimization because of possible inlining of method "
3255 << PrettyMethod(m);
3256 return DeoptimizationRequest::kFullDeoptimization;
3257 } else {
3258 // We don't need to deoptimize if the method has not been compiled.
3259 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
3260 const bool is_compiled = class_linker->GetOatMethodQuickCodeFor(m) != nullptr;
3261 if (is_compiled) {
Sebastien Hertz6963e442014-11-26 22:11:27 +01003262 // If the method may be called through its direct code pointer (without loading
3263 // its updated entrypoint), we need full deoptimization to not miss the breakpoint.
3264 if (class_linker->MayBeCalledWithDirectCodePointer(m)) {
3265 VLOG(jdwp) << "Need full deoptimization because of possible direct code call "
3266 << "into image for compiled method " << PrettyMethod(m);
3267 return DeoptimizationRequest::kFullDeoptimization;
3268 } else {
3269 VLOG(jdwp) << "Need selective deoptimization for compiled method " << PrettyMethod(m);
3270 return DeoptimizationRequest::kSelectiveDeoptimization;
3271 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003272 } else {
3273 // Method is not compiled: we don't need to deoptimize.
3274 VLOG(jdwp) << "No need for deoptimization for non-compiled method " << PrettyMethod(m);
3275 return DeoptimizationRequest::kNothing;
3276 }
3277 }
3278 } else {
3279 // There is at least one breakpoint for this method: we don't need to deoptimize.
3280 // Let's check that all breakpoints are configured the same way for deoptimization.
3281 VLOG(jdwp) << "Breakpoint already set: no deoptimization is required";
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003282 DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003283 if (kIsDebugBuild) {
3284 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3285 SanityCheckExistingBreakpoints(m, deoptimization_kind);
3286 }
3287 return DeoptimizationRequest::kNothing;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003288 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003289}
3290
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003291// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3292// request if we need to deoptimize.
3293void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3294 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003295 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003296 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003297
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003298 const Breakpoint* existing_breakpoint = nullptr;
3299 const DeoptimizationRequest::Kind deoptimization_kind =
3300 GetRequiredDeoptimizationKind(self, m, &existing_breakpoint);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003301 req->SetKind(deoptimization_kind);
3302 if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
3303 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003304 } else {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003305 CHECK(deoptimization_kind == DeoptimizationRequest::kNothing ||
3306 deoptimization_kind == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003307 req->SetMethod(nullptr);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003308 }
3309
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003310 {
3311 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003312 // If there is at least one existing breakpoint on the same method, the new breakpoint
3313 // must have the same deoptimization kind than the existing breakpoint(s).
3314 DeoptimizationRequest::Kind breakpoint_deoptimization_kind;
3315 if (existing_breakpoint != nullptr) {
3316 breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind();
3317 } else {
3318 breakpoint_deoptimization_kind = deoptimization_kind;
3319 }
3320 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind));
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003321 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3322 << gBreakpoints[gBreakpoints.size() - 1];
3323 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003324}
3325
3326// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3327// request if we need to undeoptimize.
3328void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003329 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003330 mirror::ArtMethod* m = FromMethodId(location->method_id);
3331 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003332 DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003333 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003334 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003335 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Sebastien Hertzf3928792014-11-17 19:00:37 +01003336 deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind();
3337 DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization,
3338 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003339 gBreakpoints.erase(gBreakpoints.begin() + i);
3340 break;
3341 }
3342 }
3343 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3344 if (existing_breakpoint == nullptr) {
3345 // There is no more breakpoint on this method: we need to undeoptimize.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003346 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003347 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003348 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3349 req->SetMethod(nullptr);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003350 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003351 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003352 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3353 req->SetMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003354 } else {
3355 // This method had no need for deoptimization: do nothing.
3356 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3357 req->SetKind(DeoptimizationRequest::kNothing);
3358 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003359 }
3360 } else {
3361 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003362 req->SetKind(DeoptimizationRequest::kNothing);
3363 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003364 if (kIsDebugBuild) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003365 SanityCheckExistingBreakpoints(m, deoptimization_kind);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003366 }
Elliott Hughes86964332012-02-15 19:37:42 -08003367 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003368}
3369
Daniel Mihalyieb076692014-08-22 17:33:31 +02003370bool Dbg::IsForcedInterpreterNeededForCallingImpl(Thread* thread, mirror::ArtMethod* m) {
3371 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3372 if (ssc == nullptr) {
3373 // If we are not single-stepping, then we don't have to force interpreter.
3374 return false;
3375 }
3376 if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) {
3377 // If we are in interpreter only mode, then we don't have to force interpreter.
3378 return false;
3379 }
3380
3381 if (!m->IsNative() && !m->IsProxyMethod()) {
3382 // If we want to step into a method, then we have to force interpreter on that call.
3383 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3384 return true;
3385 }
3386 }
3387 return false;
3388}
3389
3390bool Dbg::IsForcedInterpreterNeededForResolutionImpl(Thread* thread, mirror::ArtMethod* m) {
3391 instrumentation::Instrumentation* const instrumentation =
3392 Runtime::Current()->GetInstrumentation();
3393 // If we are in interpreter only mode, then we don't have to force interpreter.
3394 if (instrumentation->InterpretOnly()) {
3395 return false;
3396 }
3397 // We can only interpret pure Java method.
3398 if (m->IsNative() || m->IsProxyMethod()) {
3399 return false;
3400 }
3401 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3402 if (ssc != nullptr) {
3403 // If we want to step into a method, then we have to force interpreter on that call.
3404 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3405 return true;
3406 }
3407 // If we are stepping out from a static initializer, by issuing a step
3408 // in or step over, that was implicitly invoked by calling a static method,
3409 // then we need to step into that method. Having a lower stack depth than
3410 // the one the single step control has indicates that the step originates
3411 // from the static initializer.
3412 if (ssc->GetStepDepth() != JDWP::SD_OUT &&
3413 ssc->GetStackDepth() > GetStackDepth(thread)) {
3414 return true;
3415 }
3416 }
3417 // There are cases where we have to force interpreter on deoptimized methods,
3418 // because in some cases the call will not be performed by invoking an entry
3419 // point that has been replaced by the deoptimization, but instead by directly
3420 // invoking the compiled code of the method, for example.
3421 return instrumentation->IsDeoptimized(m);
3422}
3423
3424bool Dbg::IsForcedInstrumentationNeededForResolutionImpl(Thread* thread, mirror::ArtMethod* m) {
3425 // The upcall can be nullptr and in that case we don't need to do anything.
3426 if (m == nullptr) {
3427 return false;
3428 }
3429 instrumentation::Instrumentation* const instrumentation =
3430 Runtime::Current()->GetInstrumentation();
3431 // If we are in interpreter only mode, then we don't have to force interpreter.
3432 if (instrumentation->InterpretOnly()) {
3433 return false;
3434 }
3435 // We can only interpret pure Java method.
3436 if (m->IsNative() || m->IsProxyMethod()) {
3437 return false;
3438 }
3439 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3440 if (ssc != nullptr) {
3441 // If we are stepping out from a static initializer, by issuing a step
3442 // out, that was implicitly invoked by calling a static method, then we
3443 // need to step into the caller of that method. Having a lower stack
3444 // depth than the one the single step control has indicates that the
3445 // step originates from the static initializer.
3446 if (ssc->GetStepDepth() == JDWP::SD_OUT &&
3447 ssc->GetStackDepth() > GetStackDepth(thread)) {
3448 return true;
3449 }
3450 }
3451 // If we are returning from a static intializer, that was implicitly
3452 // invoked by calling a static method and the caller is deoptimized,
3453 // then we have to deoptimize the stack without forcing interpreter
3454 // on the static method that was called originally. This problem can
3455 // be solved easily by forcing instrumentation on the called method,
3456 // because the instrumentation exit hook will recognise the need of
3457 // stack deoptimization by calling IsForcedInterpreterNeededForUpcall.
3458 return instrumentation->IsDeoptimized(m);
3459}
3460
3461bool Dbg::IsForcedInterpreterNeededForUpcallImpl(Thread* thread, mirror::ArtMethod* m) {
3462 // The upcall can be nullptr and in that case we don't need to do anything.
3463 if (m == nullptr) {
3464 return false;
3465 }
3466 instrumentation::Instrumentation* const instrumentation =
3467 Runtime::Current()->GetInstrumentation();
3468 // If we are in interpreter only mode, then we don't have to force interpreter.
3469 if (instrumentation->InterpretOnly()) {
3470 return false;
3471 }
3472 // We can only interpret pure Java method.
3473 if (m->IsNative() || m->IsProxyMethod()) {
3474 return false;
3475 }
3476 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3477 if (ssc != nullptr) {
3478 // The debugger is not interested in what is happening under the level
3479 // of the step, thus we only force interpreter when we are not below of
3480 // the step.
3481 if (ssc->GetStackDepth() >= GetStackDepth(thread)) {
3482 return true;
3483 }
3484 }
3485 // We have to require stack deoptimization if the upcall is deoptimized.
3486 return instrumentation->IsDeoptimized(m);
3487}
3488
Jeff Hao449db332013-04-12 18:30:52 -07003489// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3490// cause suspension if the thread is the current thread.
3491class ScopedThreadSuspension {
3492 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003493 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003494 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003495 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003496 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003497 error_(JDWP::ERR_NONE),
3498 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003499 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003500 ScopedObjectAccessUnchecked soa(self);
3501 {
3502 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003503 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003504 }
3505 if (error_ == JDWP::ERR_NONE) {
3506 if (thread_ == soa.Self()) {
3507 self_suspend_ = true;
3508 } else {
3509 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Sebastien Hertz6995c602014-09-09 12:10:13 +02003510 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003511 bool timed_out;
Ian Rogers4ad5cd32014-11-11 23:08:07 -08003512 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3513 Thread* suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true,
3514 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07003515 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003516 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003517 // Thread terminated from under us while suspending.
3518 error_ = JDWP::ERR_INVALID_THREAD;
3519 } else {
3520 CHECK_EQ(suspended_thread, thread_);
3521 other_suspend_ = true;
3522 }
3523 }
3524 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003525 }
Elliott Hughes86964332012-02-15 19:37:42 -08003526
Jeff Hao449db332013-04-12 18:30:52 -07003527 Thread* GetThread() const {
3528 return thread_;
3529 }
3530
3531 JDWP::JdwpError GetError() const {
3532 return error_;
3533 }
3534
3535 ~ScopedThreadSuspension() {
3536 if (other_suspend_) {
3537 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3538 }
3539 }
3540
3541 private:
3542 Thread* thread_;
3543 JDWP::JdwpError error_;
3544 bool self_suspend_;
3545 bool other_suspend_;
3546};
3547
3548JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3549 JDWP::JdwpStepDepth step_depth) {
3550 Thread* self = Thread::Current();
3551 ScopedThreadSuspension sts(self, thread_id);
3552 if (sts.GetError() != JDWP::ERR_NONE) {
3553 return sts.GetError();
3554 }
3555
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003556 // Work out what ArtMethod* we're in, the current line number, and how deep the stack currently
Elliott Hughes2435a572012-02-17 16:07:41 -08003557 // is for step-out.
Ian Rogers0399dde2012-06-06 17:09:28 -07003558 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003559 explicit SingleStepStackVisitor(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
3560 : StackVisitor(thread, nullptr), stack_depth(0), method(nullptr), line_number(-1) {
Elliott Hughes86964332012-02-15 19:37:42 -08003561 }
Ian Rogersca190662012-06-26 15:45:57 -07003562
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003563 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3564 // annotalysis.
3565 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003566 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003567 if (!m->IsRuntimeMethod()) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003568 ++stack_depth;
3569 if (method == nullptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003570 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003571 method = m;
Ian Rogersc0542af2014-09-03 16:16:56 -07003572 if (dex_cache != nullptr) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003573 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003574 line_number = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003575 }
Elliott Hughes86964332012-02-15 19:37:42 -08003576 }
3577 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003578 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003579 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003580
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003581 int stack_depth;
3582 mirror::ArtMethod* method;
3583 int32_t line_number;
Elliott Hughes86964332012-02-15 19:37:42 -08003584 };
Jeff Hao449db332013-04-12 18:30:52 -07003585
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003586 Thread* const thread = sts.GetThread();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003587 SingleStepStackVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07003588 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003589
Elliott Hughes2435a572012-02-17 16:07:41 -08003590 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
Elliott Hughes2435a572012-02-17 16:07:41 -08003591 struct DebugCallbackContext {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003592 explicit DebugCallbackContext(SingleStepControl* single_step_control_cb,
3593 int32_t line_number_cb, const DexFile::CodeItem* code_item)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003594 : single_step_control_(single_step_control_cb), line_number_(line_number_cb),
3595 code_item_(code_item), last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003596 }
3597
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003598 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number_cb) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003599 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003600 if (static_cast<int32_t>(line_number_cb) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003601 if (!context->last_pc_valid) {
3602 // Everything from this address until the next line change is ours.
3603 context->last_pc = address;
3604 context->last_pc_valid = true;
3605 }
3606 // Otherwise, if we're already in a valid range for this line,
3607 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003608 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003609 // Add everything from the last entry up until here to the set
3610 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003611 context->single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003612 }
3613 context->last_pc_valid = false;
3614 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003615 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003616 }
3617
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003618 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003619 // If the line number was the last in the position table...
3620 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003621 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003622 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003623 single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003624 }
3625 }
3626 }
3627
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003628 SingleStepControl* const single_step_control_;
3629 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003630 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003631 bool last_pc_valid;
3632 uint32_t last_pc;
3633 };
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003634
3635 // Allocate single step.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003636 SingleStepControl* single_step_control =
3637 new (std::nothrow) SingleStepControl(step_size, step_depth,
3638 visitor.stack_depth, visitor.method);
3639 if (single_step_control == nullptr) {
3640 LOG(ERROR) << "Failed to allocate SingleStepControl";
3641 return JDWP::ERR_OUT_OF_MEMORY;
3642 }
3643
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003644 mirror::ArtMethod* m = single_step_control->GetMethod();
3645 const int32_t line_number = visitor.line_number;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003646 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003647 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003648 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003649 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07003650 DebugCallbackContext::Callback, nullptr, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003651 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003652
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003653 // Activate single-step in the thread.
3654 thread->ActivateSingleStepControl(single_step_control);
Elliott Hughes86964332012-02-15 19:37:42 -08003655
Elliott Hughes2435a572012-02-17 16:07:41 -08003656 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003657 VLOG(jdwp) << "Single-step thread: " << *thread;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003658 VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize();
3659 VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth();
3660 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->GetMethod());
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003661 VLOG(jdwp) << "Single-step current line: " << line_number;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003662 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth();
Elliott Hughes2435a572012-02-17 16:07:41 -08003663 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003664 for (uint32_t dex_pc : single_step_control->GetDexPcs()) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003665 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003666 }
3667 }
3668
3669 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003670}
3671
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003672void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3673 ScopedObjectAccessUnchecked soa(Thread::Current());
3674 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003675 JDWP::JdwpError error;
3676 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003677 if (error == JDWP::ERR_NONE) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003678 thread->DeactivateSingleStepControl();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003679 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003680}
3681
Elliott Hughes45651fd2012-02-21 15:48:20 -08003682static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3683 switch (tag) {
3684 default:
3685 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
Ian Rogersfc787ec2014-10-09 21:56:44 -07003686 UNREACHABLE();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003687
3688 // Primitives.
3689 case JDWP::JT_BYTE: return 'B';
3690 case JDWP::JT_CHAR: return 'C';
3691 case JDWP::JT_FLOAT: return 'F';
3692 case JDWP::JT_DOUBLE: return 'D';
3693 case JDWP::JT_INT: return 'I';
3694 case JDWP::JT_LONG: return 'J';
3695 case JDWP::JT_SHORT: return 'S';
3696 case JDWP::JT_VOID: return 'V';
3697 case JDWP::JT_BOOLEAN: return 'Z';
3698
3699 // Reference types.
3700 case JDWP::JT_ARRAY:
3701 case JDWP::JT_OBJECT:
3702 case JDWP::JT_STRING:
3703 case JDWP::JT_THREAD:
3704 case JDWP::JT_THREAD_GROUP:
3705 case JDWP::JT_CLASS_LOADER:
3706 case JDWP::JT_CLASS_OBJECT:
3707 return 'L';
3708 }
3709}
3710
Elliott Hughes88d63092013-01-09 09:55:54 -08003711JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3712 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003713 uint32_t arg_count, uint64_t* arg_values,
3714 JDWP::JdwpTag* arg_types, uint32_t options,
3715 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3716 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003717 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3718
Ian Rogersc0542af2014-09-03 16:16:56 -07003719 Thread* targetThread = nullptr;
Sebastien Hertz1558b572015-02-25 15:05:59 +01003720 std::unique_ptr<DebugInvokeReq> req;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003721 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003722 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003723 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003724 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003725 JDWP::JdwpError error;
3726 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003727 if (error != JDWP::ERR_NONE) {
3728 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3729 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003730 }
Sebastien Hertz1558b572015-02-25 15:05:59 +01003731 if (targetThread->GetInvokeReq() != nullptr) {
3732 // Thread is already invoking a method on behalf of the debugger.
3733 LOG(ERROR) << "InvokeMethod request for thread already invoking a method: " << *targetThread;
3734 return JDWP::ERR_ALREADY_INVOKING;
3735 }
3736 if (!targetThread->IsReadyForDebugInvoke()) {
3737 // Thread is not suspended by an event so it cannot invoke a method.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003738 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3739 return JDWP::ERR_INVALID_THREAD;
3740 }
3741
3742 /*
3743 * We currently have a bug where we don't successfully resume the
3744 * target thread if the suspend count is too deep. We're expected to
3745 * require one "resume" for each "suspend", but when asked to execute
3746 * a method we have to resume fully and then re-suspend it back to the
3747 * same level. (The easiest way to cause this is to type "suspend"
3748 * multiple times in jdb.)
3749 *
3750 * It's unclear what this means when the event specifies "resume all"
3751 * and some threads are suspended more deeply than others. This is
3752 * a rare problem, so for now we just prevent it from hanging forever
3753 * by rejecting the method invocation request. Without this, we will
3754 * be stuck waiting on a suspended thread.
3755 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003756 int suspend_count;
3757 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003758 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003759 suspend_count = targetThread->GetSuspendCount();
3760 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003761 if (suspend_count > 1) {
3762 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003763 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003764 }
3765
Ian Rogersc0542af2014-09-03 16:16:56 -07003766 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3767 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003768 return JDWP::ERR_INVALID_OBJECT;
3769 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003770
Sebastien Hertz1558b572015-02-25 15:05:59 +01003771 gRegistry->Get<mirror::Object*>(thread_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07003772 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003773 return JDWP::ERR_INVALID_OBJECT;
3774 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003775
Ian Rogersc0542af2014-09-03 16:16:56 -07003776 mirror::Class* c = DecodeClass(class_id, &error);
3777 if (c == nullptr) {
3778 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003779 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003780
Brian Carlstromea46f952013-07-30 01:26:50 -07003781 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003782 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003783 return JDWP::ERR_INVALID_METHODID;
3784 }
3785 if (m->IsStatic()) {
3786 if (m->GetDeclaringClass() != c) {
3787 return JDWP::ERR_INVALID_METHODID;
3788 }
3789 } else {
3790 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3791 return JDWP::ERR_INVALID_METHODID;
3792 }
3793 }
3794
3795 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003796 uint32_t shorty_len = 0;
3797 const char* shorty = m->GetShorty(&shorty_len);
3798 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003799 return JDWP::ERR_ILLEGAL_ARGUMENT;
3800 }
Elliott Hughes09201632013-04-15 15:50:07 -07003801
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003802 {
3803 StackHandleScope<3> hs(soa.Self());
Ian Rogersa0485602014-12-02 15:48:04 -08003804 HandleWrapper<mirror::ArtMethod> h_m(hs.NewHandleWrapper(&m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003805 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3806 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3807 const DexFile::TypeList* types = m->GetParameterTypeList();
3808 for (size_t i = 0; i < arg_count; ++i) {
3809 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003810 return JDWP::ERR_ILLEGAL_ARGUMENT;
3811 }
3812
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003813 if (shorty[i + 1] == 'L') {
3814 // Did we really get an argument of an appropriate reference type?
Ian Rogersa0485602014-12-02 15:48:04 -08003815 mirror::Class* parameter_type =
3816 h_m->GetClassFromTypeIndex(types->GetTypeItem(i).type_idx_, true);
Ian Rogersc0542af2014-09-03 16:16:56 -07003817 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
3818 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003819 return JDWP::ERR_INVALID_OBJECT;
3820 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003821 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003822 return JDWP::ERR_ILLEGAL_ARGUMENT;
3823 }
3824
3825 // Turn the on-the-wire ObjectId into a jobject.
3826 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3827 v.l = gRegistry->GetJObject(arg_values[i]);
3828 }
Elliott Hughes09201632013-04-15 15:50:07 -07003829 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003830 }
3831
Sebastien Hertz1558b572015-02-25 15:05:59 +01003832 // Allocates a DebugInvokeReq.
3833 req.reset(new (std::nothrow) DebugInvokeReq(receiver, c, m, options, arg_values, arg_count));
3834 if (req.get() == nullptr) {
3835 LOG(ERROR) << "Failed to allocate DebugInvokeReq";
3836 return JDWP::ERR_OUT_OF_MEMORY;
3837 }
3838
3839 // Attach the DebugInvokeReq to the target thread so it executes the method when
3840 // it is resumed. Once the invocation completes, it will detach it and signal us
3841 // before suspending itself.
3842 targetThread->SetDebugInvokeReq(req.get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003843 }
3844
3845 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3846 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3847 // call, and it's unwise to hold it during WaitForSuspend.
3848
3849 {
3850 /*
3851 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003852 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003853 * run out of memory. It's also a good idea to change it before locking
3854 * the invokeReq mutex, although that should never be held for long.
3855 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003856 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003857
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003858 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003859 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003860 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003861
3862 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003863 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003864 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003865 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003866 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003867 thread_list->Resume(targetThread, true);
3868 }
3869
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003870 // The target thread is resumed but needs the JDWP token we're holding.
3871 // We release it now and will acquire it again when the invocation is
3872 // complete and the target thread suspends itself.
3873 gJdwpState->ReleaseJdwpTokenForCommand();
3874
Elliott Hughesd07986f2011-12-06 18:27:45 -08003875 // Wait for the request to finish executing.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003876 while (targetThread->GetInvokeReq() != nullptr) {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003877 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003878 }
3879 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003880 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003881
3882 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003883 SuspendThread(thread_id, false /* request_suspension */);
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003884
3885 // Now the thread is suspended again, we can re-acquire the JDWP token.
3886 gJdwpState->AcquireJdwpTokenForCommand();
3887
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003888 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003889 }
3890
3891 /*
3892 * Suspend the threads. We waited for the target thread to suspend
3893 * itself, so all we need to do is suspend the others.
3894 *
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003895 * The SuspendAllForDebugger() call will double-suspend the event thread,
Elliott Hughesd07986f2011-12-06 18:27:45 -08003896 * so we want to resume the target thread once to keep the books straight.
3897 */
3898 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003899 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003900 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003901 thread_list->SuspendAllForDebugger();
3902 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003903 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003904 thread_list->Resume(targetThread, true);
3905 }
3906
3907 // Copy the result.
3908 *pResultTag = req->result_tag;
Sebastien Hertz1558b572015-02-25 15:05:59 +01003909 *pResultValue = req->result_value;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003910 *pExceptionId = req->exception;
3911 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003912}
3913
3914void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003915 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003916
Elliott Hughes81ff3182012-03-23 20:35:56 -07003917 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003918 // to preserve that across the method invocation.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003919 StackHandleScope<4> hs(soa.Self());
3920 auto old_exception = hs.NewHandle<mirror::Throwable>(soa.Self()->GetException());
3921 soa.Self()->ClearException();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003922
3923 // Translate the method through the vtable, unless the debugger wants to suppress it.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003924 MutableHandle<mirror::ArtMethod> m(hs.NewHandle(pReq->method.Read()));
3925 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) {
3926 mirror::ArtMethod* actual_method = pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m.Get());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003927 if (actual_method != m.Get()) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01003928 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get())
3929 << " to " << PrettyMethod(actual_method);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003930 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003931 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003932 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003933 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertz1558b572015-02-25 15:05:59 +01003934 << " receiver=" << pReq->receiver.Read()
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003935 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003936 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003937
3938 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3939
Sebastien Hertz1558b572015-02-25 15:05:59 +01003940 JValue result = InvokeWithJValues(soa, pReq->receiver.Read(), soa.EncodeMethod(m.Get()),
3941 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003942
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003943 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Sebastien Hertz1558b572015-02-25 15:05:59 +01003944 const bool is_object_result = (pReq->result_tag == JDWP::JT_OBJECT);
3945 Handle<mirror::Object> object_result = hs.NewHandle(is_object_result ? result.GetL() : nullptr);
3946 Handle<mirror::Throwable> exception = hs.NewHandle(soa.Self()->GetException());
3947 soa.Self()->ClearException();
3948 pReq->exception = gRegistry->Add(exception.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003949 if (pReq->exception != 0) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01003950 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get()
3951 << " " << exception->Dump();
3952 pReq->result_value = 0;
3953 } else if (is_object_result) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003954 /* if no exception thrown, examine object result more closely */
Sebastien Hertz1558b572015-02-25 15:05:59 +01003955 JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003956 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003957 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003958 pReq->result_tag = new_tag;
3959 }
3960
Sebastien Hertz1558b572015-02-25 15:05:59 +01003961 // Register the object in the registry and reference its ObjectId. This ensures
3962 // GC safety and prevents from accessing stale reference if the object is moved.
3963 pReq->result_value = gRegistry->Add(object_result.Get());
3964 } else {
3965 // Primitive result.
3966 DCHECK(IsPrimitiveTag(pReq->result_tag));
3967 pReq->result_value = result.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003968 }
3969
Ian Rogersc0542af2014-09-03 16:16:56 -07003970 if (old_exception.Get() != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003971 soa.Self()->SetException(old_exception.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003972 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003973}
3974
Elliott Hughesd07986f2011-12-06 18:27:45 -08003975/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003976 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003977 * need to process each, accumulate the replies, and ship the whole thing
3978 * back.
3979 *
3980 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3981 * and includes the chunk type/length, followed by the data.
3982 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003983 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003984 * chunk. If this becomes inconvenient we will need to adapt.
3985 */
Ian Rogersc0542af2014-09-03 16:16:56 -07003986bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003987 Thread* self = Thread::Current();
3988 JNIEnv* env = self->GetJniEnv();
3989
Ian Rogersc0542af2014-09-03 16:16:56 -07003990 uint32_t type = request->ReadUnsigned32("type");
3991 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003992
3993 // Create a byte[] corresponding to 'request'.
Ian Rogersc0542af2014-09-03 16:16:56 -07003994 size_t request_length = request->size();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003995 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Ian Rogersc0542af2014-09-03 16:16:56 -07003996 if (dataArray.get() == nullptr) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003997 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003998 env->ExceptionClear();
3999 return false;
4000 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004001 env->SetByteArrayRegion(dataArray.get(), 0, request_length,
4002 reinterpret_cast<const jbyte*>(request->data()));
4003 request->Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004004
4005 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004006 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004007 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08004008 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004009 return false;
4010 }
4011
4012 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07004013 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4014 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004015 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004016 if (env->ExceptionCheck()) {
4017 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
4018 env->ExceptionDescribe();
4019 env->ExceptionClear();
4020 return false;
4021 }
4022
Ian Rogersc0542af2014-09-03 16:16:56 -07004023 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004024 return false;
4025 }
4026
4027 /*
4028 * Pull the pieces out of the chunk. We copy the results into a
4029 * newly-allocated buffer that the caller can free. We don't want to
4030 * continue using the Chunk object because nothing has a reference to it.
4031 *
4032 * We could avoid this by returning type/data/offset/length and having
4033 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07004034 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004035 * if we have responses for multiple chunks.
4036 *
4037 * So we're pretty much stuck with copying data around multiple times.
4038 */
Elliott Hugheseac76672012-05-24 21:56:51 -07004039 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 -08004040 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07004041 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07004042 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004043
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004044 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 -07004045 if (length == 0 || replyData.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004046 return false;
4047 }
4048
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004049 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004050 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
Ian Rogersc0542af2014-09-03 16:16:56 -07004051 if (reply == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004052 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
4053 return false;
4054 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07004055 JDWP::Set4BE(reply + 0, type);
4056 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004057 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004058
4059 *pReplyBuf = reply;
4060 *pReplyLen = length + kChunkHdrLen;
4061
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004062 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004063 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004064}
4065
Elliott Hughesa2155262011-11-16 16:26:58 -08004066void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004067 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07004068
4069 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07004070 if (self->GetState() != kRunnable) {
4071 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
4072 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07004073 }
4074
4075 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07004076 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07004077 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4078 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
4079 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07004080 if (env->ExceptionCheck()) {
4081 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
4082 env->ExceptionDescribe();
4083 env->ExceptionClear();
4084 }
4085}
4086
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004087void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004088 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004089}
4090
4091void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004092 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07004093 gDdmThreadNotification = false;
4094}
4095
4096/*
Elliott Hughes82188472011-11-07 18:11:48 -08004097 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07004098 *
4099 * Because we broadcast the full set of threads when the notifications are
4100 * first enabled, it's possible for "thread" to be actively executing.
4101 */
Elliott Hughes82188472011-11-07 18:11:48 -08004102void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004103 if (!gDdmThreadNotification) {
4104 return;
4105 }
4106
Elliott Hughes82188472011-11-07 18:11:48 -08004107 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004108 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004109 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07004110 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08004111 } else {
4112 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004113 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004114 StackHandleScope<1> hs(soa.Self());
4115 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
Ian Rogersc0542af2014-09-03 16:16:56 -07004116 size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0;
4117 const jchar* chars = (name.Get() != nullptr) ? name->GetCharArray()->GetData() : nullptr;
Elliott Hughes82188472011-11-07 18:11:48 -08004118
Elliott Hughes21f32d72011-11-09 17:44:13 -08004119 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004120 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004121 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08004122 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
4123 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07004124 }
4125}
4126
Elliott Hughes47fce012011-10-25 18:37:19 -07004127void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004128 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07004129 gDdmThreadNotification = enable;
4130 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004131 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
4132 // see a suspension in progress and block until that ends. They then post their own start
4133 // notification.
4134 SuspendVM();
4135 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07004136 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004137 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004138 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004139 threads = Runtime::Current()->GetThreadList()->GetList();
4140 }
4141 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004142 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07004143 for (Thread* thread : threads) {
4144 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004145 }
4146 }
4147 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07004148 }
4149}
4150
Elliott Hughesa2155262011-11-16 16:26:58 -08004151void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07004152 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02004153 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004154 }
Elliott Hughes82188472011-11-07 18:11:48 -08004155 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07004156}
4157
4158void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004159 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004160}
4161
4162void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004163 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004164}
4165
Elliott Hughes82188472011-11-07 18:11:48 -08004166void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004167 CHECK(buf != nullptr);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004168 iovec vec[1];
4169 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
4170 vec[0].iov_len = byte_count;
4171 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004172}
4173
Elliott Hughes21f32d72011-11-09 17:44:13 -08004174void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
4175 DdmSendChunk(type, bytes.size(), &bytes[0]);
4176}
4177
Brian Carlstromf5293522013-07-19 00:24:00 -07004178void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004179 if (gJdwpState == nullptr) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004180 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07004181 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08004182 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004183 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004184}
4185
Mathieu Chartierad466ad2015-01-08 16:28:08 -08004186JDWP::JdwpState* Dbg::GetJdwpState() {
4187 return gJdwpState;
4188}
4189
Elliott Hughes767a1472011-10-26 18:49:02 -07004190int Dbg::DdmHandleHpifChunk(HpifWhen when) {
4191 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07004192 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07004193 return true;
4194 }
4195
4196 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4197 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4198 return false;
4199 }
4200
4201 gDdmHpifWhen = when;
4202 return true;
4203}
4204
4205bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4206 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4207 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4208 return false;
4209 }
4210
4211 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4212 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4213 return false;
4214 }
4215
4216 if (native) {
4217 gDdmNhsgWhen = when;
4218 gDdmNhsgWhat = what;
4219 } else {
4220 gDdmHpsgWhen = when;
4221 gDdmHpsgWhat = what;
4222 }
4223 return true;
4224}
4225
Elliott Hughes7162ad92011-10-27 14:08:42 -07004226void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4227 // If there's a one-shot 'when', reset it.
4228 if (reason == gDdmHpifWhen) {
4229 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4230 gDdmHpifWhen = HPIF_WHEN_NEVER;
4231 }
4232 }
4233
4234 /*
4235 * Chunk HPIF (client --> server)
4236 *
4237 * Heap Info. General information about the heap,
4238 * suitable for a summary display.
4239 *
4240 * [u4]: number of heaps
4241 *
4242 * For each heap:
4243 * [u4]: heap ID
4244 * [u8]: timestamp in ms since Unix epoch
4245 * [u1]: capture reason (same as 'when' value from server)
4246 * [u4]: max heap size in bytes (-Xmx)
4247 * [u4]: current heap size in bytes
4248 * [u4]: current number of bytes allocated
4249 * [u4]: current number of objects allocated
4250 */
4251 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004252 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004253 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004254 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004255 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004256 JDWP::Append8BE(bytes, MilliTime());
4257 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004258 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4259 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004260 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4261 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004262 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
4263 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07004264}
4265
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004266enum HpsgSolidity {
4267 SOLIDITY_FREE = 0,
4268 SOLIDITY_HARD = 1,
4269 SOLIDITY_SOFT = 2,
4270 SOLIDITY_WEAK = 3,
4271 SOLIDITY_PHANTOM = 4,
4272 SOLIDITY_FINALIZABLE = 5,
4273 SOLIDITY_SWEEP = 6,
4274};
4275
4276enum HpsgKind {
4277 KIND_OBJECT = 0,
4278 KIND_CLASS_OBJECT = 1,
4279 KIND_ARRAY_1 = 2,
4280 KIND_ARRAY_2 = 3,
4281 KIND_ARRAY_4 = 4,
4282 KIND_ARRAY_8 = 5,
4283 KIND_UNKNOWN = 6,
4284 KIND_NATIVE = 7,
4285};
4286
4287#define HPSG_PARTIAL (1<<7)
4288#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4289
Ian Rogers30fab402012-01-23 15:43:46 -08004290class HeapChunkContext {
4291 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004292 // Maximum chunk size. Obtain this from the formula:
4293 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4294 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004295 : buf_(16384 - 16),
4296 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004297 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004298 Reset();
4299 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004300 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004301 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004302 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004303 }
4304 }
4305
4306 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004307 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004308 Flush();
4309 }
4310 }
4311
Mathieu Chartier36dab362014-07-30 14:59:56 -07004312 void SetChunkOverhead(size_t chunk_overhead) {
4313 chunk_overhead_ = chunk_overhead;
4314 }
4315
4316 void ResetStartOfNextChunk() {
4317 startOfNextMemoryChunk_ = nullptr;
4318 }
4319
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004320 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004321 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004322 return;
4323 }
4324
4325 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004326 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4327 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004328
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004329 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4330 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004331 // [u4]: length of piece, in allocation units
4332 // 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 -08004333 pieceLenField_ = p_;
4334 JDWP::Write4BE(&p_, 0x55555555);
4335 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004336 }
4337
Ian Rogersb726dcb2012-09-05 08:57:23 -07004338 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004339 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004340 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4341 CHECK(needHeader_);
4342 return;
4343 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004344 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004345 CHECK_LE(&buf_[0], pieceLenField_);
4346 CHECK_LE(pieceLenField_, p_);
4347 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004348
Ian Rogers30fab402012-01-23 15:43:46 -08004349 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004350 Reset();
4351 }
4352
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004353 static void HeapChunkJavaCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004354 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4355 Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004356 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes);
4357 }
4358
4359 static void HeapChunkNativeCallback(void* start, void* end, size_t used_bytes, void* arg)
4360 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4361 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004362 }
4363
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004364 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004365 enum { ALLOCATION_UNIT_SIZE = 8 };
4366
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004367 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004368 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004369 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004370 totalAllocationUnits_ = 0;
4371 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004372 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004373 }
4374
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004375 bool IsNative() const {
4376 return type_ == CHUNK_TYPE("NHSG");
4377 }
4378
4379 // Returns true if the object is not an empty chunk.
4380 bool ProcessRecord(void* start, size_t used_bytes) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004381 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4382 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004383 if (used_bytes == 0) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004384 if (start == nullptr) {
4385 // Reset for start of new heap.
4386 startOfNextMemoryChunk_ = nullptr;
4387 Flush();
4388 }
4389 // Only process in use memory so that free region information
4390 // also includes dlmalloc book keeping.
4391 return false;
Elliott Hughesa2155262011-11-16 16:26:58 -08004392 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004393 if (startOfNextMemoryChunk_ != nullptr) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004394 // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because
4395 // of the use of mmaps, so don't report. If not free memory then start a new segment.
4396 bool flush = true;
4397 if (start > startOfNextMemoryChunk_) {
4398 const size_t kMaxFreeLen = 2 * kPageSize;
4399 void* free_start = startOfNextMemoryChunk_;
4400 void* free_end = start;
4401 const size_t free_len =
4402 reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start);
4403 if (!IsNative() || free_len < kMaxFreeLen) {
4404 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative());
4405 flush = false;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004406 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004407 }
4408 if (flush) {
4409 startOfNextMemoryChunk_ = nullptr;
4410 Flush();
4411 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004412 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004413 return true;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004414 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004415
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004416 void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes)
4417 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4418 if (ProcessRecord(start, used_bytes)) {
4419 uint8_t state = ExamineNativeObject(start);
4420 AppendChunk(state, start, used_bytes + chunk_overhead_, true /*is_native*/);
4421 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4422 }
4423 }
4424
4425 void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes)
4426 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
4427 if (ProcessRecord(start, used_bytes)) {
4428 // Determine the type of this chunk.
4429 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4430 // If it's the same, we should combine them.
4431 uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start));
4432 AppendChunk(state, start, used_bytes + chunk_overhead_, false /*is_native*/);
4433 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4434 }
4435 }
4436
4437 void AppendChunk(uint8_t state, void* ptr, size_t length, bool is_native)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004438 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004439 // Make sure there's enough room left in the buffer.
4440 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4441 // 17 bytes for any header.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004442 const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17;
4443 size_t byte_left = &buf_.back() - p_;
4444 if (byte_left < needed) {
4445 if (is_native) {
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004446 // Cannot trigger memory allocation while walking native heap.
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004447 return;
4448 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004449 Flush();
4450 }
4451
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004452 byte_left = &buf_.back() - p_;
4453 if (byte_left < needed) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004454 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4455 << needed << " bytes)";
4456 return;
4457 }
4458 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004459 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004460 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4461 totalAllocationUnits_ += length;
4462 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004463 *p_++ = state | HPSG_PARTIAL;
4464 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004465 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004466 }
Ian Rogers30fab402012-01-23 15:43:46 -08004467 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004468 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004469 }
4470
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004471 uint8_t ExamineNativeObject(const void* p) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4472 return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4473 }
4474
4475 uint8_t ExamineJavaObject(mirror::Object* o)
Ian Rogersef7d42f2014-01-06 12:55:46 -08004476 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004477 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004478 return HPSG_STATE(SOLIDITY_FREE, 0);
4479 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004480 // It's an allocated chunk. Figure out what it is.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004481 gc::Heap* heap = Runtime::Current()->GetHeap();
4482 if (!heap->IsLiveObjectLocked(o)) {
4483 LOG(ERROR) << "Invalid object in managed heap: " << o;
Elliott Hughesa2155262011-11-16 16:26:58 -08004484 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4485 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004486 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004487 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004488 // The object was probably just created but hasn't been initialized yet.
4489 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4490 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004491 if (!heap->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004492 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004493 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4494 }
Mathieu Chartierf26e1b32015-01-29 10:47:10 -08004495 if (c->GetClass() == nullptr) {
4496 LOG(ERROR) << "Null class of class " << c << " for object " << o;
4497 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4498 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004499 if (c->IsClassClass()) {
4500 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4501 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004502 if (c->IsArrayClass()) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004503 switch (c->GetComponentSize()) {
4504 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4505 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4506 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4507 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4508 }
4509 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004510 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4511 }
4512
Ian Rogers30fab402012-01-23 15:43:46 -08004513 std::vector<uint8_t> buf_;
4514 uint8_t* p_;
4515 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004516 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004517 size_t totalAllocationUnits_;
4518 uint32_t type_;
Ian Rogers30fab402012-01-23 15:43:46 -08004519 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004520 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004521
Elliott Hughesa2155262011-11-16 16:26:58 -08004522 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4523};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004524
Mathieu Chartier36dab362014-07-30 14:59:56 -07004525static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
4526 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
4527 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004528 HeapChunkContext::HeapChunkJavaCallback(
Mathieu Chartier36dab362014-07-30 14:59:56 -07004529 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4530}
4531
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004532void Dbg::DdmSendHeapSegments(bool native) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004533 Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen;
4534 Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004535 if (when == HPSG_WHEN_NEVER) {
4536 return;
4537 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004538 // Figure out what kind of chunks we'll be sending.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004539 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS)
4540 << static_cast<int>(what);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004541
4542 // First, send a heap start chunk.
4543 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004544 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004545 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004546 Thread* self = Thread::Current();
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004547 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004548
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004549 // Send a series of heap segment chunks.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004550 HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native);
Elliott Hughesa2155262011-11-16 16:26:58 -08004551 if (native) {
Ian Rogers872dd822014-10-30 11:19:14 -07004552#if defined(HAVE_ANDROID_OS) && defined(USE_DLMALLOC)
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004553 dlmalloc_inspect_all(HeapChunkContext::HeapChunkNativeCallback, &context);
4554 HeapChunkContext::HeapChunkNativeCallback(nullptr, nullptr, 0, &context); // Indicate end of a space.
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004555#else
4556 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4557#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004558 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004559 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004560 for (const auto& space : heap->GetContinuousSpaces()) {
4561 if (space->IsDlMallocSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004562 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004563 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4564 // allocation then the first sizeof(size_t) may belong to it.
4565 context.SetChunkOverhead(sizeof(size_t));
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004566 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004567 } else if (space->IsRosAllocSpace()) {
4568 context.SetChunkOverhead(0);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004569 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4570 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
4571 self->TransitionFromRunnableToSuspended(kSuspended);
4572 ThreadList* tl = Runtime::Current()->GetThreadList();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07004573 tl->SuspendAll(__FUNCTION__);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004574 {
4575 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004576 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004577 }
4578 tl->ResumeAll();
4579 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004580 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004581 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004582 context.SetChunkOverhead(0);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004583 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004584 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004585 } else if (space->IsRegionSpace()) {
4586 heap->IncrementDisableMovingGC(self);
4587 self->TransitionFromRunnableToSuspended(kSuspended);
4588 ThreadList* tl = Runtime::Current()->GetThreadList();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07004589 tl->SuspendAll(__FUNCTION__);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004590 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4591 context.SetChunkOverhead(0);
4592 space->AsRegionSpace()->Walk(BumpPointerSpaceCallback, &context);
4593 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
4594 tl->ResumeAll();
4595 self->TransitionFromSuspendedToRunnable();
4596 heap->DecrementDisableMovingGC(self);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004597 } else {
4598 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004599 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004600 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004601 }
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004602 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004603 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004604 context.SetChunkOverhead(0);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004605 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004606 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004607
4608 // Finally, send a heap end chunk.
4609 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004610}
4611
Elliott Hughesb1a58792013-07-11 18:10:58 -07004612static size_t GetAllocTrackerMax() {
4613#ifdef HAVE_ANDROID_OS
4614 // Check whether there's a system property overriding the number of records.
4615 const char* propertyName = "dalvik.vm.allocTrackerMax";
4616 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4617 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4618 char* end;
4619 size_t value = strtoul(allocRecordMaxString, &end, 10);
4620 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004621 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4622 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004623 return kDefaultNumAllocRecords;
4624 }
4625 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004626 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4627 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004628 return kDefaultNumAllocRecords;
4629 }
4630 return value;
4631 }
4632#endif
4633 return kDefaultNumAllocRecords;
4634}
4635
Brian Carlstrom306db812014-09-05 13:01:41 -07004636void Dbg::SetAllocTrackingEnabled(bool enable) {
4637 Thread* self = Thread::Current();
4638 if (enable) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004639 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004640 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4641 if (recent_allocation_records_ != nullptr) {
4642 return; // Already enabled, bail.
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004643 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004644 alloc_record_max_ = GetAllocTrackerMax();
4645 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4646 << kMaxAllocRecordStackDepth << " frames, taking "
4647 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4648 DCHECK_EQ(alloc_record_head_, 0U);
4649 DCHECK_EQ(alloc_record_count_, 0U);
4650 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4651 CHECK(recent_allocation_records_ != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004652 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004653 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004654 } else {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004655 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004656 ScopedObjectAccess soa(self); // For type_cache_.Clear();
4657 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4658 if (recent_allocation_records_ == nullptr) {
4659 return; // Already disabled, bail.
4660 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07004661 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004662 delete[] recent_allocation_records_;
Ian Rogersc0542af2014-09-03 16:16:56 -07004663 recent_allocation_records_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -07004664 alloc_record_head_ = 0;
4665 alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004666 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004667 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004668 // If an allocation comes in before we uninstrument, we will safely drop it on the floor.
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004669 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004670 }
4671}
4672
Ian Rogers0399dde2012-06-06 17:09:28 -07004673struct AllocRecordStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004674 AllocRecordStackVisitor(Thread* thread, AllocRecord* record_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004675 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004676 : StackVisitor(thread, nullptr), record(record_in), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004677
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004678 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4679 // annotalysis.
4680 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004681 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004682 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004683 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004684 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004685 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004686 record->StackElement(depth)->SetMethod(m);
4687 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004688 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004689 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004690 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004691 }
4692
4693 ~AllocRecordStackVisitor() {
4694 // Clear out any unused stack trace elements.
4695 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004696 record->StackElement(depth)->SetMethod(nullptr);
4697 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004698 }
4699 }
4700
4701 AllocRecord* record;
4702 size_t depth;
4703};
4704
Ian Rogers844506b2014-09-12 19:59:33 -07004705void Dbg::RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004706 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004707 if (recent_allocation_records_ == nullptr) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004708 // In the process of shutting down recording, bail.
Elliott Hughes545a0642011-11-08 19:10:03 -08004709 return;
4710 }
4711
4712 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004713 if (++alloc_record_head_ == alloc_record_max_) {
4714 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004715 }
4716
4717 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004718 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004719 record->SetType(type);
4720 record->SetByteCount(byte_count);
4721 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004722
4723 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004724 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004725 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004726
Ian Rogers719d1a32014-03-06 12:13:39 -08004727 if (alloc_record_count_ < alloc_record_max_) {
4728 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004729 }
4730}
4731
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004732// Returns the index of the head element.
4733//
Brian Carlstrom306db812014-09-05 13:01:41 -07004734// We point at the most-recently-written record, so if alloc_record_count_ is 1
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004735// we want to use the current element. Take "head+1" and subtract count
4736// from it.
4737//
4738// We need to handle underflow in our circular buffer, so we add
Brian Carlstrom306db812014-09-05 13:01:41 -07004739// alloc_record_max_ and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004740size_t Dbg::HeadIndex() {
4741 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4742 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004743}
4744
4745void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004746 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004747 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004748 if (recent_allocation_records_ == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004749 LOG(INFO) << "Not recording tracked allocations";
4750 return;
4751 }
4752
4753 // "i" is the head of the list. We want to start at the end of the
4754 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004755 size_t i = HeadIndex();
Brian Carlstrom306db812014-09-05 13:01:41 -07004756 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4757 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004758
Ian Rogers719d1a32014-03-06 12:13:39 -08004759 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004760 while (count--) {
4761 AllocRecord* record = &recent_allocation_records_[i];
4762
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004763 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4764 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004765
4766 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004767 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4768 mirror::ArtMethod* m = stack_element->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004769 if (m == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004770 break;
4771 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004772 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004773 }
4774
4775 // pause periodically to help logcat catch up
4776 if ((count % 5) == 0) {
4777 usleep(40000);
4778 }
4779
Ian Rogers719d1a32014-03-06 12:13:39 -08004780 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004781 }
4782}
4783
4784class StringTable {
4785 public:
4786 StringTable() {
4787 }
4788
Mathieu Chartier4345c462014-06-27 10:20:14 -07004789 void Add(const std::string& str) {
4790 table_.insert(str);
4791 }
4792
4793 void Add(const char* str) {
4794 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004795 }
4796
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004797 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004798 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004799 if (it == table_.end()) {
4800 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4801 }
4802 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004803 }
4804
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004805 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004806 return table_.size();
4807 }
4808
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004809 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004810 for (const std::string& str : table_) {
4811 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004812 size_t s_len = CountModifiedUtf8Chars(s);
Ian Rogers700a4022014-05-19 16:49:03 -07004813 std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004814 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4815 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004816 }
4817 }
4818
4819 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004820 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004821 DISALLOW_COPY_AND_ASSIGN(StringTable);
4822};
4823
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004824static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004825 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004826 DCHECK(method != nullptr);
4827 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004828 return (source_file != nullptr) ? source_file : "";
4829}
4830
Elliott Hughes545a0642011-11-08 19:10:03 -08004831/*
4832 * The data we send to DDMS contains everything we have recorded.
4833 *
4834 * Message header (all values big-endian):
4835 * (1b) message header len (to allow future expansion); includes itself
4836 * (1b) entry header len
4837 * (1b) stack frame len
4838 * (2b) number of entries
4839 * (4b) offset to string table from start of message
4840 * (2b) number of class name strings
4841 * (2b) number of method name strings
4842 * (2b) number of source file name strings
4843 * For each entry:
4844 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004845 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004846 * (2b) allocated object's class name index
4847 * (1b) stack depth
4848 * For each stack frame:
4849 * (2b) method's class name
4850 * (2b) method name
4851 * (2b) method source file
4852 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4853 * (xb) class name strings
4854 * (xb) method name strings
4855 * (xb) source file strings
4856 *
4857 * As with other DDM traffic, strings are sent as a 4-byte length
4858 * followed by UTF-16 data.
4859 *
4860 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07004861 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004862 * each table, but in practice there should be far fewer.
4863 *
4864 * The chief reason for using a string table here is to keep the size of
4865 * the DDMS message to a minimum. This is partly to make the protocol
4866 * efficient, but also because we have to form the whole thing up all at
4867 * once in a memory buffer.
4868 *
4869 * We use separate string tables for class names, method names, and source
4870 * files to keep the indexes small. There will generally be no overlap
4871 * between the contents of these tables.
4872 */
4873jbyteArray Dbg::GetRecentAllocations() {
Ian Rogerscf7f1912014-10-22 22:06:39 -07004874 if ((false)) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004875 DumpRecentAllocations();
4876 }
4877
Ian Rogers50b35e22012-10-04 10:09:15 -07004878 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004879 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004880 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004881 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004882 //
4883 // Part 1: generate string tables.
4884 //
4885 StringTable class_names;
4886 StringTable method_names;
4887 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004888
Brian Carlstrom306db812014-09-05 13:01:41 -07004889 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4890 uint16_t count = capped_count;
4891 size_t idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004892 while (count--) {
4893 AllocRecord* record = &recent_allocation_records_[idx];
Ian Rogers1ff3c982014-08-12 02:30:58 -07004894 std::string temp;
4895 class_names.Add(record->Type()->GetDescriptor(&temp));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004896 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004897 mirror::ArtMethod* m = record->StackElement(i)->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004898 if (m != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004899 class_names.Add(m->GetDeclaringClassDescriptor());
4900 method_names.Add(m->GetName());
4901 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004902 }
4903 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004904
Ian Rogers719d1a32014-03-06 12:13:39 -08004905 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004906 }
4907
Brian Carlstrom306db812014-09-05 13:01:41 -07004908 LOG(INFO) << "allocation records: " << capped_count;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004909
4910 //
4911 // Part 2: Generate the output and store it in the buffer.
4912 //
4913
4914 // (1b) message header len (to allow future expansion); includes itself
4915 // (1b) entry header len
4916 // (1b) stack frame len
4917 const int kMessageHeaderLen = 15;
4918 const int kEntryHeaderLen = 9;
4919 const int kStackFrameLen = 8;
4920 JDWP::Append1BE(bytes, kMessageHeaderLen);
4921 JDWP::Append1BE(bytes, kEntryHeaderLen);
4922 JDWP::Append1BE(bytes, kStackFrameLen);
4923
4924 // (2b) number of entries
4925 // (4b) offset to string table from start of message
4926 // (2b) number of class name strings
4927 // (2b) number of method name strings
4928 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07004929 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004930 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004931 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004932 JDWP::Append2BE(bytes, class_names.Size());
4933 JDWP::Append2BE(bytes, method_names.Size());
4934 JDWP::Append2BE(bytes, filenames.Size());
4935
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004936 idx = HeadIndex();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004937 std::string temp;
Brian Carlstrom306db812014-09-05 13:01:41 -07004938 for (count = capped_count; count != 0; --count) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004939 // For each entry:
4940 // (4b) total allocation size
4941 // (2b) thread id
4942 // (2b) allocated object's class name index
4943 // (1b) stack depth
4944 AllocRecord* record = &recent_allocation_records_[idx];
4945 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004946 size_t allocated_object_class_name_index =
Ian Rogers1ff3c982014-08-12 02:30:58 -07004947 class_names.IndexOf(record->Type()->GetDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004948 JDWP::Append4BE(bytes, record->ByteCount());
4949 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004950 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4951 JDWP::Append1BE(bytes, stack_depth);
4952
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004953 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4954 // For each stack frame:
4955 // (2b) method's class name
4956 // (2b) method name
4957 // (2b) method source file
4958 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004959 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004960 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4961 size_t method_name_index = method_names.IndexOf(m->GetName());
4962 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004963 JDWP::Append2BE(bytes, class_name_index);
4964 JDWP::Append2BE(bytes, method_name_index);
4965 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004966 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004967 }
Ian Rogers719d1a32014-03-06 12:13:39 -08004968 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004969 }
4970
4971 // (xb) class name strings
4972 // (xb) method name strings
4973 // (xb) source file strings
4974 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4975 class_names.WriteTo(bytes);
4976 method_names.WriteTo(bytes);
4977 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004978 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004979 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004980 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07004981 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004982 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4983 }
4984 return result;
4985}
4986
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07004987mirror::ArtMethod* DeoptimizationRequest::Method() const {
4988 ScopedObjectAccessUnchecked soa(Thread::Current());
4989 return soa.DecodeMethod(method_);
4990}
4991
4992void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
4993 ScopedObjectAccessUnchecked soa(Thread::Current());
4994 method_ = soa.EncodeMethod(m);
4995}
4996
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004997} // namespace art