blob: dae1566d17de7d142aa4f273901b176e74fce3bd [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"
Andreas Gampeae214ee2014-11-24 18:03:01 -080033#include "method_helper-inl.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070034#include "mirror/art_field-inl.h"
35#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036#include "mirror/class.h"
37#include "mirror/class-inl.h"
38#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039#include "mirror/object-inl.h"
40#include "mirror/object_array-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070041#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080042#include "mirror/throwable.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010043#include "quick/inline_method_analyser.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070044#include "reflection.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070045#include "safe_map.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080046#include "scoped_thread_state_change.h"
Elliott Hughes6a5bd492011-10-28 14:33:57 -070047#include "ScopedLocalRef.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070048#include "ScopedPrimitiveArray.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070049#include "handle_scope-inl.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070050#include "thread_list.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080051#include "throw_location.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080052#include "utf.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010053#include "verifier/method_verifier-inl.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070054#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070055
Brian Carlstrom3d92d522013-07-12 09:03:08 -070056#ifdef HAVE_ANDROID_OS
57#include "cutils/properties.h"
58#endif
59
Elliott Hughes872d4ec2011-10-21 17:07:15 -070060namespace art {
61
Brian Carlstrom7934ac22013-07-26 10:54:15 -070062static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
Brian Carlstrom306db812014-09-05 13:01:41 -070063static const size_t kDefaultNumAllocRecords = 64*1024; // Must be a power of 2. 2BE can hold 64k-1.
64
65// Limit alloc_record_count to the 2BE value that is the limit of the current protocol.
66static uint16_t CappedAllocRecordCount(size_t alloc_record_count) {
67 if (alloc_record_count > 0xffff) {
68 return 0xffff;
69 }
70 return alloc_record_count;
71}
Elliott Hughes475fc232011-10-25 15:00:35 -070072
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070073class AllocRecordStackTraceElement {
74 public:
75 AllocRecordStackTraceElement() : method_(nullptr), dex_pc_(0) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080076 }
77
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070078 int32_t LineNumber() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
79 mirror::ArtMethod* method = Method();
80 DCHECK(method != nullptr);
81 return method->GetLineNumFromDexPC(DexPc());
Elliott Hughes545a0642011-11-08 19:10:03 -080082 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070083
84 mirror::ArtMethod* Method() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -070085 ScopedObjectAccessUnchecked soa(Thread::Current());
86 return soa.DecodeMethod(method_);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070087 }
88
89 void SetMethod(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
90 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4345c462014-06-27 10:20:14 -070091 method_ = soa.EncodeMethod(m);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070092 }
93
94 uint32_t DexPc() const {
95 return dex_pc_;
96 }
97
98 void SetDexPc(uint32_t pc) {
99 dex_pc_ = pc;
100 }
101
102 private:
Mathieu Chartier4345c462014-06-27 10:20:14 -0700103 jmethodID method_;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700104 uint32_t dex_pc_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800105};
106
Mathieu Chartier4345c462014-06-27 10:20:14 -0700107jobject Dbg::TypeCache::Add(mirror::Class* t) {
108 ScopedObjectAccessUnchecked soa(Thread::Current());
109 int32_t hash_code = t->IdentityHashCode();
110 auto range = objects_.equal_range(hash_code);
111 for (auto it = range.first; it != range.second; ++it) {
112 if (soa.Decode<mirror::Class*>(it->second) == t) {
113 // Found a matching weak global, return it.
114 return it->second;
115 }
116 }
117 JNIEnv* env = soa.Env();
118 const jobject local_ref = soa.AddLocalReference<jobject>(t);
119 const jobject weak_global = env->NewWeakGlobalRef(local_ref);
120 env->DeleteLocalRef(local_ref);
121 objects_.insert(std::make_pair(hash_code, weak_global));
122 return weak_global;
123}
124
125void Dbg::TypeCache::Clear() {
Brian Carlstrom306db812014-09-05 13:01:41 -0700126 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
127 Thread* self = Thread::Current();
Mathieu Chartier4345c462014-06-27 10:20:14 -0700128 for (const auto& p : objects_) {
Brian Carlstrom306db812014-09-05 13:01:41 -0700129 vm->DeleteWeakGlobalRef(self, p.second);
Mathieu Chartier4345c462014-06-27 10:20:14 -0700130 }
131 objects_.clear();
132}
133
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700134class AllocRecord {
135 public:
136 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -0800137
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700138 mirror::Class* Type() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700139 return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700140 }
141
Brian Carlstrom306db812014-09-05 13:01:41 -0700142 void SetType(mirror::Class* t) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
143 Locks::alloc_tracker_lock_) {
144 type_ = Dbg::type_cache_.Add(t);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700145 }
146
147 size_t GetDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800148 size_t depth = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -0700149 while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800150 ++depth;
151 }
152 return depth;
153 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800154
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700155 size_t ByteCount() const {
156 return byte_count_;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800157 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700158
159 void SetByteCount(size_t count) {
160 byte_count_ = count;
161 }
162
163 uint16_t ThinLockId() const {
164 return thin_lock_id_;
165 }
166
167 void SetThinLockId(uint16_t id) {
168 thin_lock_id_ = id;
169 }
170
171 AllocRecordStackTraceElement* StackElement(size_t index) {
172 DCHECK_LT(index, kMaxAllocRecordStackDepth);
173 return &stack_[index];
174 }
175
176 private:
177 jobject type_; // This is a weak global.
178 size_t byte_count_;
179 uint16_t thin_lock_id_;
Ian Rogersc0542af2014-09-03 16:16:56 -0700180 AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth]; // Unused entries have nullptr method.
Elliott Hughes545a0642011-11-08 19:10:03 -0800181};
182
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700183class Breakpoint {
184 public:
Sebastien Hertzf3928792014-11-17 19:00:37 +0100185 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc,
186 DeoptimizationRequest::Kind deoptimization_kind)
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700187 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertzf3928792014-11-17 19:00:37 +0100188 : method_(nullptr), dex_pc_(dex_pc), deoptimization_kind_(deoptimization_kind) {
189 CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing ||
190 deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization ||
191 deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700192 ScopedObjectAccessUnchecked soa(Thread::Current());
193 method_ = soa.EncodeMethod(method);
194 }
195
196 Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
197 : method_(nullptr), dex_pc_(other.dex_pc_),
Sebastien Hertzf3928792014-11-17 19:00:37 +0100198 deoptimization_kind_(other.deoptimization_kind_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700199 ScopedObjectAccessUnchecked soa(Thread::Current());
200 method_ = soa.EncodeMethod(other.Method());
201 }
202
203 mirror::ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
204 ScopedObjectAccessUnchecked soa(Thread::Current());
205 return soa.DecodeMethod(method_);
206 }
207
208 uint32_t DexPc() const {
209 return dex_pc_;
210 }
211
Sebastien Hertzf3928792014-11-17 19:00:37 +0100212 DeoptimizationRequest::Kind GetDeoptimizationKind() const {
213 return deoptimization_kind_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700214 }
215
216 private:
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100217 // The location of this breakpoint.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700218 jmethodID method_;
219 uint32_t dex_pc_;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100220
221 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
Sebastien Hertzf3928792014-11-17 19:00:37 +0100222 DeoptimizationRequest::Kind deoptimization_kind_;
Elliott Hughes86964332012-02-15 19:37:42 -0800223};
224
Sebastien Hertzed2be172014-08-19 15:33:43 +0200225static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700226 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700227 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
Elliott Hughes86964332012-02-15 19:37:42 -0800228 return os;
229}
230
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200231class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800232 public:
233 DebugInstrumentationListener() {}
234 virtual ~DebugInstrumentationListener() {}
235
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200236 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700237 uint32_t dex_pc ATTRIBUTE_UNUSED)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200238 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800239 if (method->IsNative()) {
240 // TODO: post location events is a suspension point and native method entry stubs aren't.
241 return;
242 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100243 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800244 }
245
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200246 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
247 uint32_t dex_pc, const JValue& return_value)
248 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800249 if (method->IsNative()) {
250 // TODO: post location events is a suspension point and native method entry stubs aren't.
251 return;
252 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100253 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800254 }
255
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200256 void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
257 uint32_t dex_pc)
258 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800259 // We're not recorded to listen to this kind of event, so complain.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700260 UNUSED(thread, this_object, method, dex_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800261 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100262 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800263 }
264
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200265 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
266 uint32_t new_dex_pc)
267 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz8379b222014-02-24 17:38:15 +0100268 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800269 }
270
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200271 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
272 uint32_t dex_pc, mirror::ArtField* field)
273 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700274 UNUSED(thread);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200275 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800276 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200277
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700278 void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object,
279 mirror::ArtMethod* method, uint32_t dex_pc, mirror::ArtField* field,
280 const JValue& field_value)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200281 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
282 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
283 }
284
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700285 void ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED, const ThrowLocation& throw_location,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200286 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
287 mirror::Throwable* exception_object)
288 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
289 Dbg::PostException(throw_location, catch_method, catch_dex_pc, exception_object);
290 }
291
292 private:
293 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800294} gDebugInstrumentationListener;
295
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700296// JDWP is allowed unless the Zygote forbids it.
297static bool gJdwpAllowed = true;
298
Elliott Hughesc0f09332012-03-26 13:27:06 -0700299// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700300static bool gJdwpConfigured = false;
301
Elliott Hughesc0f09332012-03-26 13:27:06 -0700302// Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.)
Elliott Hughes376a7a02011-10-24 18:35:55 -0700303static JDWP::JdwpOptions gJdwpOptions;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700304
305// Runtime JDWP state.
Ian Rogersc0542af2014-09-03 16:16:56 -0700306static JDWP::JdwpState* gJdwpState = nullptr;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700307static bool gDebuggerConnected; // debugger or DDMS is connected.
308static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800309static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
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
Sebastien Hertz6995c602014-09-09 12:10:13 +0200320ObjectRegistry* Dbg::gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700321
Elliott Hughes545a0642011-11-08 19:10:03 -0800322// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800323AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
324size_t Dbg::alloc_record_max_ = 0;
325size_t Dbg::alloc_record_head_ = 0;
326size_t Dbg::alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -0700327Dbg::TypeCache Dbg::type_cache_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800328
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100329// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100330std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
331size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100332size_t Dbg::delayed_full_undeoptimization_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100333
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200334// Instrumentation event reference counters.
335size_t Dbg::dex_pc_change_event_ref_count_ = 0;
336size_t Dbg::method_enter_event_ref_count_ = 0;
337size_t Dbg::method_exit_event_ref_count_ = 0;
338size_t Dbg::field_read_event_ref_count_ = 0;
339size_t Dbg::field_write_event_ref_count_ = 0;
340size_t Dbg::exception_catch_event_ref_count_ = 0;
341uint32_t Dbg::instrumentation_events_ = 0;
342
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100343// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800344static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800345
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700346void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
347 RootType root_type) {
348 if (receiver != nullptr) {
349 callback(&receiver, arg, tid, root_type);
350 }
351 if (thread != nullptr) {
352 callback(&thread, arg, tid, root_type);
353 }
354 if (klass != nullptr) {
355 callback(reinterpret_cast<mirror::Object**>(&klass), arg, tid, root_type);
356 }
357 if (method != nullptr) {
358 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
359 }
360}
361
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200362void DebugInvokeReq::Clear() {
363 invoke_needed = false;
364 receiver = nullptr;
365 thread = nullptr;
366 klass = nullptr;
367 method = nullptr;
368}
369
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700370void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
371 RootType root_type) {
372 if (method != nullptr) {
373 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
374 }
375}
376
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200377bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
378 return dex_pcs.find(dex_pc) == dex_pcs.end();
379}
380
381void SingleStepControl::Clear() {
382 is_active = false;
383 method = nullptr;
384 dex_pcs.clear();
385}
386
Brian Carlstromea46f952013-07-30 01:26:50 -0700387static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800388 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700389 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzed2be172014-08-19 15:33:43 +0200390 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100391 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700392 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
Elliott Hughes86964332012-02-15 19:37:42 -0800393 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
394 return true;
395 }
396 }
397 return false;
398}
399
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100400static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
401 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800402 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
403 // A thread may be suspended for GC; in this code, we really want to know whether
404 // there's a debugger suspension active.
405 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
406}
407
Ian Rogersc0542af2014-09-03 16:16:56 -0700408static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700409 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200410 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700411 if (o == nullptr) {
412 *error = JDWP::ERR_INVALID_OBJECT;
413 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800414 }
415 if (!o->IsArrayInstance()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700416 *error = JDWP::ERR_INVALID_ARRAY;
417 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800418 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700419 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800420 return o->AsArray();
421}
422
Ian Rogersc0542af2014-09-03 16:16:56 -0700423static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700424 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200425 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700426 if (o == nullptr) {
427 *error = JDWP::ERR_INVALID_OBJECT;
428 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800429 }
430 if (!o->IsClass()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700431 *error = JDWP::ERR_INVALID_CLASS;
432 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800433 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700434 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800435 return o->AsClass();
436}
437
Ian Rogersc0542af2014-09-03 16:16:56 -0700438static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
439 JDWP::JdwpError* error)
jeffhaoa77f0f62012-12-05 17:19:31 -0800440 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700441 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
442 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200443 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700444 if (thread_peer == nullptr) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800445 // This isn't even an object.
Ian Rogersc0542af2014-09-03 16:16:56 -0700446 *error = JDWP::ERR_INVALID_OBJECT;
447 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800448 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800449
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800450 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800451 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
452 // This isn't a thread.
Ian Rogersc0542af2014-09-03 16:16:56 -0700453 *error = JDWP::ERR_INVALID_THREAD;
454 return nullptr;
Elliott Hughes221229c2013-01-08 18:17:50 -0800455 }
456
Ian Rogersc0542af2014-09-03 16:16:56 -0700457 Thread* thread = Thread::FromManagedThread(soa, thread_peer);
458 // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a
459 // zombie.
460 *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE;
461 return thread;
Elliott Hughes436e3722012-02-17 20:01:47 -0800462}
463
Elliott Hughes24437992011-11-30 14:49:33 -0800464static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
465 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
466 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
467 return static_cast<JDWP::JdwpTag>(descriptor[0]);
468}
469
Ian Rogers1ff3c982014-08-12 02:30:58 -0700470static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
471 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
472 std::string temp;
473 const char* descriptor = klass->GetDescriptor(&temp);
474 return BasicTagFromDescriptor(descriptor);
475}
476
Ian Rogers98379392014-02-24 16:53:16 -0800477static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700478 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700479 CHECK(c != nullptr);
Elliott Hughes24437992011-11-30 14:49:33 -0800480 if (c->IsArrayClass()) {
481 return JDWP::JT_ARRAY;
482 }
Elliott Hughes24437992011-11-30 14:49:33 -0800483 if (c->IsStringClass()) {
484 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800485 }
Ian Rogers98379392014-02-24 16:53:16 -0800486 if (c->IsClassClass()) {
487 return JDWP::JT_CLASS_OBJECT;
488 }
489 {
490 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
491 if (thread_class->IsAssignableFrom(c)) {
492 return JDWP::JT_THREAD;
493 }
494 }
495 {
496 mirror::Class* thread_group_class =
497 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
498 if (thread_group_class->IsAssignableFrom(c)) {
499 return JDWP::JT_THREAD_GROUP;
500 }
501 }
502 {
503 mirror::Class* class_loader_class =
504 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
505 if (class_loader_class->IsAssignableFrom(c)) {
506 return JDWP::JT_CLASS_LOADER;
507 }
508 }
509 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800510}
511
512/*
513 * Objects declared to hold Object might actually hold a more specific
514 * type. The debugger may take a special interest in these (e.g. it
515 * wants to display the contents of Strings), so we want to return an
516 * appropriate tag.
517 *
518 * Null objects are tagged JT_OBJECT.
519 */
Sebastien Hertz6995c602014-09-09 12:10:13 +0200520JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700521 return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800522}
523
524static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
525 switch (tag) {
526 case JDWP::JT_BOOLEAN:
527 case JDWP::JT_BYTE:
528 case JDWP::JT_CHAR:
529 case JDWP::JT_FLOAT:
530 case JDWP::JT_DOUBLE:
531 case JDWP::JT_INT:
532 case JDWP::JT_LONG:
533 case JDWP::JT_SHORT:
534 case JDWP::JT_VOID:
535 return true;
536 default:
537 return false;
538 }
539}
540
Elliott Hughes3bb81562011-10-21 18:52:59 -0700541/*
542 * Handle one of the JDWP name/value pairs.
543 *
544 * JDWP options are:
545 * help: if specified, show help message and bail
546 * transport: may be dt_socket or dt_shmem
547 * address: for dt_socket, "host:port", or just "port" when listening
548 * server: if "y", wait for debugger to attach; if "n", attach to debugger
549 * timeout: how long to wait for debugger to connect / listen
550 *
551 * Useful with server=n (these aren't supported yet):
552 * onthrow=<exception-name>: connect to debugger when exception thrown
553 * onuncaught=y|n: connect to debugger when uncaught exception thrown
554 * launch=<command-line>: launch the debugger itself
555 *
556 * The "transport" option is required, as is "address" if server=n.
557 */
558static bool ParseJdwpOption(const std::string& name, const std::string& value) {
559 if (name == "transport") {
560 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700561 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700562 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700563 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700564 } else {
565 LOG(ERROR) << "JDWP transport not supported: " << value;
566 return false;
567 }
568 } else if (name == "server") {
569 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700570 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700571 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700572 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700573 } else {
574 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
575 return false;
576 }
577 } else if (name == "suspend") {
578 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700579 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700580 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700581 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700582 } else {
583 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
584 return false;
585 }
586 } else if (name == "address") {
587 /* this is either <port> or <host>:<port> */
588 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700589 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700590 std::string::size_type colon = value.find(':');
591 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700592 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700593 port_string = value.substr(colon + 1);
594 } else {
595 port_string = value;
596 }
597 if (port_string.empty()) {
598 LOG(ERROR) << "JDWP address missing port: " << value;
599 return false;
600 }
601 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800602 uint64_t port = strtoul(port_string.c_str(), &end, 10);
603 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700604 LOG(ERROR) << "JDWP address has junk in port field: " << value;
605 return false;
606 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700607 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700608 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
609 /* valid but unsupported */
610 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
611 } else {
612 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
613 }
614
615 return true;
616}
617
618/*
619 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
620 * "transport=dt_socket,address=8000,server=y,suspend=n"
621 */
622bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800623 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700624
Elliott Hughes3bb81562011-10-21 18:52:59 -0700625 std::vector<std::string> pairs;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700626 Split(options, ',', &pairs);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700627
628 for (size_t i = 0; i < pairs.size(); ++i) {
629 std::string::size_type equals = pairs[i].find('=');
630 if (equals == std::string::npos) {
631 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
632 return false;
633 }
634 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
635 }
636
Elliott Hughes376a7a02011-10-24 18:35:55 -0700637 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700638 LOG(ERROR) << "Must specify JDWP transport: " << options;
639 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700640 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700641 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
642 return false;
643 }
644
645 gJdwpConfigured = true;
646 return true;
647}
648
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700649void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700650 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700651 // No JDWP for you!
652 return;
653 }
654
Ian Rogers719d1a32014-03-06 12:13:39 -0800655 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700656 gRegistry = new ObjectRegistry;
657
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700658 // Init JDWP if the debugger is enabled. This may connect out to a
659 // debugger, passively listen for a debugger, or block waiting for a
660 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700661 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
Ian Rogersc0542af2014-09-03 16:16:56 -0700662 if (gJdwpState == nullptr) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800663 // We probably failed because some other process has the port already, which means that
664 // if we don't abort the user is likely to think they're talking to us when they're actually
665 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800666 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700667 }
668
669 // If a debugger has already attached, send the "welcome" message.
670 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700671 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700672 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes376a7a02011-10-24 18:35:55 -0700673 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800674 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700675 }
676 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700677}
678
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700679void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200680 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
681 // destruction of gJdwpState).
682 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
683 gJdwpState->PostVMDeath();
684 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100685 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
686 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700687 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800688 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700689 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800690 gRegistry = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700691}
692
Elliott Hughes767a1472011-10-26 18:49:02 -0700693void Dbg::GcDidFinish() {
694 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700695 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700696 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700697 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700698 }
699 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700700 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700701 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700702 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700703 }
704 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700705 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700706 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700707 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700708 }
709}
710
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700711void Dbg::SetJdwpAllowed(bool allowed) {
712 gJdwpAllowed = allowed;
713}
714
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700715DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700716 return Thread::Current()->GetInvokeReq();
717}
718
719Thread* Dbg::GetDebugThread() {
Ian Rogersc0542af2014-09-03 16:16:56 -0700720 return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700721}
722
723void Dbg::ClearWaitForEventThread() {
724 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700725}
726
727void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700728 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800729 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700730 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800731 gDisposed = false;
732}
733
734void Dbg::Disposed() {
735 gDisposed = true;
736}
737
738bool Dbg::IsDisposed() {
739 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700740}
741
Sebastien Hertzf3928792014-11-17 19:00:37 +0100742bool Dbg::RequiresDeoptimization() {
743 // We don't need deoptimization if everything runs with interpreter after
744 // enabling -Xint mode.
745 return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly();
746}
747
Elliott Hughesa2155262011-11-16 16:26:58 -0800748void Dbg::GoActive() {
749 // Enable all debugging features, including scans for breakpoints.
750 // This is a no-op if we're already active.
751 // Only called from the JDWP handler thread.
752 if (gDebuggerActive) {
753 return;
754 }
755
Elliott Hughesc0f09332012-03-26 13:27:06 -0700756 {
757 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Sebastien Hertzed2be172014-08-19 15:33:43 +0200758 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700759 CHECK_EQ(gBreakpoints.size(), 0U);
760 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800761
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100762 {
Brian Carlstrom306db812014-09-05 13:01:41 -0700763 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100764 CHECK_EQ(deoptimization_requests_.size(), 0U);
765 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100766 CHECK_EQ(delayed_full_undeoptimization_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200767 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
768 CHECK_EQ(method_enter_event_ref_count_, 0U);
769 CHECK_EQ(method_exit_event_ref_count_, 0U);
770 CHECK_EQ(field_read_event_ref_count_, 0U);
771 CHECK_EQ(field_write_event_ref_count_, 0U);
772 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100773 }
774
Ian Rogers62d6c772013-02-27 08:32:07 -0800775 Runtime* runtime = Runtime::Current();
776 runtime->GetThreadList()->SuspendAll();
777 Thread* self = Thread::Current();
778 ThreadState old_state = self->SetStateUnsafe(kRunnable);
779 CHECK_NE(old_state, kRunnable);
Sebastien Hertzf3928792014-11-17 19:00:37 +0100780 if (RequiresDeoptimization()) {
781 runtime->GetInstrumentation()->EnableDeoptimization();
782 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200783 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800784 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800785 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
786 runtime->GetThreadList()->ResumeAll();
787
788 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700789}
790
791void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700792 CHECK(gDebuggerConnected);
793
Elliott Hughesc0f09332012-03-26 13:27:06 -0700794 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700795
Ian Rogers62d6c772013-02-27 08:32:07 -0800796 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
797 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
798 // and clear the object registry.
799 Runtime* runtime = Runtime::Current();
800 runtime->GetThreadList()->SuspendAll();
801 Thread* self = Thread::Current();
802 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100803
804 // Debugger may not be active at this point.
805 if (gDebuggerActive) {
806 {
807 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
808 // This prevents us from having any pending deoptimization request when the debugger attaches
809 // to us again while no event has been requested yet.
Brian Carlstrom306db812014-09-05 13:01:41 -0700810 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100811 deoptimization_requests_.clear();
812 full_deoptimization_event_count_ = 0U;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100813 delayed_full_undeoptimization_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100814 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200815 if (instrumentation_events_ != 0) {
816 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
817 instrumentation_events_);
818 instrumentation_events_ = 0;
819 }
Sebastien Hertzf3928792014-11-17 19:00:37 +0100820 if (RequiresDeoptimization()) {
821 runtime->GetInstrumentation()->DisableDeoptimization();
822 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100823 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100824 }
Elliott Hughes234ab152011-10-26 14:02:26 -0700825 gRegistry->Clear();
826 gDebuggerConnected = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800827 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
828 runtime->GetThreadList()->ResumeAll();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700829}
830
Elliott Hughesc0f09332012-03-26 13:27:06 -0700831bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700832 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700833}
834
Elliott Hughesc0f09332012-03-26 13:27:06 -0700835bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700836 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700837}
838
839int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800840 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700841}
842
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700843void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700844 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700845}
846
Elliott Hughes88d63092013-01-09 09:55:54 -0800847std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700848 JDWP::JdwpError error;
849 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error);
850 if (o == nullptr) {
851 if (error == JDWP::ERR_NONE) {
852 return "NULL";
853 } else {
854 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
855 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800856 }
857 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700858 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800859 }
Sebastien Hertz6995c602014-09-09 12:10:13 +0200860 return GetClassName(o->AsClass());
861}
862
863std::string Dbg::GetClassName(mirror::Class* klass) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200864 if (klass == nullptr) {
865 return "NULL";
866 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700867 std::string temp;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200868 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700869}
870
Ian Rogersc0542af2014-09-03 16:16:56 -0700871JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800872 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700873 mirror::Class* c = DecodeClass(id, &status);
874 if (c == nullptr) {
875 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800876 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800877 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700878 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800879 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800880}
881
Ian Rogersc0542af2014-09-03 16:16:56 -0700882JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800883 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700884 mirror::Class* c = DecodeClass(id, &status);
885 if (c == nullptr) {
886 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800887 return status;
888 }
889 if (c->IsInterface()) {
890 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700891 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800892 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700893 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800894 }
895 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700896}
897
Elliott Hughes436e3722012-02-17 20:01:47 -0800898JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700899 JDWP::JdwpError error;
900 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
901 if (o == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800902 return JDWP::ERR_INVALID_OBJECT;
903 }
904 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
905 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700906}
907
Elliott Hughes436e3722012-02-17 20:01:47 -0800908JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700909 JDWP::JdwpError error;
910 mirror::Class* c = DecodeClass(id, &error);
911 if (c == nullptr) {
912 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800913 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800914
915 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
916
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700917 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
918 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800919 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700920 if ((access_flags & kAccInterface) == 0) {
921 access_flags |= kAccSuper;
922 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800923
924 expandBufAdd4BE(pReply, access_flags);
925
926 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700927}
928
Ian Rogersc0542af2014-09-03 16:16:56 -0700929JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
930 JDWP::JdwpError error;
931 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
932 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800933 return JDWP::ERR_INVALID_OBJECT;
934 }
935
936 // Ensure all threads are suspended while we read objects' lock words.
937 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100938 CHECK_EQ(self->GetState(), kRunnable);
939 self->TransitionFromRunnableToSuspended(kSuspended);
940 Runtime::Current()->GetThreadList()->SuspendAll();
Elliott Hughesf327e072013-01-09 16:01:26 -0800941
942 MonitorInfo monitor_info(o);
943
Sebastien Hertz54263242014-03-19 18:16:50 +0100944 Runtime::Current()->GetThreadList()->ResumeAll();
945 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800946
Ian Rogersc0542af2014-09-03 16:16:56 -0700947 if (monitor_info.owner_ != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700948 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800949 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700950 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800951 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700952 expandBufAdd4BE(reply, monitor_info.entry_count_);
953 expandBufAdd4BE(reply, monitor_info.waiters_.size());
954 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
955 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800956 }
957 return JDWP::ERR_NONE;
958}
959
Elliott Hughes734b8c62013-01-11 15:32:45 -0800960JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700961 std::vector<JDWP::ObjectId>* monitors,
962 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800963 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700964 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700965 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700966 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800967 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700968 : StackVisitor(thread, context), current_stack_depth(0),
969 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800970
971 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
972 // annotalysis.
973 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
974 if (!GetMethod()->IsRuntimeMethod()) {
975 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800976 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800977 }
978 return true;
979 }
980
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700981 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
982 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800983 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700984 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700985 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800986 }
987
Elliott Hughes734b8c62013-01-11 15:32:45 -0800988 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700989 std::vector<JDWP::ObjectId>* const monitors;
990 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800991 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800992
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700993 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700994 Thread* thread;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700995 {
996 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700997 JDWP::JdwpError error;
998 thread = DecodeThread(soa, thread_id, &error);
999 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001000 return error;
1001 }
1002 if (!IsSuspendedForDebugger(soa, thread)) {
1003 return JDWP::ERR_THREAD_NOT_SUSPENDED;
1004 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001005 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -07001006 std::unique_ptr<Context> context(Context::Create());
Ian Rogersc0542af2014-09-03 16:16:56 -07001007 OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -07001008 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001009 return JDWP::ERR_NONE;
1010}
1011
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001012JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001013 JDWP::ObjectId* contended_monitor) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001014 mirror::Object* contended_monitor_obj;
Elliott Hughesf9501702013-01-11 11:22:27 -08001015 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001016 *contended_monitor = 0;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001017 {
1018 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001019 JDWP::JdwpError error;
1020 Thread* thread = DecodeThread(soa, thread_id, &error);
1021 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001022 return error;
1023 }
1024 if (!IsSuspendedForDebugger(soa, thread)) {
1025 return JDWP::ERR_THREAD_NOT_SUSPENDED;
1026 }
1027 contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Elliott Hughesf9501702013-01-11 11:22:27 -08001028 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001029 // Add() requires the thread_list_lock_ not held to avoid the lock
1030 // level violation.
Ian Rogersc0542af2014-09-03 16:16:56 -07001031 *contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -08001032 return JDWP::ERR_NONE;
1033}
1034
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001035JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -07001036 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001037 gc::Heap* heap = Runtime::Current()->GetHeap();
1038 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001039 std::vector<mirror::Class*> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -07001040 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001041 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001042 JDWP::JdwpError error;
1043 mirror::Class* c = DecodeClass(class_ids[i], &error);
1044 if (c == nullptr) {
1045 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001046 }
1047 classes.push_back(c);
Ian Rogersc0542af2014-09-03 16:16:56 -07001048 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001049 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001050 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001051 return JDWP::ERR_NONE;
1052}
1053
Ian Rogersc0542af2014-09-03 16:16:56 -07001054JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
1055 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001056 gc::Heap* heap = Runtime::Current()->GetHeap();
1057 // We only want reachable instances, so do a GC.
1058 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -07001059 JDWP::JdwpError error;
1060 mirror::Class* c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001061 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001062 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001063 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001064 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001065 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
1066 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001067 instances->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes3b78c942013-01-15 17:35:41 -08001068 }
1069 return JDWP::ERR_NONE;
1070}
1071
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001072JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001073 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001074 gc::Heap* heap = Runtime::Current()->GetHeap();
1075 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -07001076 JDWP::JdwpError error;
1077 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1078 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001079 return JDWP::ERR_INVALID_OBJECT;
1080 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001081 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001082 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001083 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001084 referring_objects->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001085 }
1086 return JDWP::ERR_NONE;
1087}
1088
Ian Rogersc0542af2014-09-03 16:16:56 -07001089JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
1090 JDWP::JdwpError error;
1091 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1092 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001093 return JDWP::ERR_INVALID_OBJECT;
1094 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001095 gRegistry->DisableCollection(object_id);
1096 return JDWP::ERR_NONE;
1097}
1098
Ian Rogersc0542af2014-09-03 16:16:56 -07001099JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
1100 JDWP::JdwpError error;
1101 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +01001102 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
1103 // also ignores these cases and never return an error. However it's not obvious why this command
1104 // should behave differently from DisableCollection and IsCollected commands. So let's be more
1105 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -07001106 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001107 return JDWP::ERR_INVALID_OBJECT;
1108 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001109 gRegistry->EnableCollection(object_id);
1110 return JDWP::ERR_NONE;
1111}
1112
Ian Rogersc0542af2014-09-03 16:16:56 -07001113JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
1114 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001115 if (object_id == 0) {
1116 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +01001117 return JDWP::ERR_INVALID_OBJECT;
1118 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001119 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1120 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -07001121 JDWP::JdwpError error;
1122 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1123 if (o != nullptr) {
1124 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001125 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001126 return JDWP::ERR_NONE;
1127}
1128
Ian Rogersc0542af2014-09-03 16:16:56 -07001129void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001130 gRegistry->DisposeObject(object_id, reference_count);
1131}
1132
Sebastien Hertz6995c602014-09-09 12:10:13 +02001133JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001134 DCHECK(klass != nullptr);
1135 if (klass->IsArrayClass()) {
1136 return JDWP::TT_ARRAY;
1137 } else if (klass->IsInterface()) {
1138 return JDWP::TT_INTERFACE;
1139 } else {
1140 return JDWP::TT_CLASS;
1141 }
1142}
1143
Elliott Hughes88d63092013-01-09 09:55:54 -08001144JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001145 JDWP::JdwpError error;
1146 mirror::Class* c = DecodeClass(class_id, &error);
1147 if (c == nullptr) {
1148 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001149 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001150
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001151 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1152 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001153 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001154 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001155}
1156
Ian Rogersc0542af2014-09-03 16:16:56 -07001157void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001158 // Get the complete list of reference classes (i.e. all classes except
1159 // the primitive types).
1160 // Returns a newly-allocated buffer full of RefTypeId values.
1161 struct ClassListCreator {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001162 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes_in) : classes(classes_in) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001163 }
1164
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001165 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001166 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1167 }
1168
Elliott Hughes64f574f2013-02-20 14:57:12 -08001169 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1170 // annotalysis.
1171 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001172 if (!c->IsPrimitive()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001173 classes->push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001174 }
1175 return true;
1176 }
1177
Ian Rogersc0542af2014-09-03 16:16:56 -07001178 std::vector<JDWP::RefTypeId>* const classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001179 };
1180
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001181 ClassListCreator clc(classes);
Sebastien Hertz4537c412014-08-28 14:41:50 +02001182 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(ClassListCreator::Visit,
1183 &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001184}
1185
Ian Rogers1ff3c982014-08-12 02:30:58 -07001186JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1187 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001188 JDWP::JdwpError error;
1189 mirror::Class* c = DecodeClass(class_id, &error);
1190 if (c == nullptr) {
1191 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001192 }
1193
Elliott Hughesa2155262011-11-16 16:26:58 -08001194 if (c->IsArrayClass()) {
1195 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1196 *pTypeTag = JDWP::TT_ARRAY;
1197 } else {
1198 if (c->IsErroneous()) {
1199 *pStatus = JDWP::CS_ERROR;
1200 } else {
1201 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1202 }
1203 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1204 }
1205
Ian Rogersc0542af2014-09-03 16:16:56 -07001206 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001207 std::string temp;
1208 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001209 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001210 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001211}
1212
Ian Rogersc0542af2014-09-03 16:16:56 -07001213void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001214 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001215 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001216 ids->clear();
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001217 for (size_t i = 0; i < classes.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001218 ids->push_back(gRegistry->Add(classes[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001219 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001220}
1221
Ian Rogersc0542af2014-09-03 16:16:56 -07001222JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1223 JDWP::JdwpError error;
1224 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1225 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001226 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001227 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001228
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001229 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001230 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001231
1232 expandBufAdd1(pReply, type_tag);
1233 expandBufAddRefTypeId(pReply, type_id);
1234
1235 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001236}
1237
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001238JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001239 JDWP::JdwpError error;
1240 mirror::Class* c = DecodeClass(class_id, &error);
1241 if (c == nullptr) {
1242 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001243 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001244 std::string temp;
1245 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001246 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001247}
1248
Ian Rogersc0542af2014-09-03 16:16:56 -07001249JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1250 JDWP::JdwpError error;
1251 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001252 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001253 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001254 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001255 const char* source_file = c->GetSourceFile();
1256 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001257 return JDWP::ERR_ABSENT_INFORMATION;
1258 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001259 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001260 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001261}
1262
Ian Rogersc0542af2014-09-03 16:16:56 -07001263JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001264 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001265 JDWP::JdwpError error;
1266 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1267 if (error != JDWP::ERR_NONE) {
1268 *tag = JDWP::JT_VOID;
1269 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001270 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001271 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001272 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001273}
1274
Elliott Hughesaed4be92011-12-02 16:16:23 -08001275size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001276 switch (tag) {
1277 case JDWP::JT_VOID:
1278 return 0;
1279 case JDWP::JT_BYTE:
1280 case JDWP::JT_BOOLEAN:
1281 return 1;
1282 case JDWP::JT_CHAR:
1283 case JDWP::JT_SHORT:
1284 return 2;
1285 case JDWP::JT_FLOAT:
1286 case JDWP::JT_INT:
1287 return 4;
1288 case JDWP::JT_ARRAY:
1289 case JDWP::JT_OBJECT:
1290 case JDWP::JT_STRING:
1291 case JDWP::JT_THREAD:
1292 case JDWP::JT_THREAD_GROUP:
1293 case JDWP::JT_CLASS_LOADER:
1294 case JDWP::JT_CLASS_OBJECT:
1295 return sizeof(JDWP::ObjectId);
1296 case JDWP::JT_DOUBLE:
1297 case JDWP::JT_LONG:
1298 return 8;
1299 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001300 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001301 return -1;
1302 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001303}
1304
Ian Rogersc0542af2014-09-03 16:16:56 -07001305JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1306 JDWP::JdwpError error;
1307 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1308 if (a == nullptr) {
1309 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001310 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001311 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001312 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001313}
1314
Elliott Hughes88d63092013-01-09 09:55:54 -08001315JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001316 JDWP::JdwpError error;
1317 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001318 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001319 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001320 }
Elliott Hughes24437992011-11-30 14:49:33 -08001321
1322 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1323 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001324 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001325 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001326 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1327 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001328 expandBufAdd4BE(pReply, count);
1329
Ian Rogers1ff3c982014-08-12 02:30:58 -07001330 if (IsPrimitiveTag(element_tag)) {
1331 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001332 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1333 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001334 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001335 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1336 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001337 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001338 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1339 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001340 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001341 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1342 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001343 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001344 memcpy(dst, &src[offset * width], count * width);
1345 }
1346 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001347 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001348 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001349 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001350 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001351 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001352 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001353 expandBufAdd1(pReply, specific_tag);
1354 expandBufAddObjectId(pReply, gRegistry->Add(element));
1355 }
1356 }
1357
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001358 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001359}
1360
Ian Rogersef7d42f2014-01-06 12:55:46 -08001361template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001362static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001363 NO_THREAD_SAFETY_ANALYSIS {
1364 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001365 DCHECK(a->GetClass()->IsPrimitiveArray());
1366
Ian Rogersef7d42f2014-01-06 12:55:46 -08001367 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001368 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001369 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001370 }
1371}
1372
Elliott Hughes88d63092013-01-09 09:55:54 -08001373JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001374 JDWP::Request* request) {
1375 JDWP::JdwpError error;
1376 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1377 if (dst == nullptr) {
1378 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001379 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001380
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001381 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001382 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001383 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001384 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001385 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001386
Ian Rogers1ff3c982014-08-12 02:30:58 -07001387 if (IsPrimitiveTag(element_tag)) {
1388 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001389 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001390 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001391 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001392 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001393 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001394 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001395 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001396 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001397 }
1398 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001399 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001400 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001401 JDWP::ObjectId id = request->ReadObjectId();
Ian Rogersc0542af2014-09-03 16:16:56 -07001402 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1403 if (error != JDWP::ERR_NONE) {
1404 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001405 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001406 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001407 }
1408 }
1409
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001410 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001411}
1412
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001413JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001414 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001415}
1416
Ian Rogersc0542af2014-09-03 16:16:56 -07001417JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object) {
1418 JDWP::JdwpError error;
1419 mirror::Class* c = DecodeClass(class_id, &error);
1420 if (c == nullptr) {
1421 *new_object = 0;
1422 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001423 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001424 *new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001425 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001426}
1427
Elliott Hughesbf13d362011-12-08 15:51:37 -08001428/*
1429 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1430 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001431JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogersc0542af2014-09-03 16:16:56 -07001432 JDWP::ObjectId* new_array) {
1433 JDWP::JdwpError error;
1434 mirror::Class* c = DecodeClass(array_class_id, &error);
1435 if (c == nullptr) {
1436 *new_array = 0;
1437 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001438 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001439 *new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -07001440 c->GetComponentSizeShift(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001441 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001442 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001443}
1444
Sebastien Hertz6995c602014-09-09 12:10:13 +02001445JDWP::FieldId Dbg::ToFieldId(const mirror::ArtField* f) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001446 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001447 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001448}
1449
Brian Carlstromea46f952013-07-30 01:26:50 -07001450static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001451 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001452 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001453 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001454}
1455
Brian Carlstromea46f952013-07-30 01:26:50 -07001456static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001457 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001458 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001459 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001460}
1461
Brian Carlstromea46f952013-07-30 01:26:50 -07001462static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001463 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001464 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001465 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001466}
1467
Sebastien Hertz6995c602014-09-09 12:10:13 +02001468bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1469 CHECK(event_thread != nullptr);
1470 JDWP::JdwpError error;
1471 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(expected_thread_id,
1472 &error);
1473 return expected_thread_peer == event_thread->GetPeer();
1474}
1475
1476bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1477 const JDWP::EventLocation& event_location) {
1478 if (expected_location.dex_pc != event_location.dex_pc) {
1479 return false;
1480 }
1481 mirror::ArtMethod* m = FromMethodId(expected_location.method_id);
1482 return m == event_location.method;
1483}
1484
1485bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001486 if (event_class == nullptr) {
1487 return false;
1488 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02001489 JDWP::JdwpError error;
1490 mirror::Class* expected_class = DecodeClass(class_id, &error);
1491 CHECK(expected_class != nullptr);
1492 return expected_class->IsAssignableFrom(event_class);
1493}
1494
1495bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
1496 mirror::ArtField* event_field) {
1497 mirror::ArtField* expected_field = FromFieldId(expected_field_id);
1498 if (expected_field != event_field) {
1499 return false;
1500 }
1501 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1502}
1503
1504bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1505 JDWP::JdwpError error;
1506 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error);
1507 return modifier_instance == event_instance;
1508}
1509
1510void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001511 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001512 if (m == nullptr) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001513 memset(location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001514 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001515 mirror::Class* c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001516 location->type_tag = GetTypeTag(c);
1517 location->class_id = gRegistry->AddRefType(c);
1518 location->method_id = ToMethodId(m);
1519 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001520 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001521}
1522
Ian Rogersc0542af2014-09-03 16:16:56 -07001523std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001524 mirror::ArtMethod* m = FromMethodId(method_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001525 if (m == nullptr) {
1526 return "NULL";
1527 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001528 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001529}
1530
Ian Rogersc0542af2014-09-03 16:16:56 -07001531std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001532 mirror::ArtField* f = FromFieldId(field_id);
1533 if (f == nullptr) {
1534 return "NULL";
1535 }
1536 return f->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001537}
1538
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001539/*
1540 * Augment the access flags for synthetic methods and fields by setting
1541 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1542 * flags not specified by the Java programming language.
1543 */
1544static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1545 accessFlags &= kAccJavaFlagsMask;
1546 if ((accessFlags & kAccSynthetic) != 0) {
1547 accessFlags |= 0xf0000000;
1548 }
1549 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001550}
1551
Elliott Hughesdbb40792011-11-18 17:05:22 -08001552/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001553 * Circularly shifts registers so that arguments come first. Debuggers
1554 * expect slots to begin with arguments, but dex code places them at
1555 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001556 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001557static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1558 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001559 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001560 if (code_item == nullptr) {
1561 // We should not get here for a method without code (native, proxy or abstract). Log it and
1562 // return the slot as is since all registers are arguments.
1563 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1564 return slot;
1565 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001566 uint16_t ins_size = code_item->ins_size_;
1567 uint16_t locals_size = code_item->registers_size_ - ins_size;
1568 if (slot >= locals_size) {
1569 return slot - locals_size;
1570 } else {
1571 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001572 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001573}
1574
Jeff Haob7cefc72013-11-14 14:51:09 -08001575/*
1576 * Circularly shifts registers so that arguments come last. Reverts
1577 * slots to dex style argument placement.
1578 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001579static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001580 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001581 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001582 if (code_item == nullptr) {
1583 // We should not get here for a method without code (native, proxy or abstract). Log it and
1584 // return the slot as is since all registers are arguments.
1585 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1586 return slot;
1587 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001588 uint16_t ins_size = code_item->ins_size_;
1589 uint16_t locals_size = code_item->registers_size_ - ins_size;
1590 if (slot < ins_size) {
1591 return slot + locals_size;
1592 } else {
1593 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001594 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001595}
1596
Elliott Hughes88d63092013-01-09 09:55:54 -08001597JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001598 JDWP::JdwpError error;
1599 mirror::Class* c = DecodeClass(class_id, &error);
1600 if (c == nullptr) {
1601 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001602 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001603
1604 size_t instance_field_count = c->NumInstanceFields();
1605 size_t static_field_count = c->NumStaticFields();
1606
1607 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1608
1609 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001610 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001611 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001612 expandBufAddUtf8String(pReply, f->GetName());
1613 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001614 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001615 static const char genericSignature[1] = "";
1616 expandBufAddUtf8String(pReply, genericSignature);
1617 }
1618 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1619 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001620 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001621}
1622
Elliott Hughes88d63092013-01-09 09:55:54 -08001623JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001624 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001625 JDWP::JdwpError error;
1626 mirror::Class* c = DecodeClass(class_id, &error);
1627 if (c == nullptr) {
1628 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001629 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001630
1631 size_t direct_method_count = c->NumDirectMethods();
1632 size_t virtual_method_count = c->NumVirtualMethods();
1633
1634 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1635
1636 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001637 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001638 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001639 expandBufAddUtf8String(pReply, m->GetName());
1640 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001641 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001642 static const char genericSignature[1] = "";
1643 expandBufAddUtf8String(pReply, genericSignature);
1644 }
1645 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1646 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001647 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001648}
1649
Elliott Hughes88d63092013-01-09 09:55:54 -08001650JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001651 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001652 Thread* self = Thread::Current();
1653 StackHandleScope<1> hs(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07001654 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error)));
Mathieu Chartierf8322842014-05-16 10:59:25 -07001655 if (c.Get() == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001656 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001657 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001658 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001659 expandBufAdd4BE(pReply, interface_count);
1660 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001661 expandBufAddRefTypeId(pReply,
1662 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001663 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001664 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001665}
1666
Ian Rogersc0542af2014-09-03 16:16:56 -07001667void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001668 struct DebugCallbackContext {
1669 int numItems;
1670 JDWP::ExpandBuf* pReply;
1671
Elliott Hughes2435a572012-02-17 16:07:41 -08001672 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001673 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1674 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001675 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001676 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001677 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001678 }
1679 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001680 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001681 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001682 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001683 if (code_item == nullptr) {
1684 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001685 start = -1;
1686 end = -1;
1687 } else {
1688 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001689 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001690 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001691 }
1692
1693 expandBufAdd8BE(pReply, start);
1694 expandBufAdd8BE(pReply, end);
1695
1696 // Add numLines later
1697 size_t numLinesOffset = expandBufGetLength(pReply);
1698 expandBufAdd4BE(pReply, 0);
1699
1700 DebugCallbackContext context;
1701 context.numItems = 0;
1702 context.pReply = pReply;
1703
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001704 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001705 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001706 DebugCallbackContext::Callback, nullptr, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001707 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001708
1709 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001710}
1711
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001712void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1713 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001714 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001715 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001716 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001717 size_t variable_count;
1718 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001719
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001720 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1721 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001722 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001723 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1724
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001725 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1726 pContext->variable_count, startAddress, endAddress - startAddress,
1727 name, descriptor, signature, slot,
1728 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001729
Jeff Haob7cefc72013-11-14 14:51:09 -08001730 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001731
Elliott Hughesdbb40792011-11-18 17:05:22 -08001732 expandBufAdd8BE(pContext->pReply, startAddress);
1733 expandBufAddUtf8String(pContext->pReply, name);
1734 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001735 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001736 expandBufAddUtf8String(pContext->pReply, signature);
1737 }
1738 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1739 expandBufAdd4BE(pContext->pReply, slot);
1740
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001741 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001742 }
1743 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001744 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001745
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001746 // arg_count considers doubles and longs to take 2 units.
1747 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001748 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001749 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001750
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001751 // We don't know the total number of variables yet, so leave a blank and update it later.
1752 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001753 expandBufAdd4BE(pReply, 0);
1754
1755 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001756 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001757 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001758 context.variable_count = 0;
1759 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001760
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001761 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001762 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001763 m->GetDexFile()->DecodeDebugInfo(
Ian Rogersc0542af2014-09-03 16:16:56 -07001764 code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001765 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001766 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001767
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001768 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001769}
1770
Jeff Hao579b0242013-11-18 13:16:49 -08001771void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1772 JDWP::ExpandBuf* pReply) {
1773 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001774 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001775 OutputJValue(tag, return_value, pReply);
1776}
1777
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001778void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1779 JDWP::ExpandBuf* pReply) {
1780 mirror::ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001781 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001782 OutputJValue(tag, field_value, pReply);
1783}
1784
Elliott Hughes9777ba22013-01-17 09:04:19 -08001785JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001786 std::vector<uint8_t>* bytecodes) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001787 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001788 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001789 return JDWP::ERR_INVALID_METHODID;
1790 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001791 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001792 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1793 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1794 const uint8_t* end = begin + byte_count;
1795 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001796 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001797 }
1798 return JDWP::ERR_NONE;
1799}
1800
Elliott Hughes88d63092013-01-09 09:55:54 -08001801JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001802 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001803}
1804
Elliott Hughes88d63092013-01-09 09:55:54 -08001805JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001806 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001807}
1808
Elliott Hughes88d63092013-01-09 09:55:54 -08001809static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1810 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001811 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001812 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001813 JDWP::JdwpError error;
1814 mirror::Class* c = DecodeClass(ref_type_id, &error);
1815 if (ref_type_id != 0 && c == nullptr) {
1816 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001817 }
1818
Sebastien Hertz6995c602014-09-09 12:10:13 +02001819 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001820 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001821 return JDWP::ERR_INVALID_OBJECT;
1822 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001823 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001824
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001825 mirror::Class* receiver_class = c;
Ian Rogersc0542af2014-09-03 16:16:56 -07001826 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001827 receiver_class = o->GetClass();
1828 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001829 // TODO: should we give up now if receiver_class is nullptr?
1830 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001831 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001832 return JDWP::ERR_INVALID_FIELDID;
1833 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001834
Elliott Hughes0cf74332012-02-23 23:14:00 -08001835 // The RI only enforces the static/non-static mismatch in one direction.
1836 // TODO: should we change the tests and check both?
1837 if (is_static) {
1838 if (!f->IsStatic()) {
1839 return JDWP::ERR_INVALID_FIELDID;
1840 }
1841 } else {
1842 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001843 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field "
1844 << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001845 }
1846 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001847 if (f->IsStatic()) {
1848 o = f->GetDeclaringClass();
1849 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001850
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001851 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001852 JValue field_value;
1853 if (tag == JDWP::JT_VOID) {
1854 LOG(FATAL) << "Unknown tag: " << tag;
1855 } else if (!IsPrimitiveTag(tag)) {
1856 field_value.SetL(f->GetObject(o));
1857 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1858 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001859 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001860 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001861 }
Jeff Hao579b0242013-11-18 13:16:49 -08001862 Dbg::OutputJValue(tag, &field_value, pReply);
1863
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001864 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001865}
1866
Elliott Hughes88d63092013-01-09 09:55:54 -08001867JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001868 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001869 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001870}
1871
Ian Rogersc0542af2014-09-03 16:16:56 -07001872JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1873 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001874 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001875}
1876
Elliott Hughes88d63092013-01-09 09:55:54 -08001877static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001878 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001879 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001880 JDWP::JdwpError error;
Sebastien Hertz6995c602014-09-09 12:10:13 +02001881 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001882 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001883 return JDWP::ERR_INVALID_OBJECT;
1884 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001885 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001886
1887 // The RI only enforces the static/non-static mismatch in one direction.
1888 // TODO: should we change the tests and check both?
1889 if (is_static) {
1890 if (!f->IsStatic()) {
1891 return JDWP::ERR_INVALID_FIELDID;
1892 }
1893 } else {
1894 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001895 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001896 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001897 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001898 if (f->IsStatic()) {
1899 o = f->GetDeclaringClass();
1900 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001901
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001902 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001903
1904 if (IsPrimitiveTag(tag)) {
1905 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001906 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001907 // Debugging can't use transactional mode (runtime only).
1908 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001909 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001910 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001911 // Debugging can't use transactional mode (runtime only).
1912 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001913 }
1914 } else {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001915 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001916 if (error != JDWP::ERR_NONE) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001917 return JDWP::ERR_INVALID_OBJECT;
1918 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001919 if (v != nullptr) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001920 mirror::Class* field_type;
1921 {
1922 StackHandleScope<3> hs(Thread::Current());
1923 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1924 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
1925 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
Ian Rogers08f1f502014-12-02 15:04:37 -08001926 field_type = h_f->GetType(true);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001927 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001928 if (!field_type->IsAssignableFrom(v->GetClass())) {
1929 return JDWP::ERR_INVALID_OBJECT;
1930 }
1931 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001932 // Debugging can't use transactional mode (runtime only).
1933 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001934 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001935
1936 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001937}
1938
Elliott Hughes88d63092013-01-09 09:55:54 -08001939JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001940 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001941 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001942}
1943
Elliott Hughes88d63092013-01-09 09:55:54 -08001944JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1945 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001946}
1947
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001948JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001949 JDWP::JdwpError error;
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001950 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error);
1951 if (error != JDWP::ERR_NONE) {
1952 return error;
1953 }
1954 if (obj == nullptr) {
1955 return JDWP::ERR_INVALID_OBJECT;
1956 }
1957 {
1958 ScopedObjectAccessUnchecked soa(Thread::Current());
1959 mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String);
1960 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
1961 // This isn't a string.
1962 return JDWP::ERR_INVALID_STRING;
1963 }
1964 }
1965 *str = obj->AsString()->ToModifiedUtf8();
1966 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001967}
1968
Jeff Hao579b0242013-11-18 13:16:49 -08001969void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1970 if (IsPrimitiveTag(tag)) {
1971 expandBufAdd1(pReply, tag);
1972 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1973 expandBufAdd1(pReply, return_value->GetI());
1974 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1975 expandBufAdd2BE(pReply, return_value->GetI());
1976 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1977 expandBufAdd4BE(pReply, return_value->GetI());
1978 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1979 expandBufAdd8BE(pReply, return_value->GetJ());
1980 } else {
1981 CHECK_EQ(tag, JDWP::JT_VOID);
1982 }
1983 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001984 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001985 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001986 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001987 expandBufAddObjectId(pReply, gRegistry->Add(value));
1988 }
1989}
1990
Ian Rogersc0542af2014-09-03 16:16:56 -07001991JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001992 ScopedObjectAccessUnchecked soa(Thread::Current());
1993 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001994 JDWP::JdwpError error;
1995 Thread* thread = DecodeThread(soa, thread_id, &error);
1996 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001997 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1998 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001999 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002000
2001 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07002002 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
2003 CHECK(thread_object != nullptr) << error;
Brian Carlstromea46f952013-07-30 01:26:50 -07002004 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002005 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
2006 mirror::String* s =
2007 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Ian Rogersc0542af2014-09-03 16:16:56 -07002008 if (s != nullptr) {
2009 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08002010 }
2011 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002012}
2013
Elliott Hughes221229c2013-01-08 18:17:50 -08002014JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02002015 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002016 JDWP::JdwpError error;
2017 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
2018 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002019 return JDWP::ERR_INVALID_OBJECT;
2020 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002021 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08002022 // Okay, so it's an object, but is it actually a thread?
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002023 {
2024 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002025 Thread* thread = DecodeThread(soa, thread_id, &error);
2026 UNUSED(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002027 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002028 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2029 // Zombie threads are in the null group.
2030 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002031 error = JDWP::ERR_NONE;
2032 } else if (error == JDWP::ERR_NONE) {
2033 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
2034 CHECK(c != nullptr);
Sebastien Hertze49e1952014-10-13 11:27:13 +02002035 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002036 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002037 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002038 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002039 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
2040 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08002041 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002042 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002043}
2044
Sebastien Hertza06430c2014-09-15 19:21:30 +02002045static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
2046 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
2047 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002048 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,
2049 error);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002050 if (*error != JDWP::ERR_NONE) {
2051 return nullptr;
2052 }
2053 if (thread_group == nullptr) {
2054 *error = JDWP::ERR_INVALID_OBJECT;
2055 return nullptr;
2056 }
Ian Rogers98379392014-02-24 16:53:16 -08002057 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
2058 CHECK(c != nullptr);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002059 if (!c->IsAssignableFrom(thread_group->GetClass())) {
2060 // This is not a java.lang.ThreadGroup.
2061 *error = JDWP::ERR_INVALID_THREAD_GROUP;
2062 return nullptr;
2063 }
2064 *error = JDWP::ERR_NONE;
2065 return thread_group;
2066}
2067
2068JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
2069 ScopedObjectAccessUnchecked soa(Thread::Current());
2070 JDWP::JdwpError error;
2071 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2072 if (error != JDWP::ERR_NONE) {
2073 return error;
2074 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002075 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupName");
Sebastien Hertze49e1952014-10-13 11:27:13 +02002076 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_name);
Ian Rogersc0542af2014-09-03 16:16:56 -07002077 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002078 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002079
2080 std::string thread_group_name(s->ToModifiedUtf8());
2081 expandBufAddUtf8String(pReply, thread_group_name);
2082 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002083}
2084
Sebastien Hertza06430c2014-09-15 19:21:30 +02002085JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08002086 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002087 JDWP::JdwpError error;
Sebastien Hertza06430c2014-09-15 19:21:30 +02002088 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2089 if (error != JDWP::ERR_NONE) {
2090 return error;
2091 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002092 mirror::Object* parent;
2093 {
2094 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupParent");
Sebastien Hertze49e1952014-10-13 11:27:13 +02002095 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_parent);
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002096 CHECK(f != nullptr);
2097 parent = f->GetObject(thread_group);
2098 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002099 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
2100 expandBufAddObjectId(pReply, parent_group_id);
2101 return JDWP::ERR_NONE;
2102}
2103
2104static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
2105 std::vector<JDWP::ObjectId>* child_thread_group_ids)
2106 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2107 CHECK(thread_group != nullptr);
2108
2109 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Sebastien Hertze49e1952014-10-13 11:27:13 +02002110 mirror::ArtField* groups_field = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_groups);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002111 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Sebastien Hertze49e1952014-10-13 11:27:13 +02002112 {
2113 // The "groups" field is declared as a java.util.List: check it really is
2114 // an instance of java.util.ArrayList.
2115 CHECK(groups_array_list != nullptr);
2116 mirror::Class* java_util_ArrayList_class =
2117 soa.Decode<mirror::Class*>(WellKnownClasses::java_util_ArrayList);
2118 CHECK(groups_array_list->InstanceOf(java_util_ArrayList_class));
2119 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002120
2121 // Get the array and size out of the ArrayList<ThreadGroup>...
Sebastien Hertze49e1952014-10-13 11:27:13 +02002122 mirror::ArtField* array_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_array);
2123 mirror::ArtField* size_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_size);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002124 mirror::ObjectArray<mirror::Object>* groups_array =
2125 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
2126 const int32_t size = size_field->GetInt(groups_array_list);
2127
2128 // Copy the first 'size' elements out of the array into the result.
Sebastien Hertz6995c602014-09-09 12:10:13 +02002129 ObjectRegistry* registry = Dbg::GetObjectRegistry();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002130 for (int32_t i = 0; i < size; ++i) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002131 child_thread_group_ids->push_back(registry->Add(groups_array->Get(i)));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002132 }
2133}
2134
2135JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2136 JDWP::ExpandBuf* pReply) {
2137 ScopedObjectAccessUnchecked soa(Thread::Current());
2138 JDWP::JdwpError error;
2139 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2140 if (error != JDWP::ERR_NONE) {
2141 return error;
2142 }
2143
2144 // Add child threads.
2145 {
2146 std::vector<JDWP::ObjectId> child_thread_ids;
2147 GetThreads(thread_group, &child_thread_ids);
2148 expandBufAdd4BE(pReply, child_thread_ids.size());
2149 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2150 expandBufAddObjectId(pReply, child_thread_id);
2151 }
2152 }
2153
2154 // Add child thread groups.
2155 {
2156 std::vector<JDWP::ObjectId> child_thread_groups_ids;
2157 GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids);
2158 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2159 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2160 expandBufAddObjectId(pReply, child_thread_group_id);
2161 }
2162 }
2163
2164 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002165}
2166
2167JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002168 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07002169 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002170 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002171 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002172}
2173
Jeff Hao920af3e2013-08-28 15:46:38 -07002174JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2175 switch (state) {
2176 case kBlocked:
2177 return JDWP::TS_MONITOR;
2178 case kNative:
2179 case kRunnable:
2180 case kSuspended:
2181 return JDWP::TS_RUNNING;
2182 case kSleeping:
2183 return JDWP::TS_SLEEPING;
2184 case kStarting:
2185 case kTerminated:
2186 return JDWP::TS_ZOMBIE;
2187 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002188 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002189 case kWaitingForDebuggerSend:
2190 case kWaitingForDebuggerSuspension:
2191 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002192 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002193 case kWaitingForGcToComplete:
Jeff Hao920af3e2013-08-28 15:46:38 -07002194 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002195 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002196 case kWaitingForSignalCatcherOutput:
2197 case kWaitingInMainDebuggerLoop:
2198 case kWaitingInMainSignalCatcherLoop:
2199 case kWaitingPerformingGc:
2200 case kWaiting:
2201 return JDWP::TS_WAIT;
2202 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2203 }
2204 LOG(FATAL) << "Unknown thread state: " << state;
2205 return JDWP::TS_ZOMBIE;
2206}
2207
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002208JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2209 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002210 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002211
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002212 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2213
Ian Rogers50b35e22012-10-04 10:09:15 -07002214 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002215 JDWP::JdwpError error;
2216 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002217 if (error != JDWP::ERR_NONE) {
2218 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2219 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002220 return JDWP::ERR_NONE;
2221 }
2222 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002223 }
2224
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002225 if (IsSuspendedForDebugger(soa, thread)) {
2226 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002227 }
2228
Jeff Hao920af3e2013-08-28 15:46:38 -07002229 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002230 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002231}
2232
Elliott Hughes221229c2013-01-08 18:17:50 -08002233JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002234 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07002235 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002236 JDWP::JdwpError error;
2237 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002238 if (error != JDWP::ERR_NONE) {
2239 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002240 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002241 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002242 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002243 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002244}
2245
Elliott Hughesf9501702013-01-11 11:22:27 -08002246JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2247 ScopedObjectAccess soa(Thread::Current());
2248 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002249 JDWP::JdwpError error;
2250 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002251 if (error != JDWP::ERR_NONE) {
2252 return error;
2253 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002254 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002255 return JDWP::ERR_NONE;
2256}
2257
Sebastien Hertz070f7322014-09-09 12:08:49 +02002258static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa,
2259 mirror::Object* desired_thread_group, mirror::Object* peer)
2260 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2261 // Do we want threads from all thread groups?
2262 if (desired_thread_group == nullptr) {
2263 return true;
2264 }
2265 mirror::ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
2266 DCHECK(thread_group_field != nullptr);
2267 mirror::Object* group = thread_group_field->GetObject(peer);
2268 return (group == desired_thread_group);
2269}
2270
Sebastien Hertza06430c2014-09-15 19:21:30 +02002271void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002272 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz070f7322014-09-09 12:08:49 +02002273 std::list<Thread*> all_threads_list;
2274 {
2275 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2276 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2277 }
2278 for (Thread* t : all_threads_list) {
2279 if (t == Dbg::GetDebugThread()) {
2280 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2281 // query all threads, so it's easier if we just don't tell them about this thread.
2282 continue;
2283 }
2284 if (t->IsStillStarting()) {
2285 // This thread is being started (and has been registered in the thread list). However, it is
2286 // not completely started yet so we must ignore it.
2287 continue;
2288 }
2289 mirror::Object* peer = t->GetPeer();
2290 if (peer == nullptr) {
2291 // peer might be NULL if the thread is still starting up. We can't tell the debugger about
2292 // this thread yet.
2293 // TODO: if we identified threads to the debugger by their Thread*
2294 // rather than their peer's mirror::Object*, we could fix this.
2295 // Doing so might help us report ZOMBIE threads too.
2296 continue;
2297 }
2298 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
2299 thread_ids->push_back(gRegistry->Add(peer));
2300 }
2301 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002302}
Elliott Hughesa2155262011-11-16 16:26:58 -08002303
Ian Rogersc0542af2014-09-03 16:16:56 -07002304static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002305 struct CountStackDepthVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002306 explicit CountStackDepthVisitor(Thread* thread_in)
2307 : StackVisitor(thread_in, nullptr), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002308
Elliott Hughes64f574f2013-02-20 14:57:12 -08002309 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2310 // annotalysis.
2311 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002312 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002313 ++depth;
2314 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002315 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002316 }
2317 size_t depth;
2318 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002319
Ian Rogers7a22fa62013-01-23 12:16:16 -08002320 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002321 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002322 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002323}
2324
Ian Rogersc0542af2014-09-03 16:16:56 -07002325JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002326 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002327 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002328 JDWP::JdwpError error;
2329 *result = 0;
2330 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002331 if (error != JDWP::ERR_NONE) {
2332 return error;
2333 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002334 if (!IsSuspendedForDebugger(soa, thread)) {
2335 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2336 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002337 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002338 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002339}
2340
Ian Rogers306057f2012-11-26 12:45:53 -08002341JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2342 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002343 class GetFrameVisitor : public StackVisitor {
2344 public:
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002345 GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in,
2346 JDWP::ExpandBuf* buf_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002347 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07002348 : StackVisitor(thread, nullptr), depth_(0),
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002349 start_frame_(start_frame_in), frame_count_(frame_count_in), buf_(buf_in) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002350 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002351 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002352
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002353 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2354 // annotalysis.
2355 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002356 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002357 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002358 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002359 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002360 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002361 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002362 if (depth_ >= start_frame_) {
2363 JDWP::FrameId frame_id(GetFrameId());
2364 JDWP::JdwpLocation location;
Sebastien Hertz6995c602014-09-09 12:10:13 +02002365 SetJdwpLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002366 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002367 expandBufAdd8BE(buf_, frame_id);
2368 expandBufAddLocation(buf_, location);
2369 }
2370 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002371 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002372 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002373
2374 private:
2375 size_t depth_;
2376 const size_t start_frame_;
2377 const size_t frame_count_;
2378 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002379 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002380
2381 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002382 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002383 JDWP::JdwpError error;
2384 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002385 if (error != JDWP::ERR_NONE) {
2386 return error;
2387 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002388 if (!IsSuspendedForDebugger(soa, thread)) {
2389 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2390 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002391 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002392 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002393 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002394}
2395
2396JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002397 return GetThreadId(Thread::Current());
2398}
2399
2400JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002401 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002402 return gRegistry->Add(thread->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002403}
2404
Elliott Hughes475fc232011-10-25 15:00:35 -07002405void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002406 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002407}
2408
2409void Dbg::ResumeVM() {
Sebastien Hertz253fa552014-10-14 17:27:15 +02002410 Runtime::Current()->GetThreadList()->ResumeAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002411}
2412
Elliott Hughes221229c2013-01-08 18:17:50 -08002413JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002414 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002415 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002416 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002417 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002418 JDWP::JdwpError error;
2419 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002420 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002421 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002422 return JDWP::ERR_THREAD_NOT_ALIVE;
2423 }
Ian Rogers4ad5cd32014-11-11 23:08:07 -08002424 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002425 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002426 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2427 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2428 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002429 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002430 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002431 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002432 return JDWP::ERR_INTERNAL;
2433 } else {
2434 return JDWP::ERR_THREAD_NOT_ALIVE;
2435 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002436}
2437
Elliott Hughes221229c2013-01-08 18:17:50 -08002438void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002439 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002440 JDWP::JdwpError error;
2441 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2442 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002443 Thread* thread;
2444 {
2445 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2446 thread = Thread::FromManagedThread(soa, peer);
2447 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002448 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002449 LOG(WARNING) << "No such thread for resume: " << peer;
2450 return;
2451 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002452 bool needs_resume;
2453 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002454 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002455 needs_resume = thread->GetSuspendCount() > 0;
2456 }
2457 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002458 Runtime::Current()->GetThreadList()->Resume(thread, true);
2459 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002460}
2461
2462void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002463 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002464}
2465
Ian Rogers0399dde2012-06-06 17:09:28 -07002466struct GetThisVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002467 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002468 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002469 : StackVisitor(thread, context), this_object(nullptr), frame_id(frame_id_in) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002470
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002471 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2472 // annotalysis.
2473 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002474 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002475 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002476 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002477 this_object = GetThisObject();
2478 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002479 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002480 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002481
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002482 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002483 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002484};
2485
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002486JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2487 JDWP::ObjectId* result) {
2488 ScopedObjectAccessUnchecked soa(Thread::Current());
2489 Thread* thread;
2490 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002491 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002492 JDWP::JdwpError error;
2493 thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002494 if (error != JDWP::ERR_NONE) {
2495 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002496 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002497 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002498 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2499 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002500 }
Ian Rogers700a4022014-05-19 16:49:03 -07002501 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002502 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002503 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002504 *result = gRegistry->Add(visitor.this_object);
2505 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002506}
2507
Sebastien Hertz8009f392014-09-01 17:07:11 +02002508// Walks the stack until we find the frame with the given FrameId.
2509class FindFrameVisitor FINAL : public StackVisitor {
2510 public:
2511 FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
2512 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2513 : StackVisitor(thread, context), frame_id_(frame_id), error_(JDWP::ERR_INVALID_FRAMEID) {}
Ian Rogersca190662012-06-26 15:45:57 -07002514
Sebastien Hertz8009f392014-09-01 17:07:11 +02002515 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2516 // annotalysis.
2517 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
2518 if (GetFrameId() != frame_id_) {
2519 return true; // Not our frame, carry on.
Ian Rogers0399dde2012-06-06 17:09:28 -07002520 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002521 mirror::ArtMethod* m = GetMethod();
2522 if (m->IsNative()) {
2523 // We can't read/write local value from/into native method.
2524 error_ = JDWP::ERR_OPAQUE_FRAME;
2525 } else {
2526 // We found our frame.
2527 error_ = JDWP::ERR_NONE;
2528 }
2529 return false;
2530 }
2531
2532 JDWP::JdwpError GetError() const {
2533 return error_;
2534 }
2535
2536 private:
2537 const JDWP::FrameId frame_id_;
2538 JDWP::JdwpError error_;
2539};
2540
2541JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2542 JDWP::ObjectId thread_id = request->ReadThreadId();
2543 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002544
2545 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002546 Thread* thread;
2547 {
2548 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2549 JDWP::JdwpError error;
2550 thread = DecodeThread(soa, thread_id, &error);
2551 if (error != JDWP::ERR_NONE) {
2552 return error;
2553 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002554 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002555 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002556 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002557 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002558 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002559 if (visitor.GetError() != JDWP::ERR_NONE) {
2560 return visitor.GetError();
2561 }
2562
2563 // Read the values from visitor's context.
2564 int32_t slot_count = request->ReadSigned32("slot count");
2565 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2566 for (int32_t i = 0; i < slot_count; ++i) {
2567 uint32_t slot = request->ReadUnsigned32("slot");
2568 JDWP::JdwpTag reqSigByte = request->ReadTag();
2569
2570 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
2571
2572 size_t width = Dbg::GetTagWidth(reqSigByte);
2573 uint8_t* ptr = expandBufAddSpace(pReply, width+1);
2574 JDWP::JdwpError error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width);
2575 if (error != JDWP::ERR_NONE) {
2576 return error;
2577 }
2578 }
2579 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002580}
2581
Sebastien Hertz8009f392014-09-01 17:07:11 +02002582JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2583 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
2584 mirror::ArtMethod* m = visitor.GetMethod();
2585 uint16_t reg = DemangleSlot(slot, m);
2586 // TODO: check that the tag is compatible with the actual type of the slot!
2587 // TODO: check slot is valid for this method or return INVALID_SLOT error.
2588 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
2589 switch (tag) {
2590 case JDWP::JT_BOOLEAN: {
2591 CHECK_EQ(width, 1U);
2592 uint32_t intVal;
2593 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2594 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2595 JDWP::Set1(buf + 1, intVal != 0);
2596 } else {
2597 VLOG(jdwp) << "failed to get boolean local " << reg;
2598 return kFailureErrorCode;
Ian Rogers0399dde2012-06-06 17:09:28 -07002599 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002600 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002601 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002602 case JDWP::JT_BYTE: {
2603 CHECK_EQ(width, 1U);
2604 uint32_t intVal;
2605 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2606 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2607 JDWP::Set1(buf + 1, intVal);
2608 } else {
2609 VLOG(jdwp) << "failed to get byte local " << reg;
2610 return kFailureErrorCode;
2611 }
2612 break;
2613 }
2614 case JDWP::JT_SHORT:
2615 case JDWP::JT_CHAR: {
2616 CHECK_EQ(width, 2U);
2617 uint32_t intVal;
2618 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2619 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2620 JDWP::Set2BE(buf + 1, intVal);
2621 } else {
2622 VLOG(jdwp) << "failed to get short/char local " << reg;
2623 return kFailureErrorCode;
2624 }
2625 break;
2626 }
2627 case JDWP::JT_INT: {
2628 CHECK_EQ(width, 4U);
2629 uint32_t intVal;
2630 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) {
2631 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2632 JDWP::Set4BE(buf + 1, intVal);
2633 } else {
2634 VLOG(jdwp) << "failed to get int local " << reg;
2635 return kFailureErrorCode;
2636 }
2637 break;
2638 }
2639 case JDWP::JT_FLOAT: {
2640 CHECK_EQ(width, 4U);
2641 uint32_t intVal;
2642 if (visitor.GetVReg(m, reg, kFloatVReg, &intVal)) {
2643 VLOG(jdwp) << "get float local " << reg << " = " << intVal;
2644 JDWP::Set4BE(buf + 1, intVal);
2645 } else {
2646 VLOG(jdwp) << "failed to get float local " << reg;
2647 return kFailureErrorCode;
2648 }
2649 break;
2650 }
2651 case JDWP::JT_ARRAY:
2652 case JDWP::JT_CLASS_LOADER:
2653 case JDWP::JT_CLASS_OBJECT:
2654 case JDWP::JT_OBJECT:
2655 case JDWP::JT_STRING:
2656 case JDWP::JT_THREAD:
2657 case JDWP::JT_THREAD_GROUP: {
2658 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2659 uint32_t intVal;
2660 if (visitor.GetVReg(m, reg, kReferenceVReg, &intVal)) {
2661 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2662 VLOG(jdwp) << "get " << tag << " object local " << reg << " = " << o;
2663 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2664 LOG(FATAL) << "Register " << reg << " expected to hold " << tag << " object: " << o;
2665 }
2666 tag = TagFromObject(soa, o);
2667 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
2668 } else {
2669 VLOG(jdwp) << "failed to get " << tag << " object local " << reg;
2670 return kFailureErrorCode;
2671 }
2672 break;
2673 }
2674 case JDWP::JT_DOUBLE: {
2675 CHECK_EQ(width, 8U);
2676 uint64_t longVal;
2677 if (visitor.GetVRegPair(m, reg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2678 VLOG(jdwp) << "get double local " << reg << " = " << longVal;
2679 JDWP::Set8BE(buf + 1, longVal);
2680 } else {
2681 VLOG(jdwp) << "failed to get double local " << reg;
2682 return kFailureErrorCode;
2683 }
2684 break;
2685 }
2686 case JDWP::JT_LONG: {
2687 CHECK_EQ(width, 8U);
2688 uint64_t longVal;
2689 if (visitor.GetVRegPair(m, reg, kLongLoVReg, kLongHiVReg, &longVal)) {
2690 VLOG(jdwp) << "get long local " << reg << " = " << longVal;
2691 JDWP::Set8BE(buf + 1, longVal);
2692 } else {
2693 VLOG(jdwp) << "failed to get long local " << reg;
2694 return kFailureErrorCode;
2695 }
2696 break;
2697 }
2698 default:
2699 LOG(FATAL) << "Unknown tag " << tag;
2700 break;
2701 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002702
Sebastien Hertz8009f392014-09-01 17:07:11 +02002703 // Prepend tag, which may have been updated.
2704 JDWP::Set1(buf, tag);
2705 return JDWP::ERR_NONE;
2706}
2707
2708JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2709 JDWP::ObjectId thread_id = request->ReadThreadId();
2710 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002711
2712 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002713 Thread* thread;
2714 {
2715 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2716 JDWP::JdwpError error;
2717 thread = DecodeThread(soa, thread_id, &error);
2718 if (error != JDWP::ERR_NONE) {
2719 return error;
2720 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002721 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002722 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002723 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002724 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002725 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002726 if (visitor.GetError() != JDWP::ERR_NONE) {
2727 return visitor.GetError();
2728 }
2729
2730 // Writes the values into visitor's context.
2731 int32_t slot_count = request->ReadSigned32("slot count");
2732 for (int32_t i = 0; i < slot_count; ++i) {
2733 uint32_t slot = request->ReadUnsigned32("slot");
2734 JDWP::JdwpTag sigByte = request->ReadTag();
2735 size_t width = Dbg::GetTagWidth(sigByte);
2736 uint64_t value = request->ReadValue(width);
2737
2738 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
2739 JDWP::JdwpError error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width);
2740 if (error != JDWP::ERR_NONE) {
2741 return error;
2742 }
2743 }
2744 return JDWP::ERR_NONE;
2745}
2746
2747JDWP::JdwpError Dbg::SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
2748 uint64_t value, size_t width) {
2749 mirror::ArtMethod* m = visitor.GetMethod();
2750 uint16_t reg = DemangleSlot(slot, m);
2751 // TODO: check that the tag is compatible with the actual type of the slot!
2752 // TODO: check slot is valid for this method or return INVALID_SLOT error.
2753 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
2754 switch (tag) {
2755 case JDWP::JT_BOOLEAN:
2756 case JDWP::JT_BYTE:
2757 CHECK_EQ(width, 1U);
2758 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2759 VLOG(jdwp) << "failed to set boolean/byte local " << reg << " = "
2760 << static_cast<uint32_t>(value);
2761 return kFailureErrorCode;
2762 }
2763 break;
2764 case JDWP::JT_SHORT:
2765 case JDWP::JT_CHAR:
2766 CHECK_EQ(width, 2U);
2767 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2768 VLOG(jdwp) << "failed to set short/char local " << reg << " = "
2769 << static_cast<uint32_t>(value);
2770 return kFailureErrorCode;
2771 }
2772 break;
2773 case JDWP::JT_INT:
2774 CHECK_EQ(width, 4U);
2775 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) {
2776 VLOG(jdwp) << "failed to set int local " << reg << " = "
2777 << static_cast<uint32_t>(value);
2778 return kFailureErrorCode;
2779 }
2780 break;
2781 case JDWP::JT_FLOAT:
2782 CHECK_EQ(width, 4U);
2783 if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kFloatVReg)) {
2784 VLOG(jdwp) << "failed to set float local " << reg << " = "
2785 << static_cast<uint32_t>(value);
2786 return kFailureErrorCode;
2787 }
2788 break;
2789 case JDWP::JT_ARRAY:
2790 case JDWP::JT_CLASS_LOADER:
2791 case JDWP::JT_CLASS_OBJECT:
2792 case JDWP::JT_OBJECT:
2793 case JDWP::JT_STRING:
2794 case JDWP::JT_THREAD:
2795 case JDWP::JT_THREAD_GROUP: {
2796 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2797 JDWP::JdwpError error;
2798 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value),
2799 &error);
2800 if (error != JDWP::ERR_NONE) {
2801 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2802 return JDWP::ERR_INVALID_OBJECT;
2803 } else if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2804 kReferenceVReg)) {
2805 VLOG(jdwp) << "failed to set " << tag << " object local " << reg << " = " << o;
2806 return kFailureErrorCode;
2807 }
2808 break;
2809 }
2810 case JDWP::JT_DOUBLE: {
2811 CHECK_EQ(width, 8U);
2812 if (!visitor.SetVRegPair(m, reg, value, kDoubleLoVReg, kDoubleHiVReg)) {
2813 VLOG(jdwp) << "failed to set double local " << reg << " = " << value;
2814 return kFailureErrorCode;
2815 }
2816 break;
2817 }
2818 case JDWP::JT_LONG: {
2819 CHECK_EQ(width, 8U);
2820 if (!visitor.SetVRegPair(m, reg, value, kLongLoVReg, kLongHiVReg)) {
2821 VLOG(jdwp) << "failed to set double local " << reg << " = " << value;
2822 return kFailureErrorCode;
2823 }
2824 break;
2825 }
2826 default:
2827 LOG(FATAL) << "Unknown tag " << tag;
2828 break;
2829 }
2830 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002831}
2832
Sebastien Hertz6995c602014-09-09 12:10:13 +02002833static void SetEventLocation(JDWP::EventLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
2834 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2835 DCHECK(location != nullptr);
2836 if (m == nullptr) {
2837 memset(location, 0, sizeof(*location));
2838 } else {
2839 location->method = m;
2840 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002841 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002842}
2843
Ian Rogersef7d42f2014-01-06 12:55:46 -08002844void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002845 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002846 if (!IsDebuggerActive()) {
2847 return;
2848 }
2849 DCHECK(m != nullptr);
2850 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002851 JDWP::EventLocation location;
2852 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002853
Sebastien Hertz6995c602014-09-09 12:10:13 +02002854 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002855}
2856
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002857void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
2858 mirror::Object* this_object, mirror::ArtField* f) {
2859 if (!IsDebuggerActive()) {
2860 return;
2861 }
2862 DCHECK(m != nullptr);
2863 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002864 JDWP::EventLocation location;
2865 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002866
Sebastien Hertz6995c602014-09-09 12:10:13 +02002867 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002868}
2869
2870void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
2871 mirror::Object* this_object, mirror::ArtField* f,
2872 const JValue* field_value) {
2873 if (!IsDebuggerActive()) {
2874 return;
2875 }
2876 DCHECK(m != nullptr);
2877 DCHECK(f != nullptr);
2878 DCHECK(field_value != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002879 JDWP::EventLocation location;
2880 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002881
Sebastien Hertz6995c602014-09-09 12:10:13 +02002882 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002883}
2884
2885void Dbg::PostException(const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002886 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002887 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002888 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002889 return;
2890 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002891 JDWP::EventLocation exception_throw_location;
2892 SetEventLocation(&exception_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
2893 JDWP::EventLocation exception_catch_location;
2894 SetEventLocation(&exception_catch_location, catch_method, catch_dex_pc);
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002895
Sebastien Hertz6995c602014-09-09 12:10:13 +02002896 gJdwpState->PostException(&exception_throw_location, exception_object, &exception_catch_location,
2897 throw_location.GetThis());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002898}
2899
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002900void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002901 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002902 return;
2903 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002904 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002905}
2906
Ian Rogers62d6c772013-02-27 08:32:07 -08002907void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002908 mirror::ArtMethod* m, uint32_t dex_pc,
2909 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002910 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002911 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002912 }
2913
Elliott Hughes86964332012-02-15 19:37:42 -08002914 if (IsBreakpoint(m, dex_pc)) {
2915 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002916 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002917
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002918 // If the debugger is single-stepping one of our threads, check to
2919 // see if we're that thread and we've reached a step point.
2920 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2921 DCHECK(single_step_control != nullptr);
2922 if (single_step_control->is_active) {
2923 CHECK(!m->IsNative());
2924 if (single_step_control->step_depth == JDWP::SD_INTO) {
2925 // Step into method calls. We break when the line number
2926 // or method pointer changes. If we're in SS_MIN mode, we
2927 // always stop.
2928 if (single_step_control->method != m) {
2929 event_flags |= kSingleStep;
2930 VLOG(jdwp) << "SS new method";
2931 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2932 event_flags |= kSingleStep;
2933 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002934 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002935 event_flags |= kSingleStep;
2936 VLOG(jdwp) << "SS new line";
2937 }
2938 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2939 // Step over method calls. We break when the line number is
2940 // different and the frame depth is <= the original frame
2941 // depth. (We can't just compare on the method, because we
2942 // might get unrolled past it by an exception, and it's tricky
2943 // to identify recursion.)
2944
2945 int stack_depth = GetStackDepth(thread);
2946
2947 if (stack_depth < single_step_control->stack_depth) {
2948 // Popped up one or more frames, always trigger.
2949 event_flags |= kSingleStep;
2950 VLOG(jdwp) << "SS method pop";
2951 } else if (stack_depth == single_step_control->stack_depth) {
2952 // Same depth, see if we moved.
2953 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002954 event_flags |= kSingleStep;
2955 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002956 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002957 event_flags |= kSingleStep;
2958 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002959 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002960 }
2961 } else {
2962 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2963 // Return from the current method. We break when the frame
2964 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002965
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002966 // This differs from the "method exit" break in that it stops
2967 // with the PC at the next instruction in the returned-to
2968 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002969
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002970 int stack_depth = GetStackDepth(thread);
2971 if (stack_depth < single_step_control->stack_depth) {
2972 event_flags |= kSingleStep;
2973 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002974 }
2975 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002976 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002977
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002978 // If there's something interesting going on, see if it matches one
2979 // of the debugger filters.
2980 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002981 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002982 }
2983}
2984
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002985size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2986 switch (instrumentation_event) {
2987 case instrumentation::Instrumentation::kMethodEntered:
2988 return &method_enter_event_ref_count_;
2989 case instrumentation::Instrumentation::kMethodExited:
2990 return &method_exit_event_ref_count_;
2991 case instrumentation::Instrumentation::kDexPcMoved:
2992 return &dex_pc_change_event_ref_count_;
2993 case instrumentation::Instrumentation::kFieldRead:
2994 return &field_read_event_ref_count_;
2995 case instrumentation::Instrumentation::kFieldWritten:
2996 return &field_write_event_ref_count_;
2997 case instrumentation::Instrumentation::kExceptionCaught:
2998 return &exception_catch_event_ref_count_;
2999 default:
3000 return nullptr;
3001 }
3002}
3003
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003004// Process request while all mutator threads are suspended.
3005void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003006 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003007 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003008 case DeoptimizationRequest::kNothing:
3009 LOG(WARNING) << "Ignoring empty deoptimization request.";
3010 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003011 case DeoptimizationRequest::kRegisterForEvent:
3012 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003013 request.InstrumentationEvent());
3014 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
3015 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003016 break;
3017 case DeoptimizationRequest::kUnregisterForEvent:
3018 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003019 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003020 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003021 request.InstrumentationEvent());
3022 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003023 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003024 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003025 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003026 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003027 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003028 break;
3029 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003030 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003031 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003032 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003033 break;
3034 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003035 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
3036 instrumentation->Deoptimize(request.Method());
3037 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003038 break;
3039 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003040 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
3041 instrumentation->Undeoptimize(request.Method());
3042 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003043 break;
3044 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003045 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003046 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003047 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003048}
3049
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003050void Dbg::DelayFullUndeoptimization() {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003051 if (RequiresDeoptimization()) {
3052 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
3053 ++delayed_full_undeoptimization_count_;
3054 DCHECK_LE(delayed_full_undeoptimization_count_, full_deoptimization_event_count_);
3055 }
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003056}
3057
3058void Dbg::ProcessDelayedFullUndeoptimizations() {
3059 // TODO: avoid taking the lock twice (once here and once in ManageDeoptimization).
3060 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003061 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003062 while (delayed_full_undeoptimization_count_ > 0) {
3063 DeoptimizationRequest req;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003064 req.SetKind(DeoptimizationRequest::kFullUndeoptimization);
3065 req.SetMethod(nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003066 RequestDeoptimizationLocked(req);
3067 --delayed_full_undeoptimization_count_;
3068 }
3069 }
3070 ManageDeoptimization();
3071}
3072
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003073void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003074 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003075 // Nothing to do.
3076 return;
3077 }
Brian Carlstrom306db812014-09-05 13:01:41 -07003078 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003079 RequestDeoptimizationLocked(req);
3080}
3081
3082void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003083 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003084 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003085 DCHECK_NE(req.InstrumentationEvent(), 0u);
3086 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003087 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003088 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003089 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003090 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003091 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003092 deoptimization_requests_.push_back(req);
3093 }
3094 *counter = *counter + 1;
3095 break;
3096 }
3097 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003098 DCHECK_NE(req.InstrumentationEvent(), 0u);
3099 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003100 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003101 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003102 *counter = *counter - 1;
3103 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003104 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003105 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003106 deoptimization_requests_.push_back(req);
3107 }
3108 break;
3109 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003110 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003111 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003112 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003113 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3114 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003115 deoptimization_requests_.push_back(req);
3116 }
3117 ++full_deoptimization_event_count_;
3118 break;
3119 }
3120 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003121 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003122 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003123 --full_deoptimization_event_count_;
3124 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003125 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3126 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003127 deoptimization_requests_.push_back(req);
3128 }
3129 break;
3130 }
3131 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003132 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003133 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003134 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003135 deoptimization_requests_.push_back(req);
3136 break;
3137 }
3138 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003139 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003140 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003141 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003142 deoptimization_requests_.push_back(req);
3143 break;
3144 }
3145 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003146 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003147 break;
3148 }
3149 }
3150}
3151
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003152void Dbg::ManageDeoptimization() {
3153 Thread* const self = Thread::Current();
3154 {
3155 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003156 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003157 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003158 return;
3159 }
3160 }
3161 CHECK_EQ(self->GetState(), kRunnable);
3162 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3163 // We need to suspend mutator threads first.
3164 Runtime* const runtime = Runtime::Current();
3165 runtime->GetThreadList()->SuspendAll();
3166 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003167 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003168 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003169 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003170 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003171 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003172 ProcessDeoptimizationRequest(request);
3173 }
3174 deoptimization_requests_.clear();
3175 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003176 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3177 runtime->GetThreadList()->ResumeAll();
3178 self->TransitionFromSuspendedToRunnable();
3179}
3180
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003181static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3182 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003183 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003184 if (code_item == nullptr) {
3185 // TODO We should not be asked to watch location in a native or abstract method so the code item
3186 // should never be null. We could just check we never encounter this case.
3187 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003188 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003189 // Note: method verifier may cause thread suspension.
3190 self->AssertThreadSuspensionIsAllowable();
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003191 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003192 mirror::Class* declaring_class = m->GetDeclaringClass();
3193 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3194 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003195 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Ian Rogers7b078e82014-09-10 14:44:24 -07003196 verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003197 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method,
Ian Rogers46960fe2014-05-23 10:43:43 -07003198 m->GetAccessFlags(), false, true, false);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003199 // Note: we don't need to verify the method.
3200 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3201}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003202
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003203static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003204 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003205 for (Breakpoint& breakpoint : gBreakpoints) {
3206 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003207 return &breakpoint;
3208 }
3209 }
3210 return nullptr;
3211}
3212
3213// Sanity checks all existing breakpoints on the same method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003214static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m,
3215 DeoptimizationRequest::Kind deoptimization_kind)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003216 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003217 for (const Breakpoint& breakpoint : gBreakpoints) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003218 if (breakpoint.Method() == m) {
3219 CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind());
3220 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003221 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003222 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
3223 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003224 // We should have deoptimized everything but not "selectively" deoptimized this method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003225 CHECK(instrumentation->AreAllMethodsDeoptimized());
3226 CHECK(!instrumentation->IsDeoptimized(m));
3227 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003228 // We should have "selectively" deoptimized this method.
3229 // Note: while we have not deoptimized everything for this method, we may have done it for
3230 // another event.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003231 CHECK(instrumentation->IsDeoptimized(m));
3232 } else {
3233 // This method does not require deoptimization.
3234 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3235 CHECK(!instrumentation->IsDeoptimized(m));
3236 }
3237}
3238
3239static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self,
3240 mirror::ArtMethod* m)
3241 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
3242 if (!Dbg::RequiresDeoptimization()) {
3243 // We already run in interpreter-only mode so we don't need to deoptimize anything.
3244 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method "
3245 << PrettyMethod(m);
3246 return DeoptimizationRequest::kNothing;
3247 }
3248 const Breakpoint* existing_breakpoint;
3249 {
3250 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3251 existing_breakpoint = FindFirstBreakpointForMethod(m);
3252 }
3253 if (existing_breakpoint == nullptr) {
3254 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3255 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3256 // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension.
3257 // Therefore we must not hold any lock when we call it.
3258 bool need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3259 if (need_full_deoptimization) {
3260 VLOG(jdwp) << "Need full deoptimization because of possible inlining of method "
3261 << PrettyMethod(m);
3262 return DeoptimizationRequest::kFullDeoptimization;
3263 } else {
3264 // We don't need to deoptimize if the method has not been compiled.
3265 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
3266 const bool is_compiled = class_linker->GetOatMethodQuickCodeFor(m) != nullptr;
3267 if (is_compiled) {
3268 VLOG(jdwp) << "Need selective deoptimization for compiled method " << PrettyMethod(m);
3269 return DeoptimizationRequest::kSelectiveDeoptimization;
3270 } else {
3271 // Method is not compiled: we don't need to deoptimize.
3272 VLOG(jdwp) << "No need for deoptimization for non-compiled method " << PrettyMethod(m);
3273 return DeoptimizationRequest::kNothing;
3274 }
3275 }
3276 } else {
3277 // There is at least one breakpoint for this method: we don't need to deoptimize.
3278 // Let's check that all breakpoints are configured the same way for deoptimization.
3279 VLOG(jdwp) << "Breakpoint already set: no deoptimization is required";
3280 DeoptimizationRequest::Kind deoptimization_kind = existing_breakpoint->GetDeoptimizationKind();
3281 if (kIsDebugBuild) {
3282 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3283 SanityCheckExistingBreakpoints(m, deoptimization_kind);
3284 }
3285 return DeoptimizationRequest::kNothing;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003286 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003287}
3288
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003289// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3290// request if we need to deoptimize.
3291void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3292 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003293 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003294 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003295
Sebastien Hertzf3928792014-11-17 19:00:37 +01003296 const DeoptimizationRequest::Kind deoptimization_kind = GetRequiredDeoptimizationKind(self, m);
3297 req->SetKind(deoptimization_kind);
3298 if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
3299 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003300 } else {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003301 CHECK(deoptimization_kind == DeoptimizationRequest::kNothing ||
3302 deoptimization_kind == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003303 req->SetMethod(nullptr);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003304 }
3305
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003306 {
3307 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003308 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, deoptimization_kind));
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003309 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3310 << gBreakpoints[gBreakpoints.size() - 1];
3311 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003312}
3313
3314// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3315// request if we need to undeoptimize.
3316void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003317 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003318 mirror::ArtMethod* m = FromMethodId(location->method_id);
3319 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003320 DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003321 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003322 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003323 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Sebastien Hertzf3928792014-11-17 19:00:37 +01003324 deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind();
3325 DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization,
3326 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003327 gBreakpoints.erase(gBreakpoints.begin() + i);
3328 break;
3329 }
3330 }
3331 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3332 if (existing_breakpoint == nullptr) {
3333 // There is no more breakpoint on this method: we need to undeoptimize.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003334 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003335 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003336 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3337 req->SetMethod(nullptr);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003338 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003339 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003340 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3341 req->SetMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003342 } else {
3343 // This method had no need for deoptimization: do nothing.
3344 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3345 req->SetKind(DeoptimizationRequest::kNothing);
3346 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003347 }
3348 } else {
3349 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003350 req->SetKind(DeoptimizationRequest::kNothing);
3351 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003352 if (kIsDebugBuild) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003353 SanityCheckExistingBreakpoints(m, deoptimization_kind);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003354 }
Elliott Hughes86964332012-02-15 19:37:42 -08003355 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003356}
3357
Jeff Hao449db332013-04-12 18:30:52 -07003358// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3359// cause suspension if the thread is the current thread.
3360class ScopedThreadSuspension {
3361 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003362 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003363 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003364 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003365 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003366 error_(JDWP::ERR_NONE),
3367 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003368 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003369 ScopedObjectAccessUnchecked soa(self);
3370 {
3371 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003372 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003373 }
3374 if (error_ == JDWP::ERR_NONE) {
3375 if (thread_ == soa.Self()) {
3376 self_suspend_ = true;
3377 } else {
3378 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Sebastien Hertz6995c602014-09-09 12:10:13 +02003379 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003380 bool timed_out;
Ian Rogers4ad5cd32014-11-11 23:08:07 -08003381 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3382 Thread* suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true,
3383 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07003384 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003385 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003386 // Thread terminated from under us while suspending.
3387 error_ = JDWP::ERR_INVALID_THREAD;
3388 } else {
3389 CHECK_EQ(suspended_thread, thread_);
3390 other_suspend_ = true;
3391 }
3392 }
3393 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003394 }
Elliott Hughes86964332012-02-15 19:37:42 -08003395
Jeff Hao449db332013-04-12 18:30:52 -07003396 Thread* GetThread() const {
3397 return thread_;
3398 }
3399
3400 JDWP::JdwpError GetError() const {
3401 return error_;
3402 }
3403
3404 ~ScopedThreadSuspension() {
3405 if (other_suspend_) {
3406 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3407 }
3408 }
3409
3410 private:
3411 Thread* thread_;
3412 JDWP::JdwpError error_;
3413 bool self_suspend_;
3414 bool other_suspend_;
3415};
3416
3417JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3418 JDWP::JdwpStepDepth step_depth) {
3419 Thread* self = Thread::Current();
3420 ScopedThreadSuspension sts(self, thread_id);
3421 if (sts.GetError() != JDWP::ERR_NONE) {
3422 return sts.GetError();
3423 }
3424
Elliott Hughes2435a572012-02-17 16:07:41 -08003425 //
3426 // Work out what Method* we're in, the current line number, and how deep the stack currently
3427 // is for step-out.
3428 //
3429
Ian Rogers0399dde2012-06-06 17:09:28 -07003430 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003431 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
3432 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003433 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07003434 : StackVisitor(thread, nullptr), single_step_control_(single_step_control),
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003435 line_number_(line_number) {
3436 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
Ian Rogersc0542af2014-09-03 16:16:56 -07003437 single_step_control_->method = nullptr;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003438 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08003439 }
Ian Rogersca190662012-06-26 15:45:57 -07003440
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003441 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3442 // annotalysis.
3443 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003444 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003445 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003446 ++single_step_control_->stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -07003447 if (single_step_control_->method == nullptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003448 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003449 single_step_control_->method = m;
3450 *line_number_ = -1;
Ian Rogersc0542af2014-09-03 16:16:56 -07003451 if (dex_cache != nullptr) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003452 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003453 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003454 }
Elliott Hughes86964332012-02-15 19:37:42 -08003455 }
3456 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003457 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003458 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003459
3460 SingleStepControl* const single_step_control_;
3461 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08003462 };
Jeff Hao449db332013-04-12 18:30:52 -07003463
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003464 Thread* const thread = sts.GetThread();
3465 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
3466 DCHECK(single_step_control != nullptr);
3467 int32_t line_number = -1;
3468 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07003469 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003470
Elliott Hughes2435a572012-02-17 16:07:41 -08003471 //
3472 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
3473 //
3474
3475 struct DebugCallbackContext {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003476 explicit DebugCallbackContext(SingleStepControl* single_step_control_cb, int32_t line_number_cb,
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003477 const DexFile::CodeItem* code_item)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003478 : single_step_control_(single_step_control_cb), line_number_(line_number_cb),
3479 code_item_(code_item), last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003480 }
3481
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003482 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number_cb) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003483 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003484 if (static_cast<int32_t>(line_number_cb) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003485 if (!context->last_pc_valid) {
3486 // Everything from this address until the next line change is ours.
3487 context->last_pc = address;
3488 context->last_pc_valid = true;
3489 }
3490 // Otherwise, if we're already in a valid range for this line,
3491 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003492 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003493 // Add everything from the last entry up until here to the set
3494 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003495 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003496 }
3497 context->last_pc_valid = false;
3498 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003499 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003500 }
3501
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003502 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003503 // If the line number was the last in the position table...
3504 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003505 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003506 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003507 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003508 }
3509 }
3510 }
3511
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003512 SingleStepControl* const single_step_control_;
3513 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003514 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003515 bool last_pc_valid;
3516 uint32_t last_pc;
3517 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003518 single_step_control->dex_pcs.clear();
Ian Rogersef7d42f2014-01-06 12:55:46 -08003519 mirror::ArtMethod* m = single_step_control->method;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003520 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003521 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003522 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003523 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07003524 DebugCallbackContext::Callback, nullptr, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003525 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003526
3527 //
3528 // Everything else...
3529 //
3530
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003531 single_step_control->step_size = step_size;
3532 single_step_control->step_depth = step_depth;
3533 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08003534
Elliott Hughes2435a572012-02-17 16:07:41 -08003535 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003536 VLOG(jdwp) << "Single-step thread: " << *thread;
3537 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
3538 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
3539 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
3540 VLOG(jdwp) << "Single-step current line: " << line_number;
3541 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08003542 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003543 for (uint32_t dex_pc : single_step_control->dex_pcs) {
3544 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003545 }
3546 }
3547
3548 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003549}
3550
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003551void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3552 ScopedObjectAccessUnchecked soa(Thread::Current());
3553 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003554 JDWP::JdwpError error;
3555 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003556 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003557 SingleStepControl* single_step_control = thread->GetSingleStepControl();
3558 DCHECK(single_step_control != nullptr);
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003559 single_step_control->Clear();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003560 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003561}
3562
Elliott Hughes45651fd2012-02-21 15:48:20 -08003563static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3564 switch (tag) {
3565 default:
3566 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
Ian Rogersfc787ec2014-10-09 21:56:44 -07003567 UNREACHABLE();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003568
3569 // Primitives.
3570 case JDWP::JT_BYTE: return 'B';
3571 case JDWP::JT_CHAR: return 'C';
3572 case JDWP::JT_FLOAT: return 'F';
3573 case JDWP::JT_DOUBLE: return 'D';
3574 case JDWP::JT_INT: return 'I';
3575 case JDWP::JT_LONG: return 'J';
3576 case JDWP::JT_SHORT: return 'S';
3577 case JDWP::JT_VOID: return 'V';
3578 case JDWP::JT_BOOLEAN: return 'Z';
3579
3580 // Reference types.
3581 case JDWP::JT_ARRAY:
3582 case JDWP::JT_OBJECT:
3583 case JDWP::JT_STRING:
3584 case JDWP::JT_THREAD:
3585 case JDWP::JT_THREAD_GROUP:
3586 case JDWP::JT_CLASS_LOADER:
3587 case JDWP::JT_CLASS_OBJECT:
3588 return 'L';
3589 }
3590}
3591
Elliott Hughes88d63092013-01-09 09:55:54 -08003592JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3593 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003594 uint32_t arg_count, uint64_t* arg_values,
3595 JDWP::JdwpTag* arg_types, uint32_t options,
3596 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3597 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003598 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3599
Ian Rogersc0542af2014-09-03 16:16:56 -07003600 Thread* targetThread = nullptr;
3601 DebugInvokeReq* req = nullptr;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003602 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003603 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003604 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003605 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003606 JDWP::JdwpError error;
3607 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003608 if (error != JDWP::ERR_NONE) {
3609 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3610 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003611 }
3612 req = targetThread->GetInvokeReq();
3613 if (!req->ready) {
3614 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3615 return JDWP::ERR_INVALID_THREAD;
3616 }
3617
3618 /*
3619 * We currently have a bug where we don't successfully resume the
3620 * target thread if the suspend count is too deep. We're expected to
3621 * require one "resume" for each "suspend", but when asked to execute
3622 * a method we have to resume fully and then re-suspend it back to the
3623 * same level. (The easiest way to cause this is to type "suspend"
3624 * multiple times in jdb.)
3625 *
3626 * It's unclear what this means when the event specifies "resume all"
3627 * and some threads are suspended more deeply than others. This is
3628 * a rare problem, so for now we just prevent it from hanging forever
3629 * by rejecting the method invocation request. Without this, we will
3630 * be stuck waiting on a suspended thread.
3631 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003632 int suspend_count;
3633 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003634 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003635 suspend_count = targetThread->GetSuspendCount();
3636 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003637 if (suspend_count > 1) {
3638 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003639 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003640 }
3641
Ian Rogersc0542af2014-09-03 16:16:56 -07003642 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3643 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003644 return JDWP::ERR_INVALID_OBJECT;
3645 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003646
Ian Rogersc0542af2014-09-03 16:16:56 -07003647 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id, &error);
3648 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003649 return JDWP::ERR_INVALID_OBJECT;
3650 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003651 // TODO: check that 'thread' is actually a java.lang.Thread!
3652
Ian Rogersc0542af2014-09-03 16:16:56 -07003653 mirror::Class* c = DecodeClass(class_id, &error);
3654 if (c == nullptr) {
3655 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003656 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003657
Brian Carlstromea46f952013-07-30 01:26:50 -07003658 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003659 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003660 return JDWP::ERR_INVALID_METHODID;
3661 }
3662 if (m->IsStatic()) {
3663 if (m->GetDeclaringClass() != c) {
3664 return JDWP::ERR_INVALID_METHODID;
3665 }
3666 } else {
3667 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3668 return JDWP::ERR_INVALID_METHODID;
3669 }
3670 }
3671
3672 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003673 uint32_t shorty_len = 0;
3674 const char* shorty = m->GetShorty(&shorty_len);
3675 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003676 return JDWP::ERR_ILLEGAL_ARGUMENT;
3677 }
Elliott Hughes09201632013-04-15 15:50:07 -07003678
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003679 {
3680 StackHandleScope<3> hs(soa.Self());
3681 MethodHelper mh(hs.NewHandle(m));
3682 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3683 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3684 const DexFile::TypeList* types = m->GetParameterTypeList();
3685 for (size_t i = 0; i < arg_count; ++i) {
3686 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003687 return JDWP::ERR_ILLEGAL_ARGUMENT;
3688 }
3689
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003690 if (shorty[i + 1] == 'L') {
3691 // Did we really get an argument of an appropriate reference type?
3692 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003693 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
3694 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003695 return JDWP::ERR_INVALID_OBJECT;
3696 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003697 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003698 return JDWP::ERR_ILLEGAL_ARGUMENT;
3699 }
3700
3701 // Turn the on-the-wire ObjectId into a jobject.
3702 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3703 v.l = gRegistry->GetJObject(arg_values[i]);
3704 }
Elliott Hughes09201632013-04-15 15:50:07 -07003705 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003706 // Update in case it moved.
3707 m = mh.GetMethod();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003708 }
3709
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003710 req->receiver = receiver;
3711 req->thread = thread;
3712 req->klass = c;
3713 req->method = m;
3714 req->arg_count = arg_count;
3715 req->arg_values = arg_values;
3716 req->options = options;
3717 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003718 }
3719
3720 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3721 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3722 // call, and it's unwise to hold it during WaitForSuspend.
3723
3724 {
3725 /*
3726 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003727 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003728 * run out of memory. It's also a good idea to change it before locking
3729 * the invokeReq mutex, although that should never be held for long.
3730 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003731 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003732
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003733 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003734 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003735 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003736
3737 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003738 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003739 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003740 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003741 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003742 thread_list->Resume(targetThread, true);
3743 }
3744
3745 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003746 while (req->invoke_needed) {
3747 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003748 }
3749 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003750 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003751
3752 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003753 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003754 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003755 }
3756
3757 /*
3758 * Suspend the threads. We waited for the target thread to suspend
3759 * itself, so all we need to do is suspend the others.
3760 *
3761 * The suspendAllThreads() call will double-suspend the event thread,
3762 * so we want to resume the target thread once to keep the books straight.
3763 */
3764 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003765 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003766 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003767 thread_list->SuspendAllForDebugger();
3768 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003769 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003770 thread_list->Resume(targetThread, true);
3771 }
3772
3773 // Copy the result.
3774 *pResultTag = req->result_tag;
3775 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003776 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003777 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003778 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003779 }
3780 *pExceptionId = req->exception;
3781 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003782}
3783
3784void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003785 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003786
Elliott Hughes81ff3182012-03-23 20:35:56 -07003787 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003788 // to preserve that across the method invocation.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003789 StackHandleScope<4> hs(soa.Self());
3790 auto old_throw_this_object = hs.NewHandle<mirror::Object>(nullptr);
3791 auto old_throw_method = hs.NewHandle<mirror::ArtMethod>(nullptr);
3792 auto old_exception = hs.NewHandle<mirror::Throwable>(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003793 uint32_t old_throw_dex_pc;
Sebastien Hertz9f102032014-05-23 08:59:42 +02003794 bool old_exception_report_flag;
Ian Rogers62d6c772013-02-27 08:32:07 -08003795 {
3796 ThrowLocation old_throw_location;
3797 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003798 old_throw_this_object.Assign(old_throw_location.GetThis());
3799 old_throw_method.Assign(old_throw_location.GetMethod());
3800 old_exception.Assign(old_exception_obj);
Ian Rogers62d6c772013-02-27 08:32:07 -08003801 old_throw_dex_pc = old_throw_location.GetDexPc();
Sebastien Hertz9f102032014-05-23 08:59:42 +02003802 old_exception_report_flag = soa.Self()->IsExceptionReportedToInstrumentation();
Ian Rogers62d6c772013-02-27 08:32:07 -08003803 soa.Self()->ClearException();
3804 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003805
3806 // Translate the method through the vtable, unless the debugger wants to suppress it.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003807 MutableHandle<mirror::ArtMethod> m(hs.NewHandle(pReq->method));
Ian Rogersc0542af2014-09-03 16:16:56 -07003808 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003809 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.Get());
3810 if (actual_method != m.Get()) {
3811 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get()) << " to " << PrettyMethod(actual_method);
3812 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003813 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003814 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003815 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003816 << " receiver=" << pReq->receiver
3817 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003818 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003819
3820 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3821
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003822 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.Get()),
Ian Rogers53b8b092014-03-13 23:45:53 -07003823 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003824
Ian Rogersc0542af2014-09-03 16:16:56 -07003825 mirror::Throwable* exception = soa.Self()->GetException(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003826 soa.Self()->ClearException();
3827 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003828 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003829 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003830 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3831 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003832 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003833 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3834 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003835 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003836 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003837 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003838 pReq->result_tag = new_tag;
3839 }
3840
3841 /*
3842 * Register the object. We don't actually need an ObjectId yet,
3843 * but we do need to be sure that the GC won't move or discard the
3844 * object when we switch out of RUNNING. The ObjectId conversion
3845 * will add the object to the "do not touch" list.
3846 *
3847 * We can't use the "tracked allocation" mechanism here because
3848 * the object is going to be handed off to a different thread.
3849 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003850 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003851 }
3852
Ian Rogersc0542af2014-09-03 16:16:56 -07003853 if (old_exception.Get() != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003854 ThrowLocation gc_safe_throw_location(old_throw_this_object.Get(), old_throw_method.Get(),
Ian Rogers62d6c772013-02-27 08:32:07 -08003855 old_throw_dex_pc);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003856 soa.Self()->SetException(gc_safe_throw_location, old_exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +02003857 soa.Self()->SetExceptionReportedToInstrumentation(old_exception_report_flag);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003858 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003859}
3860
Elliott Hughesd07986f2011-12-06 18:27:45 -08003861/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003862 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003863 * need to process each, accumulate the replies, and ship the whole thing
3864 * back.
3865 *
3866 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3867 * and includes the chunk type/length, followed by the data.
3868 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003869 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003870 * chunk. If this becomes inconvenient we will need to adapt.
3871 */
Ian Rogersc0542af2014-09-03 16:16:56 -07003872bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003873 Thread* self = Thread::Current();
3874 JNIEnv* env = self->GetJniEnv();
3875
Ian Rogersc0542af2014-09-03 16:16:56 -07003876 uint32_t type = request->ReadUnsigned32("type");
3877 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003878
3879 // Create a byte[] corresponding to 'request'.
Ian Rogersc0542af2014-09-03 16:16:56 -07003880 size_t request_length = request->size();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003881 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Ian Rogersc0542af2014-09-03 16:16:56 -07003882 if (dataArray.get() == nullptr) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003883 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003884 env->ExceptionClear();
3885 return false;
3886 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003887 env->SetByteArrayRegion(dataArray.get(), 0, request_length,
3888 reinterpret_cast<const jbyte*>(request->data()));
3889 request->Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003890
3891 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003892 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003893 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003894 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003895 return false;
3896 }
3897
3898 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003899 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3900 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003901 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003902 if (env->ExceptionCheck()) {
3903 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3904 env->ExceptionDescribe();
3905 env->ExceptionClear();
3906 return false;
3907 }
3908
Ian Rogersc0542af2014-09-03 16:16:56 -07003909 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003910 return false;
3911 }
3912
3913 /*
3914 * Pull the pieces out of the chunk. We copy the results into a
3915 * newly-allocated buffer that the caller can free. We don't want to
3916 * continue using the Chunk object because nothing has a reference to it.
3917 *
3918 * We could avoid this by returning type/data/offset/length and having
3919 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003920 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003921 * if we have responses for multiple chunks.
3922 *
3923 * So we're pretty much stuck with copying data around multiple times.
3924 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003925 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 -08003926 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003927 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003928 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003929
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003930 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 -07003931 if (length == 0 || replyData.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003932 return false;
3933 }
3934
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003935 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003936 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
Ian Rogersc0542af2014-09-03 16:16:56 -07003937 if (reply == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003938 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3939 return false;
3940 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003941 JDWP::Set4BE(reply + 0, type);
3942 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003943 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003944
3945 *pReplyBuf = reply;
3946 *pReplyLen = length + kChunkHdrLen;
3947
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003948 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003949 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003950}
3951
Elliott Hughesa2155262011-11-16 16:26:58 -08003952void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003953 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003954
3955 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003956 if (self->GetState() != kRunnable) {
3957 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3958 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003959 }
3960
3961 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003962 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003963 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3964 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3965 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003966 if (env->ExceptionCheck()) {
3967 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3968 env->ExceptionDescribe();
3969 env->ExceptionClear();
3970 }
3971}
3972
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003973void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003974 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003975}
3976
3977void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003978 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003979 gDdmThreadNotification = false;
3980}
3981
3982/*
Elliott Hughes82188472011-11-07 18:11:48 -08003983 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003984 *
3985 * Because we broadcast the full set of threads when the notifications are
3986 * first enabled, it's possible for "thread" to be actively executing.
3987 */
Elliott Hughes82188472011-11-07 18:11:48 -08003988void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003989 if (!gDdmThreadNotification) {
3990 return;
3991 }
3992
Elliott Hughes82188472011-11-07 18:11:48 -08003993 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003994 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003995 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003996 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003997 } else {
3998 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003999 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004000 StackHandleScope<1> hs(soa.Self());
4001 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
Ian Rogersc0542af2014-09-03 16:16:56 -07004002 size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0;
4003 const jchar* chars = (name.Get() != nullptr) ? name->GetCharArray()->GetData() : nullptr;
Elliott Hughes82188472011-11-07 18:11:48 -08004004
Elliott Hughes21f32d72011-11-09 17:44:13 -08004005 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004006 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004007 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08004008 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
4009 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07004010 }
4011}
4012
Elliott Hughes47fce012011-10-25 18:37:19 -07004013void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004014 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07004015 gDdmThreadNotification = enable;
4016 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004017 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
4018 // see a suspension in progress and block until that ends. They then post their own start
4019 // notification.
4020 SuspendVM();
4021 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07004022 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004023 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004024 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004025 threads = Runtime::Current()->GetThreadList()->GetList();
4026 }
4027 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004028 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07004029 for (Thread* thread : threads) {
4030 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004031 }
4032 }
4033 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07004034 }
4035}
4036
Elliott Hughesa2155262011-11-16 16:26:58 -08004037void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07004038 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02004039 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004040 }
Elliott Hughes82188472011-11-07 18:11:48 -08004041 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07004042}
4043
4044void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004045 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004046}
4047
4048void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004049 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004050}
4051
Elliott Hughes82188472011-11-07 18:11:48 -08004052void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004053 CHECK(buf != nullptr);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004054 iovec vec[1];
4055 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
4056 vec[0].iov_len = byte_count;
4057 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004058}
4059
Elliott Hughes21f32d72011-11-09 17:44:13 -08004060void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
4061 DdmSendChunk(type, bytes.size(), &bytes[0]);
4062}
4063
Brian Carlstromf5293522013-07-19 00:24:00 -07004064void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004065 if (gJdwpState == nullptr) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004066 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07004067 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08004068 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004069 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004070}
4071
Elliott Hughes767a1472011-10-26 18:49:02 -07004072int Dbg::DdmHandleHpifChunk(HpifWhen when) {
4073 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07004074 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07004075 return true;
4076 }
4077
4078 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4079 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4080 return false;
4081 }
4082
4083 gDdmHpifWhen = when;
4084 return true;
4085}
4086
4087bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4088 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4089 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4090 return false;
4091 }
4092
4093 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4094 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4095 return false;
4096 }
4097
4098 if (native) {
4099 gDdmNhsgWhen = when;
4100 gDdmNhsgWhat = what;
4101 } else {
4102 gDdmHpsgWhen = when;
4103 gDdmHpsgWhat = what;
4104 }
4105 return true;
4106}
4107
Elliott Hughes7162ad92011-10-27 14:08:42 -07004108void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4109 // If there's a one-shot 'when', reset it.
4110 if (reason == gDdmHpifWhen) {
4111 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4112 gDdmHpifWhen = HPIF_WHEN_NEVER;
4113 }
4114 }
4115
4116 /*
4117 * Chunk HPIF (client --> server)
4118 *
4119 * Heap Info. General information about the heap,
4120 * suitable for a summary display.
4121 *
4122 * [u4]: number of heaps
4123 *
4124 * For each heap:
4125 * [u4]: heap ID
4126 * [u8]: timestamp in ms since Unix epoch
4127 * [u1]: capture reason (same as 'when' value from server)
4128 * [u4]: max heap size in bytes (-Xmx)
4129 * [u4]: current heap size in bytes
4130 * [u4]: current number of bytes allocated
4131 * [u4]: current number of objects allocated
4132 */
4133 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004134 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004135 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004136 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004137 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004138 JDWP::Append8BE(bytes, MilliTime());
4139 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004140 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4141 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004142 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4143 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004144 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
4145 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07004146}
4147
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004148enum HpsgSolidity {
4149 SOLIDITY_FREE = 0,
4150 SOLIDITY_HARD = 1,
4151 SOLIDITY_SOFT = 2,
4152 SOLIDITY_WEAK = 3,
4153 SOLIDITY_PHANTOM = 4,
4154 SOLIDITY_FINALIZABLE = 5,
4155 SOLIDITY_SWEEP = 6,
4156};
4157
4158enum HpsgKind {
4159 KIND_OBJECT = 0,
4160 KIND_CLASS_OBJECT = 1,
4161 KIND_ARRAY_1 = 2,
4162 KIND_ARRAY_2 = 3,
4163 KIND_ARRAY_4 = 4,
4164 KIND_ARRAY_8 = 5,
4165 KIND_UNKNOWN = 6,
4166 KIND_NATIVE = 7,
4167};
4168
4169#define HPSG_PARTIAL (1<<7)
4170#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4171
Ian Rogers30fab402012-01-23 15:43:46 -08004172class HeapChunkContext {
4173 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004174 // Maximum chunk size. Obtain this from the formula:
4175 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4176 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004177 : buf_(16384 - 16),
4178 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004179 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004180 Reset();
4181 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004182 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004183 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004184 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004185 }
4186 }
4187
4188 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004189 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004190 Flush();
4191 }
4192 }
4193
Mathieu Chartier36dab362014-07-30 14:59:56 -07004194 void SetChunkOverhead(size_t chunk_overhead) {
4195 chunk_overhead_ = chunk_overhead;
4196 }
4197
4198 void ResetStartOfNextChunk() {
4199 startOfNextMemoryChunk_ = nullptr;
4200 }
4201
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004202 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004203 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004204 return;
4205 }
4206
4207 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004208 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4209 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004210
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004211 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4212 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004213 // [u4]: length of piece, in allocation units
4214 // 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 -08004215 pieceLenField_ = p_;
4216 JDWP::Write4BE(&p_, 0x55555555);
4217 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004218 }
4219
Ian Rogersb726dcb2012-09-05 08:57:23 -07004220 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004221 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004222 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4223 CHECK(needHeader_);
4224 return;
4225 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004226 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004227 CHECK_LE(&buf_[0], pieceLenField_);
4228 CHECK_LE(pieceLenField_, p_);
4229 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004230
Ian Rogers30fab402012-01-23 15:43:46 -08004231 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004232 Reset();
4233 }
4234
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004235 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004236 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4237 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004238 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004239 }
4240
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004241 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004242 enum { ALLOCATION_UNIT_SIZE = 8 };
4243
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004244 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004245 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004246 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004247 totalAllocationUnits_ = 0;
4248 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004249 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004250 }
4251
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004252 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004253 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4254 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004255 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4256 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004257 if (used_bytes == 0) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004258 if (start == nullptr) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004259 // Reset for start of new heap.
Ian Rogersc0542af2014-09-03 16:16:56 -07004260 startOfNextMemoryChunk_ = nullptr;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004261 Flush();
4262 }
4263 // Only process in use memory so that free region information
4264 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08004265 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08004266 }
4267
Ian Rogers15bf2d32012-08-28 17:33:04 -07004268 /* If we're looking at the native heap, we'll just return
4269 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
4270 */
4271 bool native = type_ == CHUNK_TYPE("NHSG");
4272
Mathieu Chartier36dab362014-07-30 14:59:56 -07004273 // TODO: I'm not sure using start of next chunk works well with multiple spaces. We shouldn't
4274 // count gaps inbetween spaces as free memory.
Ian Rogersc0542af2014-09-03 16:16:56 -07004275 if (startOfNextMemoryChunk_ != nullptr) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004276 // Transmit any pending free memory. Native free memory of
4277 // over kMaxFreeLen could be because of the use of mmaps, so
4278 // don't report. If not free memory then start a new segment.
4279 bool flush = true;
4280 if (start > startOfNextMemoryChunk_) {
4281 const size_t kMaxFreeLen = 2 * kPageSize;
4282 void* freeStart = startOfNextMemoryChunk_;
4283 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07004284 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07004285 if (!native || freeLen < kMaxFreeLen) {
4286 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
4287 flush = false;
4288 }
4289 }
4290 if (flush) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004291 startOfNextMemoryChunk_ = nullptr;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004292 Flush();
4293 }
4294 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08004295 mirror::Object* obj = reinterpret_cast<mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08004296
4297 // Determine the type of this chunk.
4298 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4299 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004300 uint8_t state = ExamineObject(obj, native);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004301 AppendChunk(state, start, used_bytes + chunk_overhead_);
4302 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004303 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004304
Ian Rogers15bf2d32012-08-28 17:33:04 -07004305 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004306 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004307 // Make sure there's enough room left in the buffer.
4308 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4309 // 17 bytes for any header.
4310 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
4311 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4312 if (bytesLeft < needed) {
4313 Flush();
4314 }
4315
4316 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4317 if (bytesLeft < needed) {
4318 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4319 << needed << " bytes)";
4320 return;
4321 }
4322 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004323 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004324 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4325 totalAllocationUnits_ += length;
4326 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004327 *p_++ = state | HPSG_PARTIAL;
4328 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004329 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004330 }
Ian Rogers30fab402012-01-23 15:43:46 -08004331 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004332 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004333 }
4334
Ian Rogersef7d42f2014-01-06 12:55:46 -08004335 uint8_t ExamineObject(mirror::Object* o, bool is_native_heap)
4336 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004337 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004338 return HPSG_STATE(SOLIDITY_FREE, 0);
4339 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004340
Elliott Hughesa2155262011-11-16 16:26:58 -08004341 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004342
Elliott Hughesa2155262011-11-16 16:26:58 -08004343 // If we're looking at the native heap, we'll just return
4344 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004345 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004346 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4347 }
4348
Ian Rogers5bfa60f2012-09-02 21:17:56 -07004349 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004350 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004351 }
4352
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004353 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004354 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004355 // The object was probably just created but hasn't been initialized yet.
4356 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4357 }
4358
Mathieu Chartier590fee92013-09-13 13:46:47 -07004359 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004360 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004361 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4362 }
4363
4364 if (c->IsClassClass()) {
4365 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4366 }
4367
4368 if (c->IsArrayClass()) {
4369 if (o->IsObjectArray()) {
4370 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4371 }
4372 switch (c->GetComponentSize()) {
4373 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4374 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4375 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4376 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4377 }
4378 }
4379
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004380 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4381 }
4382
Ian Rogers30fab402012-01-23 15:43:46 -08004383 std::vector<uint8_t> buf_;
4384 uint8_t* p_;
4385 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004386 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004387 size_t totalAllocationUnits_;
4388 uint32_t type_;
Ian Rogers30fab402012-01-23 15:43:46 -08004389 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004390 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004391
Elliott Hughesa2155262011-11-16 16:26:58 -08004392 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4393};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004394
Mathieu Chartier36dab362014-07-30 14:59:56 -07004395static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
4396 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
4397 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
4398 HeapChunkContext::HeapChunkCallback(
4399 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4400}
4401
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004402void Dbg::DdmSendHeapSegments(bool native) {
4403 Dbg::HpsgWhen when;
4404 Dbg::HpsgWhat what;
4405 if (!native) {
4406 when = gDdmHpsgWhen;
4407 what = gDdmHpsgWhat;
4408 } else {
4409 when = gDdmNhsgWhen;
4410 what = gDdmNhsgWhat;
4411 }
4412 if (when == HPSG_WHEN_NEVER) {
4413 return;
4414 }
4415
4416 // Figure out what kind of chunks we'll be sending.
4417 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
4418
4419 // First, send a heap start chunk.
4420 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004421 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004422 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
4423
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004424 Thread* self = Thread::Current();
4425
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004426 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004427
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004428 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08004429 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
4430 if (native) {
Ian Rogers872dd822014-10-30 11:19:14 -07004431#if defined(HAVE_ANDROID_OS) && defined(USE_DLMALLOC)
Ian Rogers1d54e732013-05-02 21:10:01 -07004432 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004433#else
4434 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4435#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004436 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004437 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004438 for (const auto& space : heap->GetContinuousSpaces()) {
4439 if (space->IsDlMallocSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004440 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004441 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4442 // allocation then the first sizeof(size_t) may belong to it.
4443 context.SetChunkOverhead(sizeof(size_t));
4444 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
4445 } else if (space->IsRosAllocSpace()) {
4446 context.SetChunkOverhead(0);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004447 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4448 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
4449 self->TransitionFromRunnableToSuspended(kSuspended);
4450 ThreadList* tl = Runtime::Current()->GetThreadList();
4451 tl->SuspendAll();
4452 {
4453 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4454 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
4455 }
4456 tl->ResumeAll();
4457 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004458 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004459 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004460 context.SetChunkOverhead(0);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004461 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
4462 } else {
4463 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004464 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004465 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004466 }
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004467 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004468 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004469 context.SetChunkOverhead(0);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004470 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004471 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004472
4473 // Finally, send a heap end chunk.
4474 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004475}
4476
Elliott Hughesb1a58792013-07-11 18:10:58 -07004477static size_t GetAllocTrackerMax() {
4478#ifdef HAVE_ANDROID_OS
4479 // Check whether there's a system property overriding the number of records.
4480 const char* propertyName = "dalvik.vm.allocTrackerMax";
4481 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4482 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4483 char* end;
4484 size_t value = strtoul(allocRecordMaxString, &end, 10);
4485 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004486 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4487 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004488 return kDefaultNumAllocRecords;
4489 }
4490 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004491 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4492 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004493 return kDefaultNumAllocRecords;
4494 }
4495 return value;
4496 }
4497#endif
4498 return kDefaultNumAllocRecords;
4499}
4500
Brian Carlstrom306db812014-09-05 13:01:41 -07004501void Dbg::SetAllocTrackingEnabled(bool enable) {
4502 Thread* self = Thread::Current();
4503 if (enable) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004504 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004505 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4506 if (recent_allocation_records_ != nullptr) {
4507 return; // Already enabled, bail.
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004508 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004509 alloc_record_max_ = GetAllocTrackerMax();
4510 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4511 << kMaxAllocRecordStackDepth << " frames, taking "
4512 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4513 DCHECK_EQ(alloc_record_head_, 0U);
4514 DCHECK_EQ(alloc_record_count_, 0U);
4515 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4516 CHECK(recent_allocation_records_ != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004517 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004518 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004519 } else {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004520 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004521 ScopedObjectAccess soa(self); // For type_cache_.Clear();
4522 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4523 if (recent_allocation_records_ == nullptr) {
4524 return; // Already disabled, bail.
4525 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07004526 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004527 delete[] recent_allocation_records_;
Ian Rogersc0542af2014-09-03 16:16:56 -07004528 recent_allocation_records_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -07004529 alloc_record_head_ = 0;
4530 alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004531 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004532 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004533 // If an allocation comes in before we uninstrument, we will safely drop it on the floor.
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004534 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004535 }
4536}
4537
Ian Rogers0399dde2012-06-06 17:09:28 -07004538struct AllocRecordStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004539 AllocRecordStackVisitor(Thread* thread, AllocRecord* record_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004540 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004541 : StackVisitor(thread, nullptr), record(record_in), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004542
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004543 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4544 // annotalysis.
4545 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004546 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004547 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004548 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004549 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004550 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004551 record->StackElement(depth)->SetMethod(m);
4552 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004553 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004554 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004555 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004556 }
4557
4558 ~AllocRecordStackVisitor() {
4559 // Clear out any unused stack trace elements.
4560 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004561 record->StackElement(depth)->SetMethod(nullptr);
4562 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004563 }
4564 }
4565
4566 AllocRecord* record;
4567 size_t depth;
4568};
4569
Ian Rogers844506b2014-09-12 19:59:33 -07004570void Dbg::RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004571 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004572 if (recent_allocation_records_ == nullptr) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004573 // In the process of shutting down recording, bail.
Elliott Hughes545a0642011-11-08 19:10:03 -08004574 return;
4575 }
4576
4577 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004578 if (++alloc_record_head_ == alloc_record_max_) {
4579 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004580 }
4581
4582 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004583 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004584 record->SetType(type);
4585 record->SetByteCount(byte_count);
4586 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004587
4588 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004589 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004590 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004591
Ian Rogers719d1a32014-03-06 12:13:39 -08004592 if (alloc_record_count_ < alloc_record_max_) {
4593 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004594 }
4595}
4596
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004597// Returns the index of the head element.
4598//
Brian Carlstrom306db812014-09-05 13:01:41 -07004599// We point at the most-recently-written record, so if alloc_record_count_ is 1
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004600// we want to use the current element. Take "head+1" and subtract count
4601// from it.
4602//
4603// We need to handle underflow in our circular buffer, so we add
Brian Carlstrom306db812014-09-05 13:01:41 -07004604// alloc_record_max_ and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004605size_t Dbg::HeadIndex() {
4606 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4607 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004608}
4609
4610void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004611 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004612 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004613 if (recent_allocation_records_ == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004614 LOG(INFO) << "Not recording tracked allocations";
4615 return;
4616 }
4617
4618 // "i" is the head of the list. We want to start at the end of the
4619 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004620 size_t i = HeadIndex();
Brian Carlstrom306db812014-09-05 13:01:41 -07004621 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4622 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004623
Ian Rogers719d1a32014-03-06 12:13:39 -08004624 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004625 while (count--) {
4626 AllocRecord* record = &recent_allocation_records_[i];
4627
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004628 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4629 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004630
4631 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004632 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4633 mirror::ArtMethod* m = stack_element->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004634 if (m == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004635 break;
4636 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004637 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004638 }
4639
4640 // pause periodically to help logcat catch up
4641 if ((count % 5) == 0) {
4642 usleep(40000);
4643 }
4644
Ian Rogers719d1a32014-03-06 12:13:39 -08004645 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004646 }
4647}
4648
4649class StringTable {
4650 public:
4651 StringTable() {
4652 }
4653
Mathieu Chartier4345c462014-06-27 10:20:14 -07004654 void Add(const std::string& str) {
4655 table_.insert(str);
4656 }
4657
4658 void Add(const char* str) {
4659 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004660 }
4661
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004662 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004663 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004664 if (it == table_.end()) {
4665 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4666 }
4667 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004668 }
4669
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004670 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004671 return table_.size();
4672 }
4673
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004674 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004675 for (const std::string& str : table_) {
4676 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004677 size_t s_len = CountModifiedUtf8Chars(s);
Ian Rogers700a4022014-05-19 16:49:03 -07004678 std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004679 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4680 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004681 }
4682 }
4683
4684 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004685 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004686 DISALLOW_COPY_AND_ASSIGN(StringTable);
4687};
4688
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004689static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004690 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004691 DCHECK(method != nullptr);
4692 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004693 return (source_file != nullptr) ? source_file : "";
4694}
4695
Elliott Hughes545a0642011-11-08 19:10:03 -08004696/*
4697 * The data we send to DDMS contains everything we have recorded.
4698 *
4699 * Message header (all values big-endian):
4700 * (1b) message header len (to allow future expansion); includes itself
4701 * (1b) entry header len
4702 * (1b) stack frame len
4703 * (2b) number of entries
4704 * (4b) offset to string table from start of message
4705 * (2b) number of class name strings
4706 * (2b) number of method name strings
4707 * (2b) number of source file name strings
4708 * For each entry:
4709 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004710 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004711 * (2b) allocated object's class name index
4712 * (1b) stack depth
4713 * For each stack frame:
4714 * (2b) method's class name
4715 * (2b) method name
4716 * (2b) method source file
4717 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4718 * (xb) class name strings
4719 * (xb) method name strings
4720 * (xb) source file strings
4721 *
4722 * As with other DDM traffic, strings are sent as a 4-byte length
4723 * followed by UTF-16 data.
4724 *
4725 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07004726 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004727 * each table, but in practice there should be far fewer.
4728 *
4729 * The chief reason for using a string table here is to keep the size of
4730 * the DDMS message to a minimum. This is partly to make the protocol
4731 * efficient, but also because we have to form the whole thing up all at
4732 * once in a memory buffer.
4733 *
4734 * We use separate string tables for class names, method names, and source
4735 * files to keep the indexes small. There will generally be no overlap
4736 * between the contents of these tables.
4737 */
4738jbyteArray Dbg::GetRecentAllocations() {
Ian Rogerscf7f1912014-10-22 22:06:39 -07004739 if ((false)) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004740 DumpRecentAllocations();
4741 }
4742
Ian Rogers50b35e22012-10-04 10:09:15 -07004743 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004744 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004745 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004746 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004747 //
4748 // Part 1: generate string tables.
4749 //
4750 StringTable class_names;
4751 StringTable method_names;
4752 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004753
Brian Carlstrom306db812014-09-05 13:01:41 -07004754 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4755 uint16_t count = capped_count;
4756 size_t idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004757 while (count--) {
4758 AllocRecord* record = &recent_allocation_records_[idx];
Ian Rogers1ff3c982014-08-12 02:30:58 -07004759 std::string temp;
4760 class_names.Add(record->Type()->GetDescriptor(&temp));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004761 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004762 mirror::ArtMethod* m = record->StackElement(i)->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004763 if (m != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004764 class_names.Add(m->GetDeclaringClassDescriptor());
4765 method_names.Add(m->GetName());
4766 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004767 }
4768 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004769
Ian Rogers719d1a32014-03-06 12:13:39 -08004770 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004771 }
4772
Brian Carlstrom306db812014-09-05 13:01:41 -07004773 LOG(INFO) << "allocation records: " << capped_count;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004774
4775 //
4776 // Part 2: Generate the output and store it in the buffer.
4777 //
4778
4779 // (1b) message header len (to allow future expansion); includes itself
4780 // (1b) entry header len
4781 // (1b) stack frame len
4782 const int kMessageHeaderLen = 15;
4783 const int kEntryHeaderLen = 9;
4784 const int kStackFrameLen = 8;
4785 JDWP::Append1BE(bytes, kMessageHeaderLen);
4786 JDWP::Append1BE(bytes, kEntryHeaderLen);
4787 JDWP::Append1BE(bytes, kStackFrameLen);
4788
4789 // (2b) number of entries
4790 // (4b) offset to string table from start of message
4791 // (2b) number of class name strings
4792 // (2b) number of method name strings
4793 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07004794 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004795 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004796 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004797 JDWP::Append2BE(bytes, class_names.Size());
4798 JDWP::Append2BE(bytes, method_names.Size());
4799 JDWP::Append2BE(bytes, filenames.Size());
4800
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004801 idx = HeadIndex();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004802 std::string temp;
Brian Carlstrom306db812014-09-05 13:01:41 -07004803 for (count = capped_count; count != 0; --count) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004804 // For each entry:
4805 // (4b) total allocation size
4806 // (2b) thread id
4807 // (2b) allocated object's class name index
4808 // (1b) stack depth
4809 AllocRecord* record = &recent_allocation_records_[idx];
4810 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004811 size_t allocated_object_class_name_index =
Ian Rogers1ff3c982014-08-12 02:30:58 -07004812 class_names.IndexOf(record->Type()->GetDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004813 JDWP::Append4BE(bytes, record->ByteCount());
4814 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004815 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4816 JDWP::Append1BE(bytes, stack_depth);
4817
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004818 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4819 // For each stack frame:
4820 // (2b) method's class name
4821 // (2b) method name
4822 // (2b) method source file
4823 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004824 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004825 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4826 size_t method_name_index = method_names.IndexOf(m->GetName());
4827 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004828 JDWP::Append2BE(bytes, class_name_index);
4829 JDWP::Append2BE(bytes, method_name_index);
4830 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004831 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004832 }
Ian Rogers719d1a32014-03-06 12:13:39 -08004833 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004834 }
4835
4836 // (xb) class name strings
4837 // (xb) method name strings
4838 // (xb) source file strings
4839 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4840 class_names.WriteTo(bytes);
4841 method_names.WriteTo(bytes);
4842 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004843 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004844 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004845 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07004846 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004847 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4848 }
4849 return result;
4850}
4851
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07004852mirror::ArtMethod* DeoptimizationRequest::Method() const {
4853 ScopedObjectAccessUnchecked soa(Thread::Current());
4854 return soa.DecodeMethod(method_);
4855}
4856
4857void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
4858 ScopedObjectAccessUnchecked soa(Thread::Current());
4859 method_ = soa.EncodeMethod(m);
4860}
4861
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004862} // namespace art