blob: b3c887e22ae250b8c164136206512372d62ef097 [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 Rogers22d5e732014-07-15 22:23:51 -070028#include "field_helper.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070029#include "gc/accounting/card_table-inl.h"
30#include "gc/space/large_object_space.h"
31#include "gc/space/space-inl.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070032#include "handle_scope.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080033#include "jdwp/object_registry.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070034#include "method_helper.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070035#include "mirror/art_field-inl.h"
36#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037#include "mirror/class.h"
38#include "mirror/class-inl.h"
39#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080040#include "mirror/object-inl.h"
41#include "mirror/object_array-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070042#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080043#include "mirror/throwable.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010044#include "quick/inline_method_analyser.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070045#include "reflection.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070046#include "safe_map.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080047#include "scoped_thread_state_change.h"
Elliott Hughes6a5bd492011-10-28 14:33:57 -070048#include "ScopedLocalRef.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070049#include "ScopedPrimitiveArray.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070050#include "handle_scope-inl.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070051#include "thread_list.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080052#include "throw_location.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080053#include "utf.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010054#include "verifier/method_verifier-inl.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070055#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070056
Brian Carlstrom3d92d522013-07-12 09:03:08 -070057#ifdef HAVE_ANDROID_OS
58#include "cutils/properties.h"
59#endif
60
Elliott Hughes872d4ec2011-10-21 17:07:15 -070061namespace art {
62
Brian Carlstrom7934ac22013-07-26 10:54:15 -070063static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
64static const size_t kDefaultNumAllocRecords = 64*1024; // Must be a power of 2.
Elliott Hughes475fc232011-10-25 15:00:35 -070065
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070066class AllocRecordStackTraceElement {
67 public:
68 AllocRecordStackTraceElement() : method_(nullptr), dex_pc_(0) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080069 }
70
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070071 int32_t LineNumber() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
72 mirror::ArtMethod* method = Method();
73 DCHECK(method != nullptr);
74 return method->GetLineNumFromDexPC(DexPc());
Elliott Hughes545a0642011-11-08 19:10:03 -080075 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070076
77 mirror::ArtMethod* Method() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -070078 ScopedObjectAccessUnchecked soa(Thread::Current());
79 return soa.DecodeMethod(method_);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070080 }
81
82 void SetMethod(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
83 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4345c462014-06-27 10:20:14 -070084 method_ = soa.EncodeMethod(m);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070085 }
86
87 uint32_t DexPc() const {
88 return dex_pc_;
89 }
90
91 void SetDexPc(uint32_t pc) {
92 dex_pc_ = pc;
93 }
94
95 private:
Mathieu Chartier4345c462014-06-27 10:20:14 -070096 jmethodID method_;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070097 uint32_t dex_pc_;
Elliott Hughes545a0642011-11-08 19:10:03 -080098};
99
Mathieu Chartier4345c462014-06-27 10:20:14 -0700100jobject Dbg::TypeCache::Add(mirror::Class* t) {
101 ScopedObjectAccessUnchecked soa(Thread::Current());
102 int32_t hash_code = t->IdentityHashCode();
103 auto range = objects_.equal_range(hash_code);
104 for (auto it = range.first; it != range.second; ++it) {
105 if (soa.Decode<mirror::Class*>(it->second) == t) {
106 // Found a matching weak global, return it.
107 return it->second;
108 }
109 }
110 JNIEnv* env = soa.Env();
111 const jobject local_ref = soa.AddLocalReference<jobject>(t);
112 const jobject weak_global = env->NewWeakGlobalRef(local_ref);
113 env->DeleteLocalRef(local_ref);
114 objects_.insert(std::make_pair(hash_code, weak_global));
115 return weak_global;
116}
117
118void Dbg::TypeCache::Clear() {
119 ScopedObjectAccess soa(Thread::Current());
120 for (const auto& p : objects_) {
121 soa.Vm()->DeleteWeakGlobalRef(soa.Self(), p.second);
122 }
123 objects_.clear();
124}
125
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700126class AllocRecord {
127 public:
128 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -0800129
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700130 mirror::Class* Type() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700131 return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700132 }
133
134 void SetType(mirror::Class* t) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700135 type_ = Dbg::GetTypeCache()->Add(t);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700136 }
137
138 size_t GetDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800139 size_t depth = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -0700140 while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800141 ++depth;
142 }
143 return depth;
144 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800145
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700146 size_t ByteCount() const {
147 return byte_count_;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800148 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700149
150 void SetByteCount(size_t count) {
151 byte_count_ = count;
152 }
153
154 uint16_t ThinLockId() const {
155 return thin_lock_id_;
156 }
157
158 void SetThinLockId(uint16_t id) {
159 thin_lock_id_ = id;
160 }
161
162 AllocRecordStackTraceElement* StackElement(size_t index) {
163 DCHECK_LT(index, kMaxAllocRecordStackDepth);
164 return &stack_[index];
165 }
166
167 private:
168 jobject type_; // This is a weak global.
169 size_t byte_count_;
170 uint16_t thin_lock_id_;
Ian Rogersc0542af2014-09-03 16:16:56 -0700171 AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth]; // Unused entries have nullptr method.
Elliott Hughes545a0642011-11-08 19:10:03 -0800172};
173
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700174class Breakpoint {
175 public:
176 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc, bool need_full_deoptimization)
177 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
178 : method_(nullptr), dex_pc_(dex_pc), need_full_deoptimization_(need_full_deoptimization) {
179 ScopedObjectAccessUnchecked soa(Thread::Current());
180 method_ = soa.EncodeMethod(method);
181 }
182
183 Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
184 : method_(nullptr), dex_pc_(other.dex_pc_),
185 need_full_deoptimization_(other.need_full_deoptimization_) {
186 ScopedObjectAccessUnchecked soa(Thread::Current());
187 method_ = soa.EncodeMethod(other.Method());
188 }
189
190 mirror::ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
191 ScopedObjectAccessUnchecked soa(Thread::Current());
192 return soa.DecodeMethod(method_);
193 }
194
195 uint32_t DexPc() const {
196 return dex_pc_;
197 }
198
199 bool NeedFullDeoptimization() const {
200 return need_full_deoptimization_;
201 }
202
203 private:
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100204 // The location of this breakpoint.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700205 jmethodID method_;
206 uint32_t dex_pc_;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100207
208 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700209 bool need_full_deoptimization_;
Elliott Hughes86964332012-02-15 19:37:42 -0800210};
211
Sebastien Hertzed2be172014-08-19 15:33:43 +0200212static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700213 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700214 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
Elliott Hughes86964332012-02-15 19:37:42 -0800215 return os;
216}
217
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200218class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800219 public:
220 DebugInstrumentationListener() {}
221 virtual ~DebugInstrumentationListener() {}
222
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200223 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
224 uint32_t dex_pc)
225 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800226 if (method->IsNative()) {
227 // TODO: post location events is a suspension point and native method entry stubs aren't.
228 return;
229 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100230 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800231 }
232
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200233 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
234 uint32_t dex_pc, const JValue& return_value)
235 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800236 if (method->IsNative()) {
237 // TODO: post location events is a suspension point and native method entry stubs aren't.
238 return;
239 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100240 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800241 }
242
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200243 void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
244 uint32_t dex_pc)
245 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800246 // We're not recorded to listen to this kind of event, so complain.
247 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100248 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800249 }
250
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200251 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
252 uint32_t new_dex_pc)
253 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz8379b222014-02-24 17:38:15 +0100254 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800255 }
256
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200257 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
258 uint32_t dex_pc, mirror::ArtField* field)
259 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
260 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800261 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200262
263 void FieldWritten(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
264 uint32_t dex_pc, mirror::ArtField* field, const JValue& field_value)
265 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
266 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
267 }
268
269 void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
270 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
271 mirror::Throwable* exception_object)
272 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
273 Dbg::PostException(throw_location, catch_method, catch_dex_pc, exception_object);
274 }
275
276 private:
277 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800278} gDebugInstrumentationListener;
279
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700280// JDWP is allowed unless the Zygote forbids it.
281static bool gJdwpAllowed = true;
282
Elliott Hughesc0f09332012-03-26 13:27:06 -0700283// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700284static bool gJdwpConfigured = false;
285
Elliott Hughesc0f09332012-03-26 13:27:06 -0700286// Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.)
Elliott Hughes376a7a02011-10-24 18:35:55 -0700287static JDWP::JdwpOptions gJdwpOptions;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700288
289// Runtime JDWP state.
Ian Rogersc0542af2014-09-03 16:16:56 -0700290static JDWP::JdwpState* gJdwpState = nullptr;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700291static bool gDebuggerConnected; // debugger or DDMS is connected.
292static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800293static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700294
Elliott Hughes47fce012011-10-25 18:37:19 -0700295static bool gDdmThreadNotification = false;
296
Elliott Hughes767a1472011-10-26 18:49:02 -0700297// DDMS GC-related settings.
298static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
299static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
300static Dbg::HpsgWhat gDdmHpsgWhat;
301static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
302static Dbg::HpsgWhat gDdmNhsgWhat;
303
Ian Rogers719d1a32014-03-06 12:13:39 -0800304static ObjectRegistry* gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700305
Elliott Hughes545a0642011-11-08 19:10:03 -0800306// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800307Mutex* Dbg::alloc_tracker_lock_ = nullptr;
308AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
309size_t Dbg::alloc_record_max_ = 0;
310size_t Dbg::alloc_record_head_ = 0;
311size_t Dbg::alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -0700312Dbg::TypeCache Dbg::type_cache_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800313
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100314// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100315Mutex* Dbg::deoptimization_lock_ = nullptr;
316std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
317size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100318size_t Dbg::delayed_full_undeoptimization_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100319
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200320// Instrumentation event reference counters.
321size_t Dbg::dex_pc_change_event_ref_count_ = 0;
322size_t Dbg::method_enter_event_ref_count_ = 0;
323size_t Dbg::method_exit_event_ref_count_ = 0;
324size_t Dbg::field_read_event_ref_count_ = 0;
325size_t Dbg::field_write_event_ref_count_ = 0;
326size_t Dbg::exception_catch_event_ref_count_ = 0;
327uint32_t Dbg::instrumentation_events_ = 0;
328
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100329// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800330static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800331
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700332void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
333 RootType root_type) {
334 if (receiver != nullptr) {
335 callback(&receiver, arg, tid, root_type);
336 }
337 if (thread != nullptr) {
338 callback(&thread, arg, tid, root_type);
339 }
340 if (klass != nullptr) {
341 callback(reinterpret_cast<mirror::Object**>(&klass), arg, tid, root_type);
342 }
343 if (method != nullptr) {
344 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
345 }
346}
347
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200348void DebugInvokeReq::Clear() {
349 invoke_needed = false;
350 receiver = nullptr;
351 thread = nullptr;
352 klass = nullptr;
353 method = nullptr;
354}
355
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700356void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
357 RootType root_type) {
358 if (method != nullptr) {
359 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
360 }
361}
362
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200363bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
364 return dex_pcs.find(dex_pc) == dex_pcs.end();
365}
366
367void SingleStepControl::Clear() {
368 is_active = false;
369 method = nullptr;
370 dex_pcs.clear();
371}
372
Brian Carlstromea46f952013-07-30 01:26:50 -0700373static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800374 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700375 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzed2be172014-08-19 15:33:43 +0200376 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100377 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700378 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
Elliott Hughes86964332012-02-15 19:37:42 -0800379 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
380 return true;
381 }
382 }
383 return false;
384}
385
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100386static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
387 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800388 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
389 // A thread may be suspended for GC; in this code, we really want to know whether
390 // there's a debugger suspension active.
391 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
392}
393
Ian Rogersc0542af2014-09-03 16:16:56 -0700394static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700395 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700396 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, error);
397 if (o == nullptr) {
398 *error = JDWP::ERR_INVALID_OBJECT;
399 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800400 }
401 if (!o->IsArrayInstance()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700402 *error = JDWP::ERR_INVALID_ARRAY;
403 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800404 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700405 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800406 return o->AsArray();
407}
408
Ian Rogersc0542af2014-09-03 16:16:56 -0700409static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700410 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700411 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, error);
412 if (o == nullptr) {
413 *error = JDWP::ERR_INVALID_OBJECT;
414 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800415 }
416 if (!o->IsClass()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700417 *error = JDWP::ERR_INVALID_CLASS;
418 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800419 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700420 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800421 return o->AsClass();
422}
423
Ian Rogersc0542af2014-09-03 16:16:56 -0700424static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
425 JDWP::JdwpError* error)
jeffhaoa77f0f62012-12-05 17:19:31 -0800426 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700427 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
428 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700429 mirror::Object* thread_peer = gRegistry->Get<mirror::Object*>(thread_id, error);
430 if (thread_peer == nullptr) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800431 // This isn't even an object.
Ian Rogersc0542af2014-09-03 16:16:56 -0700432 *error = JDWP::ERR_INVALID_OBJECT;
433 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800434 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800435
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800436 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800437 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
438 // This isn't a thread.
Ian Rogersc0542af2014-09-03 16:16:56 -0700439 *error = JDWP::ERR_INVALID_THREAD;
440 return nullptr;
Elliott Hughes221229c2013-01-08 18:17:50 -0800441 }
442
Ian Rogersc0542af2014-09-03 16:16:56 -0700443 Thread* thread = Thread::FromManagedThread(soa, thread_peer);
444 // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a
445 // zombie.
446 *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE;
447 return thread;
Elliott Hughes436e3722012-02-17 20:01:47 -0800448}
449
Elliott Hughes24437992011-11-30 14:49:33 -0800450static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
451 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
452 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
453 return static_cast<JDWP::JdwpTag>(descriptor[0]);
454}
455
Ian Rogers1ff3c982014-08-12 02:30:58 -0700456static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
457 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
458 std::string temp;
459 const char* descriptor = klass->GetDescriptor(&temp);
460 return BasicTagFromDescriptor(descriptor);
461}
462
Ian Rogers98379392014-02-24 16:53:16 -0800463static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700464 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700465 CHECK(c != nullptr);
Elliott Hughes24437992011-11-30 14:49:33 -0800466 if (c->IsArrayClass()) {
467 return JDWP::JT_ARRAY;
468 }
Elliott Hughes24437992011-11-30 14:49:33 -0800469 if (c->IsStringClass()) {
470 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800471 }
Ian Rogers98379392014-02-24 16:53:16 -0800472 if (c->IsClassClass()) {
473 return JDWP::JT_CLASS_OBJECT;
474 }
475 {
476 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
477 if (thread_class->IsAssignableFrom(c)) {
478 return JDWP::JT_THREAD;
479 }
480 }
481 {
482 mirror::Class* thread_group_class =
483 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
484 if (thread_group_class->IsAssignableFrom(c)) {
485 return JDWP::JT_THREAD_GROUP;
486 }
487 }
488 {
489 mirror::Class* class_loader_class =
490 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
491 if (class_loader_class->IsAssignableFrom(c)) {
492 return JDWP::JT_CLASS_LOADER;
493 }
494 }
495 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800496}
497
498/*
499 * Objects declared to hold Object might actually hold a more specific
500 * type. The debugger may take a special interest in these (e.g. it
501 * wants to display the contents of Strings), so we want to return an
502 * appropriate tag.
503 *
504 * Null objects are tagged JT_OBJECT.
505 */
Ian Rogers98379392014-02-24 16:53:16 -0800506static JDWP::JdwpTag TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700507 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700508 return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800509}
510
511static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
512 switch (tag) {
513 case JDWP::JT_BOOLEAN:
514 case JDWP::JT_BYTE:
515 case JDWP::JT_CHAR:
516 case JDWP::JT_FLOAT:
517 case JDWP::JT_DOUBLE:
518 case JDWP::JT_INT:
519 case JDWP::JT_LONG:
520 case JDWP::JT_SHORT:
521 case JDWP::JT_VOID:
522 return true;
523 default:
524 return false;
525 }
526}
527
Elliott Hughes3bb81562011-10-21 18:52:59 -0700528/*
529 * Handle one of the JDWP name/value pairs.
530 *
531 * JDWP options are:
532 * help: if specified, show help message and bail
533 * transport: may be dt_socket or dt_shmem
534 * address: for dt_socket, "host:port", or just "port" when listening
535 * server: if "y", wait for debugger to attach; if "n", attach to debugger
536 * timeout: how long to wait for debugger to connect / listen
537 *
538 * Useful with server=n (these aren't supported yet):
539 * onthrow=<exception-name>: connect to debugger when exception thrown
540 * onuncaught=y|n: connect to debugger when uncaught exception thrown
541 * launch=<command-line>: launch the debugger itself
542 *
543 * The "transport" option is required, as is "address" if server=n.
544 */
545static bool ParseJdwpOption(const std::string& name, const std::string& value) {
546 if (name == "transport") {
547 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700548 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700549 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700550 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700551 } else {
552 LOG(ERROR) << "JDWP transport not supported: " << value;
553 return false;
554 }
555 } else if (name == "server") {
556 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700557 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700558 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700559 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700560 } else {
561 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
562 return false;
563 }
564 } else if (name == "suspend") {
565 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700566 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700567 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700568 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700569 } else {
570 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
571 return false;
572 }
573 } else if (name == "address") {
574 /* this is either <port> or <host>:<port> */
575 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700576 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700577 std::string::size_type colon = value.find(':');
578 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700579 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700580 port_string = value.substr(colon + 1);
581 } else {
582 port_string = value;
583 }
584 if (port_string.empty()) {
585 LOG(ERROR) << "JDWP address missing port: " << value;
586 return false;
587 }
588 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800589 uint64_t port = strtoul(port_string.c_str(), &end, 10);
590 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700591 LOG(ERROR) << "JDWP address has junk in port field: " << value;
592 return false;
593 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700594 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700595 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
596 /* valid but unsupported */
597 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
598 } else {
599 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
600 }
601
602 return true;
603}
604
605/*
606 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
607 * "transport=dt_socket,address=8000,server=y,suspend=n"
608 */
609bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800610 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700611
Elliott Hughes3bb81562011-10-21 18:52:59 -0700612 std::vector<std::string> pairs;
613 Split(options, ',', pairs);
614
615 for (size_t i = 0; i < pairs.size(); ++i) {
616 std::string::size_type equals = pairs[i].find('=');
617 if (equals == std::string::npos) {
618 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
619 return false;
620 }
621 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
622 }
623
Elliott Hughes376a7a02011-10-24 18:35:55 -0700624 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700625 LOG(ERROR) << "Must specify JDWP transport: " << options;
626 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700627 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700628 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
629 return false;
630 }
631
632 gJdwpConfigured = true;
633 return true;
634}
635
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700636void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700637 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700638 // No JDWP for you!
639 return;
640 }
641
Ian Rogers719d1a32014-03-06 12:13:39 -0800642 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700643 gRegistry = new ObjectRegistry;
644
Ian Rogers719d1a32014-03-06 12:13:39 -0800645 alloc_tracker_lock_ = new Mutex("AllocTracker lock");
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100646 deoptimization_lock_ = new Mutex("deoptimization lock", kDeoptimizationLock);
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700647 // Init JDWP if the debugger is enabled. This may connect out to a
648 // debugger, passively listen for a debugger, or block waiting for a
649 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700650 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
Ian Rogersc0542af2014-09-03 16:16:56 -0700651 if (gJdwpState == nullptr) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800652 // We probably failed because some other process has the port already, which means that
653 // if we don't abort the user is likely to think they're talking to us when they're actually
654 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800655 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700656 }
657
658 // If a debugger has already attached, send the "welcome" message.
659 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700660 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700661 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes376a7a02011-10-24 18:35:55 -0700662 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800663 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700664 }
665 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700666}
667
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700668void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200669 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
670 // destruction of gJdwpState).
671 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
672 gJdwpState->PostVMDeath();
673 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100674 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
675 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700676 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800677 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700678 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800679 gRegistry = nullptr;
680 delete alloc_tracker_lock_;
681 alloc_tracker_lock_ = nullptr;
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100682 delete deoptimization_lock_;
683 deoptimization_lock_ = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700684}
685
Elliott Hughes767a1472011-10-26 18:49:02 -0700686void Dbg::GcDidFinish() {
687 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700688 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700689 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700690 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700691 }
692 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700693 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700694 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700695 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700696 }
697 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700698 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700699 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700700 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700701 }
702}
703
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700704void Dbg::SetJdwpAllowed(bool allowed) {
705 gJdwpAllowed = allowed;
706}
707
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700708DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700709 return Thread::Current()->GetInvokeReq();
710}
711
712Thread* Dbg::GetDebugThread() {
Ian Rogersc0542af2014-09-03 16:16:56 -0700713 return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700714}
715
716void Dbg::ClearWaitForEventThread() {
717 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700718}
719
720void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700721 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800722 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700723 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800724 gDisposed = false;
725}
726
727void Dbg::Disposed() {
728 gDisposed = true;
729}
730
731bool Dbg::IsDisposed() {
732 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700733}
734
Elliott Hughesa2155262011-11-16 16:26:58 -0800735void Dbg::GoActive() {
736 // Enable all debugging features, including scans for breakpoints.
737 // This is a no-op if we're already active.
738 // Only called from the JDWP handler thread.
739 if (gDebuggerActive) {
740 return;
741 }
742
Elliott Hughesc0f09332012-03-26 13:27:06 -0700743 {
744 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Sebastien Hertzed2be172014-08-19 15:33:43 +0200745 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700746 CHECK_EQ(gBreakpoints.size(), 0U);
747 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800748
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100749 {
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100750 MutexLock mu(Thread::Current(), *deoptimization_lock_);
751 CHECK_EQ(deoptimization_requests_.size(), 0U);
752 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100753 CHECK_EQ(delayed_full_undeoptimization_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200754 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
755 CHECK_EQ(method_enter_event_ref_count_, 0U);
756 CHECK_EQ(method_exit_event_ref_count_, 0U);
757 CHECK_EQ(field_read_event_ref_count_, 0U);
758 CHECK_EQ(field_write_event_ref_count_, 0U);
759 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100760 }
761
Ian Rogers62d6c772013-02-27 08:32:07 -0800762 Runtime* runtime = Runtime::Current();
763 runtime->GetThreadList()->SuspendAll();
764 Thread* self = Thread::Current();
765 ThreadState old_state = self->SetStateUnsafe(kRunnable);
766 CHECK_NE(old_state, kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100767 runtime->GetInstrumentation()->EnableDeoptimization();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200768 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800769 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800770 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
771 runtime->GetThreadList()->ResumeAll();
772
773 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700774}
775
776void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700777 CHECK(gDebuggerConnected);
778
Elliott Hughesc0f09332012-03-26 13:27:06 -0700779 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700780
Ian Rogers62d6c772013-02-27 08:32:07 -0800781 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
782 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
783 // and clear the object registry.
784 Runtime* runtime = Runtime::Current();
785 runtime->GetThreadList()->SuspendAll();
786 Thread* self = Thread::Current();
787 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100788
789 // Debugger may not be active at this point.
790 if (gDebuggerActive) {
791 {
792 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
793 // This prevents us from having any pending deoptimization request when the debugger attaches
794 // to us again while no event has been requested yet.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100795 MutexLock mu(Thread::Current(), *deoptimization_lock_);
796 deoptimization_requests_.clear();
797 full_deoptimization_event_count_ = 0U;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100798 delayed_full_undeoptimization_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100799 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200800 if (instrumentation_events_ != 0) {
801 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
802 instrumentation_events_);
803 instrumentation_events_ = 0;
804 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100805 runtime->GetInstrumentation()->DisableDeoptimization();
806 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100807 }
Elliott Hughes234ab152011-10-26 14:02:26 -0700808 gRegistry->Clear();
809 gDebuggerConnected = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800810 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
811 runtime->GetThreadList()->ResumeAll();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700812}
813
Elliott Hughesc0f09332012-03-26 13:27:06 -0700814bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700815 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700816}
817
Elliott Hughesc0f09332012-03-26 13:27:06 -0700818bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700819 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700820}
821
822int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800823 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700824}
825
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700826void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700827 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700828}
829
Elliott Hughes88d63092013-01-09 09:55:54 -0800830std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700831 JDWP::JdwpError error;
832 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error);
833 if (o == nullptr) {
834 if (error == JDWP::ERR_NONE) {
835 return "NULL";
836 } else {
837 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
838 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800839 }
840 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700841 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800842 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700843 std::string temp;
844 return DescriptorToName(o->AsClass()->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700845}
846
Ian Rogersc0542af2014-09-03 16:16:56 -0700847JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800848 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700849 mirror::Class* c = DecodeClass(id, &status);
850 if (c == nullptr) {
851 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800852 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800853 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700854 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800855 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800856}
857
Ian Rogersc0542af2014-09-03 16:16:56 -0700858JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800859 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700860 mirror::Class* c = DecodeClass(id, &status);
861 if (c == nullptr) {
862 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800863 return status;
864 }
865 if (c->IsInterface()) {
866 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700867 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800868 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700869 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800870 }
871 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700872}
873
Elliott Hughes436e3722012-02-17 20:01:47 -0800874JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700875 JDWP::JdwpError error;
876 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
877 if (o == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800878 return JDWP::ERR_INVALID_OBJECT;
879 }
880 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
881 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700882}
883
Elliott Hughes436e3722012-02-17 20:01:47 -0800884JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700885 JDWP::JdwpError error;
886 mirror::Class* c = DecodeClass(id, &error);
887 if (c == nullptr) {
888 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800889 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800890
891 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
892
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700893 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
894 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800895 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700896 if ((access_flags & kAccInterface) == 0) {
897 access_flags |= kAccSuper;
898 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800899
900 expandBufAdd4BE(pReply, access_flags);
901
902 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700903}
904
Ian Rogersc0542af2014-09-03 16:16:56 -0700905JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
906 JDWP::JdwpError error;
907 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
908 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800909 return JDWP::ERR_INVALID_OBJECT;
910 }
911
912 // Ensure all threads are suspended while we read objects' lock words.
913 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100914 CHECK_EQ(self->GetState(), kRunnable);
915 self->TransitionFromRunnableToSuspended(kSuspended);
916 Runtime::Current()->GetThreadList()->SuspendAll();
Elliott Hughesf327e072013-01-09 16:01:26 -0800917
918 MonitorInfo monitor_info(o);
919
Sebastien Hertz54263242014-03-19 18:16:50 +0100920 Runtime::Current()->GetThreadList()->ResumeAll();
921 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800922
Ian Rogersc0542af2014-09-03 16:16:56 -0700923 if (monitor_info.owner_ != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700924 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800925 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700926 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800927 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700928 expandBufAdd4BE(reply, monitor_info.entry_count_);
929 expandBufAdd4BE(reply, monitor_info.waiters_.size());
930 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
931 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800932 }
933 return JDWP::ERR_NONE;
934}
935
Elliott Hughes734b8c62013-01-11 15:32:45 -0800936JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700937 std::vector<JDWP::ObjectId>* monitors,
938 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800939 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700940 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700941 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700942 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800943 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700944 : StackVisitor(thread, context), current_stack_depth(0),
945 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800946
947 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
948 // annotalysis.
949 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
950 if (!GetMethod()->IsRuntimeMethod()) {
951 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800952 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800953 }
954 return true;
955 }
956
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700957 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
958 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800959 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700960 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700961 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800962 }
963
Elliott Hughes734b8c62013-01-11 15:32:45 -0800964 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700965 std::vector<JDWP::ObjectId>* const monitors;
966 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800967 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800968
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700969 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700970 Thread* thread;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700971 {
972 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700973 JDWP::JdwpError error;
974 thread = DecodeThread(soa, thread_id, &error);
975 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700976 return error;
977 }
978 if (!IsSuspendedForDebugger(soa, thread)) {
979 return JDWP::ERR_THREAD_NOT_SUSPENDED;
980 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700981 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700982 std::unique_ptr<Context> context(Context::Create());
Ian Rogersc0542af2014-09-03 16:16:56 -0700983 OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700984 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800985 return JDWP::ERR_NONE;
986}
987
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100988JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700989 JDWP::ObjectId* contended_monitor) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700990 mirror::Object* contended_monitor_obj;
Elliott Hughesf9501702013-01-11 11:22:27 -0800991 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -0700992 *contended_monitor = 0;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700993 {
994 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700995 JDWP::JdwpError error;
996 Thread* thread = DecodeThread(soa, thread_id, &error);
997 if (thread == nullptr) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700998 return error;
999 }
1000 if (!IsSuspendedForDebugger(soa, thread)) {
1001 return JDWP::ERR_THREAD_NOT_SUSPENDED;
1002 }
1003 contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Elliott Hughesf9501702013-01-11 11:22:27 -08001004 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001005 // Add() requires the thread_list_lock_ not held to avoid the lock
1006 // level violation.
Ian Rogersc0542af2014-09-03 16:16:56 -07001007 *contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -08001008 return JDWP::ERR_NONE;
1009}
1010
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001011JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -07001012 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001013 gc::Heap* heap = Runtime::Current()->GetHeap();
1014 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001015 std::vector<mirror::Class*> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -07001016 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001017 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001018 JDWP::JdwpError error;
1019 mirror::Class* c = DecodeClass(class_ids[i], &error);
1020 if (c == nullptr) {
1021 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001022 }
1023 classes.push_back(c);
Ian Rogersc0542af2014-09-03 16:16:56 -07001024 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001025 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001026 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001027 return JDWP::ERR_NONE;
1028}
1029
Ian Rogersc0542af2014-09-03 16:16:56 -07001030JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
1031 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001032 gc::Heap* heap = Runtime::Current()->GetHeap();
1033 // We only want reachable instances, so do a GC.
1034 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -07001035 JDWP::JdwpError error;
1036 mirror::Class* c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001037 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001038 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001039 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001040 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001041 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
1042 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001043 instances->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes3b78c942013-01-15 17:35:41 -08001044 }
1045 return JDWP::ERR_NONE;
1046}
1047
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001048JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001049 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001050 gc::Heap* heap = Runtime::Current()->GetHeap();
1051 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -07001052 JDWP::JdwpError error;
1053 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1054 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001055 return JDWP::ERR_INVALID_OBJECT;
1056 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001057 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001058 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001059 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001060 referring_objects->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001061 }
1062 return JDWP::ERR_NONE;
1063}
1064
Ian Rogersc0542af2014-09-03 16:16:56 -07001065JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
1066 JDWP::JdwpError error;
1067 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1068 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001069 return JDWP::ERR_INVALID_OBJECT;
1070 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001071 gRegistry->DisableCollection(object_id);
1072 return JDWP::ERR_NONE;
1073}
1074
Ian Rogersc0542af2014-09-03 16:16:56 -07001075JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
1076 JDWP::JdwpError error;
1077 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +01001078 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
1079 // also ignores these cases and never return an error. However it's not obvious why this command
1080 // should behave differently from DisableCollection and IsCollected commands. So let's be more
1081 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -07001082 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001083 return JDWP::ERR_INVALID_OBJECT;
1084 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001085 gRegistry->EnableCollection(object_id);
1086 return JDWP::ERR_NONE;
1087}
1088
Ian Rogersc0542af2014-09-03 16:16:56 -07001089JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
1090 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001091 if (object_id == 0) {
1092 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +01001093 return JDWP::ERR_INVALID_OBJECT;
1094 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001095 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1096 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -07001097 JDWP::JdwpError error;
1098 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1099 if (o != nullptr) {
1100 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001101 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001102 return JDWP::ERR_NONE;
1103}
1104
Ian Rogersc0542af2014-09-03 16:16:56 -07001105void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001106 gRegistry->DisposeObject(object_id, reference_count);
1107}
1108
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001109static JDWP::JdwpTypeTag GetTypeTag(mirror::Class* klass)
1110 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1111 DCHECK(klass != nullptr);
1112 if (klass->IsArrayClass()) {
1113 return JDWP::TT_ARRAY;
1114 } else if (klass->IsInterface()) {
1115 return JDWP::TT_INTERFACE;
1116 } else {
1117 return JDWP::TT_CLASS;
1118 }
1119}
1120
Elliott Hughes88d63092013-01-09 09:55:54 -08001121JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001122 JDWP::JdwpError error;
1123 mirror::Class* c = DecodeClass(class_id, &error);
1124 if (c == nullptr) {
1125 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001126 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001127
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001128 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1129 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001130 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001131 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001132}
1133
Ian Rogersc0542af2014-09-03 16:16:56 -07001134void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001135 // Get the complete list of reference classes (i.e. all classes except
1136 // the primitive types).
1137 // Returns a newly-allocated buffer full of RefTypeId values.
1138 struct ClassListCreator {
Ian Rogersc0542af2014-09-03 16:16:56 -07001139 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001140 }
1141
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001142 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001143 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1144 }
1145
Elliott Hughes64f574f2013-02-20 14:57:12 -08001146 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1147 // annotalysis.
1148 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001149 if (!c->IsPrimitive()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001150 classes->push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001151 }
1152 return true;
1153 }
1154
Ian Rogersc0542af2014-09-03 16:16:56 -07001155 std::vector<JDWP::RefTypeId>* const classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001156 };
1157
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001158 ClassListCreator clc(classes);
Elliott Hughesa2155262011-11-16 16:26:58 -08001159 Runtime::Current()->GetClassLinker()->VisitClasses(ClassListCreator::Visit, &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001160}
1161
Ian Rogers1ff3c982014-08-12 02:30:58 -07001162JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1163 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001164 JDWP::JdwpError error;
1165 mirror::Class* c = DecodeClass(class_id, &error);
1166 if (c == nullptr) {
1167 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001168 }
1169
Elliott Hughesa2155262011-11-16 16:26:58 -08001170 if (c->IsArrayClass()) {
1171 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1172 *pTypeTag = JDWP::TT_ARRAY;
1173 } else {
1174 if (c->IsErroneous()) {
1175 *pStatus = JDWP::CS_ERROR;
1176 } else {
1177 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1178 }
1179 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1180 }
1181
Ian Rogersc0542af2014-09-03 16:16:56 -07001182 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001183 std::string temp;
1184 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001185 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001186 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001187}
1188
Ian Rogersc0542af2014-09-03 16:16:56 -07001189void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001190 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001191 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001192 ids->clear();
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001193 for (size_t i = 0; i < classes.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001194 ids->push_back(gRegistry->Add(classes[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001195 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001196}
1197
Ian Rogersc0542af2014-09-03 16:16:56 -07001198JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1199 JDWP::JdwpError error;
1200 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1201 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001202 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001203 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001204
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001205 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001206 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001207
1208 expandBufAdd1(pReply, type_tag);
1209 expandBufAddRefTypeId(pReply, type_id);
1210
1211 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001212}
1213
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001214JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001215 JDWP::JdwpError error;
1216 mirror::Class* c = DecodeClass(class_id, &error);
1217 if (c == nullptr) {
1218 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001219 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001220 std::string temp;
1221 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001222 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001223}
1224
Ian Rogersc0542af2014-09-03 16:16:56 -07001225JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1226 JDWP::JdwpError error;
1227 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001228 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001229 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001230 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001231 const char* source_file = c->GetSourceFile();
1232 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001233 return JDWP::ERR_ABSENT_INFORMATION;
1234 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001235 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001236 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001237}
1238
Ian Rogersc0542af2014-09-03 16:16:56 -07001239JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001240 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001241 JDWP::JdwpError error;
1242 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1243 if (error != JDWP::ERR_NONE) {
1244 *tag = JDWP::JT_VOID;
1245 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001246 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001247 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001248 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001249}
1250
Elliott Hughesaed4be92011-12-02 16:16:23 -08001251size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001252 switch (tag) {
1253 case JDWP::JT_VOID:
1254 return 0;
1255 case JDWP::JT_BYTE:
1256 case JDWP::JT_BOOLEAN:
1257 return 1;
1258 case JDWP::JT_CHAR:
1259 case JDWP::JT_SHORT:
1260 return 2;
1261 case JDWP::JT_FLOAT:
1262 case JDWP::JT_INT:
1263 return 4;
1264 case JDWP::JT_ARRAY:
1265 case JDWP::JT_OBJECT:
1266 case JDWP::JT_STRING:
1267 case JDWP::JT_THREAD:
1268 case JDWP::JT_THREAD_GROUP:
1269 case JDWP::JT_CLASS_LOADER:
1270 case JDWP::JT_CLASS_OBJECT:
1271 return sizeof(JDWP::ObjectId);
1272 case JDWP::JT_DOUBLE:
1273 case JDWP::JT_LONG:
1274 return 8;
1275 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001276 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001277 return -1;
1278 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001279}
1280
Ian Rogersc0542af2014-09-03 16:16:56 -07001281JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1282 JDWP::JdwpError error;
1283 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1284 if (a == nullptr) {
1285 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001286 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001287 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001288 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001289}
1290
Elliott Hughes88d63092013-01-09 09:55:54 -08001291JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001292 JDWP::JdwpError error;
1293 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001294 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001295 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001296 }
Elliott Hughes24437992011-11-30 14:49:33 -08001297
1298 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1299 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001300 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001301 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001302 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1303 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001304 expandBufAdd4BE(pReply, count);
1305
Ian Rogers1ff3c982014-08-12 02:30:58 -07001306 if (IsPrimitiveTag(element_tag)) {
1307 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001308 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1309 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001310 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001311 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1312 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001313 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001314 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1315 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001316 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001317 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1318 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001319 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001320 memcpy(dst, &src[offset * width], count * width);
1321 }
1322 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001323 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001324 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001325 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001326 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001327 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001328 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001329 expandBufAdd1(pReply, specific_tag);
1330 expandBufAddObjectId(pReply, gRegistry->Add(element));
1331 }
1332 }
1333
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001334 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001335}
1336
Ian Rogersef7d42f2014-01-06 12:55:46 -08001337template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001338static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001339 NO_THREAD_SAFETY_ANALYSIS {
1340 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001341 DCHECK(a->GetClass()->IsPrimitiveArray());
1342
Ian Rogersef7d42f2014-01-06 12:55:46 -08001343 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001344 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001345 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001346 }
1347}
1348
Elliott Hughes88d63092013-01-09 09:55:54 -08001349JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001350 JDWP::Request* request) {
1351 JDWP::JdwpError error;
1352 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1353 if (dst == nullptr) {
1354 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001355 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001356
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001357 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001358 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001359 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001360 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001361 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001362
Ian Rogers1ff3c982014-08-12 02:30:58 -07001363 if (IsPrimitiveTag(element_tag)) {
1364 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001365 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001366 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001367 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001368 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001369 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001370 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001371 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001372 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001373 }
1374 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001375 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001376 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001377 JDWP::ObjectId id = request->ReadObjectId();
1378 JDWP::JdwpError error;
1379 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1380 if (error != JDWP::ERR_NONE) {
1381 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001382 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001383 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001384 }
1385 }
1386
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001387 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001388}
1389
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001390JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001391 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001392}
1393
Ian Rogersc0542af2014-09-03 16:16:56 -07001394JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object) {
1395 JDWP::JdwpError error;
1396 mirror::Class* c = DecodeClass(class_id, &error);
1397 if (c == nullptr) {
1398 *new_object = 0;
1399 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001400 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001401 *new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001402 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001403}
1404
Elliott Hughesbf13d362011-12-08 15:51:37 -08001405/*
1406 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1407 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001408JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogersc0542af2014-09-03 16:16:56 -07001409 JDWP::ObjectId* new_array) {
1410 JDWP::JdwpError error;
1411 mirror::Class* c = DecodeClass(array_class_id, &error);
1412 if (c == nullptr) {
1413 *new_array = 0;
1414 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001415 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001416 *new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
1417 c->GetComponentSize(),
1418 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001419 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001420}
1421
Elliott Hughes88d63092013-01-09 09:55:54 -08001422bool Dbg::MatchType(JDWP::RefTypeId instance_class_id, JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001423 JDWP::JdwpError error;
1424 mirror::Class* c1 = DecodeClass(instance_class_id, &error);
1425 CHECK(c1 != nullptr);
1426 mirror::Class* c2 = DecodeClass(class_id, &error);
1427 CHECK(c2 != nullptr);
Sebastien Hertz123756a2013-11-27 15:49:42 +01001428 return c2->IsAssignableFrom(c1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001429}
1430
Brian Carlstromea46f952013-07-30 01:26:50 -07001431static JDWP::FieldId ToFieldId(const mirror::ArtField* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001432 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001433 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001434 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001435}
1436
Brian Carlstromea46f952013-07-30 01:26:50 -07001437static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001438 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001439 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001440 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001441}
1442
Brian Carlstromea46f952013-07-30 01:26:50 -07001443static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001444 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001445 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001446 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001447}
1448
Brian Carlstromea46f952013-07-30 01:26:50 -07001449static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001450 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001451 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001452 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001453}
1454
Ian Rogersc0542af2014-09-03 16:16:56 -07001455static void SetLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001456 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001457 if (m == nullptr) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001458 memset(&location, 0, sizeof(location));
1459 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001460 mirror::Class* c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001461 location->type_tag = GetTypeTag(c);
1462 location->class_id = gRegistry->AddRefType(c);
1463 location->method_id = ToMethodId(m);
1464 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001465 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001466}
1467
Ian Rogersc0542af2014-09-03 16:16:56 -07001468std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001469 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001470 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001471}
1472
Ian Rogersc0542af2014-09-03 16:16:56 -07001473std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001474 return FromFieldId(field_id)->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001475}
1476
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001477/*
1478 * Augment the access flags for synthetic methods and fields by setting
1479 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1480 * flags not specified by the Java programming language.
1481 */
1482static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1483 accessFlags &= kAccJavaFlagsMask;
1484 if ((accessFlags & kAccSynthetic) != 0) {
1485 accessFlags |= 0xf0000000;
1486 }
1487 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001488}
1489
Elliott Hughesdbb40792011-11-18 17:05:22 -08001490/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001491 * Circularly shifts registers so that arguments come first. Debuggers
1492 * expect slots to begin with arguments, but dex code places them at
1493 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001494 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001495static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1496 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001497 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001498 if (code_item == nullptr) {
1499 // We should not get here for a method without code (native, proxy or abstract). Log it and
1500 // return the slot as is since all registers are arguments.
1501 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1502 return slot;
1503 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001504 uint16_t ins_size = code_item->ins_size_;
1505 uint16_t locals_size = code_item->registers_size_ - ins_size;
1506 if (slot >= locals_size) {
1507 return slot - locals_size;
1508 } else {
1509 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001510 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001511}
1512
Jeff Haob7cefc72013-11-14 14:51:09 -08001513/*
1514 * Circularly shifts registers so that arguments come last. Reverts
1515 * slots to dex style argument placement.
1516 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001517static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001518 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001519 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001520 if (code_item == nullptr) {
1521 // We should not get here for a method without code (native, proxy or abstract). Log it and
1522 // return the slot as is since all registers are arguments.
1523 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1524 return slot;
1525 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001526 uint16_t ins_size = code_item->ins_size_;
1527 uint16_t locals_size = code_item->registers_size_ - ins_size;
1528 if (slot < ins_size) {
1529 return slot + locals_size;
1530 } else {
1531 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001532 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001533}
1534
Elliott Hughes88d63092013-01-09 09:55:54 -08001535JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001536 JDWP::JdwpError error;
1537 mirror::Class* c = DecodeClass(class_id, &error);
1538 if (c == nullptr) {
1539 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001540 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001541
1542 size_t instance_field_count = c->NumInstanceFields();
1543 size_t static_field_count = c->NumStaticFields();
1544
1545 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1546
1547 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001548 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001549 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001550 expandBufAddUtf8String(pReply, f->GetName());
1551 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001552 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001553 static const char genericSignature[1] = "";
1554 expandBufAddUtf8String(pReply, genericSignature);
1555 }
1556 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1557 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001558 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001559}
1560
Elliott Hughes88d63092013-01-09 09:55:54 -08001561JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001562 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001563 JDWP::JdwpError error;
1564 mirror::Class* c = DecodeClass(class_id, &error);
1565 if (c == nullptr) {
1566 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001567 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001568
1569 size_t direct_method_count = c->NumDirectMethods();
1570 size_t virtual_method_count = c->NumVirtualMethods();
1571
1572 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1573
1574 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001575 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001576 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001577 expandBufAddUtf8String(pReply, m->GetName());
1578 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001579 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001580 static const char genericSignature[1] = "";
1581 expandBufAddUtf8String(pReply, genericSignature);
1582 }
1583 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1584 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001585 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001586}
1587
Elliott Hughes88d63092013-01-09 09:55:54 -08001588JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001589 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001590 Thread* self = Thread::Current();
1591 StackHandleScope<1> hs(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07001592 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error)));
Mathieu Chartierf8322842014-05-16 10:59:25 -07001593 if (c.Get() == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001594 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001595 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001596 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001597 expandBufAdd4BE(pReply, interface_count);
1598 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001599 expandBufAddRefTypeId(pReply,
1600 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001601 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001602 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001603}
1604
Ian Rogersc0542af2014-09-03 16:16:56 -07001605void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001606 struct DebugCallbackContext {
1607 int numItems;
1608 JDWP::ExpandBuf* pReply;
1609
Elliott Hughes2435a572012-02-17 16:07:41 -08001610 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001611 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1612 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001613 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001614 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001615 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001616 }
1617 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001618 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001619 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001620 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001621 if (code_item == nullptr) {
1622 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001623 start = -1;
1624 end = -1;
1625 } else {
1626 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001627 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001628 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001629 }
1630
1631 expandBufAdd8BE(pReply, start);
1632 expandBufAdd8BE(pReply, end);
1633
1634 // Add numLines later
1635 size_t numLinesOffset = expandBufGetLength(pReply);
1636 expandBufAdd4BE(pReply, 0);
1637
1638 DebugCallbackContext context;
1639 context.numItems = 0;
1640 context.pReply = pReply;
1641
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001642 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001643 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001644 DebugCallbackContext::Callback, nullptr, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001645 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001646
1647 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001648}
1649
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001650void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1651 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001652 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001653 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001654 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001655 size_t variable_count;
1656 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001657
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001658 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1659 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001660 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001661 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1662
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001663 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1664 pContext->variable_count, startAddress, endAddress - startAddress,
1665 name, descriptor, signature, slot,
1666 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001667
Jeff Haob7cefc72013-11-14 14:51:09 -08001668 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001669
Elliott Hughesdbb40792011-11-18 17:05:22 -08001670 expandBufAdd8BE(pContext->pReply, startAddress);
1671 expandBufAddUtf8String(pContext->pReply, name);
1672 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001673 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001674 expandBufAddUtf8String(pContext->pReply, signature);
1675 }
1676 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1677 expandBufAdd4BE(pContext->pReply, slot);
1678
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001679 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001680 }
1681 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001682 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001683
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001684 // arg_count considers doubles and longs to take 2 units.
1685 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001686 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001687 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001688
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001689 // We don't know the total number of variables yet, so leave a blank and update it later.
1690 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001691 expandBufAdd4BE(pReply, 0);
1692
1693 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001694 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001695 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001696 context.variable_count = 0;
1697 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001698
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001699 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001700 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001701 m->GetDexFile()->DecodeDebugInfo(
Ian Rogersc0542af2014-09-03 16:16:56 -07001702 code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001703 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001704 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001705
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001706 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001707}
1708
Jeff Hao579b0242013-11-18 13:16:49 -08001709void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1710 JDWP::ExpandBuf* pReply) {
1711 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001712 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001713 OutputJValue(tag, return_value, pReply);
1714}
1715
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001716void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1717 JDWP::ExpandBuf* pReply) {
1718 mirror::ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001719 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001720 OutputJValue(tag, field_value, pReply);
1721}
1722
Elliott Hughes9777ba22013-01-17 09:04:19 -08001723JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001724 std::vector<uint8_t>* bytecodes) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001725 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001726 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001727 return JDWP::ERR_INVALID_METHODID;
1728 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001729 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001730 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1731 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1732 const uint8_t* end = begin + byte_count;
1733 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001734 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001735 }
1736 return JDWP::ERR_NONE;
1737}
1738
Elliott Hughes88d63092013-01-09 09:55:54 -08001739JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001740 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001741}
1742
Elliott Hughes88d63092013-01-09 09:55:54 -08001743JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001744 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001745}
1746
Elliott Hughes88d63092013-01-09 09:55:54 -08001747static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1748 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001749 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001750 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001751 JDWP::JdwpError error;
1752 mirror::Class* c = DecodeClass(ref_type_id, &error);
1753 if (ref_type_id != 0 && c == nullptr) {
1754 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001755 }
1756
Ian Rogersc0542af2014-09-03 16:16:56 -07001757 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1758 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001759 return JDWP::ERR_INVALID_OBJECT;
1760 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001761 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001762
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001763 mirror::Class* receiver_class = c;
Ian Rogersc0542af2014-09-03 16:16:56 -07001764 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001765 receiver_class = o->GetClass();
1766 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001767 // TODO: should we give up now if receiver_class is nullptr?
1768 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001769 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001770 return JDWP::ERR_INVALID_FIELDID;
1771 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001772
Elliott Hughes0cf74332012-02-23 23:14:00 -08001773 // The RI only enforces the static/non-static mismatch in one direction.
1774 // TODO: should we change the tests and check both?
1775 if (is_static) {
1776 if (!f->IsStatic()) {
1777 return JDWP::ERR_INVALID_FIELDID;
1778 }
1779 } else {
1780 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001781 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field "
1782 << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001783 }
1784 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001785 if (f->IsStatic()) {
1786 o = f->GetDeclaringClass();
1787 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001788
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001789 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001790 JValue field_value;
1791 if (tag == JDWP::JT_VOID) {
1792 LOG(FATAL) << "Unknown tag: " << tag;
1793 } else if (!IsPrimitiveTag(tag)) {
1794 field_value.SetL(f->GetObject(o));
1795 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1796 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001797 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001798 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001799 }
Jeff Hao579b0242013-11-18 13:16:49 -08001800 Dbg::OutputJValue(tag, &field_value, pReply);
1801
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001802 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001803}
1804
Elliott Hughes88d63092013-01-09 09:55:54 -08001805JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001806 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001807 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001808}
1809
Ian Rogersc0542af2014-09-03 16:16:56 -07001810JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1811 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001812 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001813}
1814
Elliott Hughes88d63092013-01-09 09:55:54 -08001815static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001816 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001817 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001818 JDWP::JdwpError error;
1819 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1820 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
1825 // The RI only enforces the static/non-static mismatch in one direction.
1826 // TODO: should we change the tests and check both?
1827 if (is_static) {
1828 if (!f->IsStatic()) {
1829 return JDWP::ERR_INVALID_FIELDID;
1830 }
1831 } else {
1832 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001833 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001834 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001835 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001836 if (f->IsStatic()) {
1837 o = f->GetDeclaringClass();
1838 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001839
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001840 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001841
1842 if (IsPrimitiveTag(tag)) {
1843 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001844 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001845 // Debugging can't use transactional mode (runtime only).
1846 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001847 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001848 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001849 // Debugging can't use transactional mode (runtime only).
1850 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001851 }
1852 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -07001853 mirror::Object* v = gRegistry->Get<mirror::Object*>(value, &error);
1854 if (error != JDWP::ERR_NONE) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001855 return JDWP::ERR_INVALID_OBJECT;
1856 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001857 if (v != nullptr) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001858 mirror::Class* field_type;
1859 {
1860 StackHandleScope<3> hs(Thread::Current());
1861 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1862 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
1863 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
1864 field_type = FieldHelper(h_f).GetType();
1865 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001866 if (!field_type->IsAssignableFrom(v->GetClass())) {
1867 return JDWP::ERR_INVALID_OBJECT;
1868 }
1869 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001870 // Debugging can't use transactional mode (runtime only).
1871 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001872 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001873
1874 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001875}
1876
Elliott Hughes88d63092013-01-09 09:55:54 -08001877JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001878 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001879 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001880}
1881
Elliott Hughes88d63092013-01-09 09:55:54 -08001882JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1883 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001884}
1885
Elliott Hughes88d63092013-01-09 09:55:54 -08001886std::string Dbg::StringToUtf8(JDWP::ObjectId string_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001887 JDWP::JdwpError error;
1888 mirror::String* s = gRegistry->Get<mirror::String*>(string_id, &error);
1889 CHECK(s != nullptr) << error;
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001890 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001891}
1892
Jeff Hao579b0242013-11-18 13:16:49 -08001893void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1894 if (IsPrimitiveTag(tag)) {
1895 expandBufAdd1(pReply, tag);
1896 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1897 expandBufAdd1(pReply, return_value->GetI());
1898 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1899 expandBufAdd2BE(pReply, return_value->GetI());
1900 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1901 expandBufAdd4BE(pReply, return_value->GetI());
1902 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1903 expandBufAdd8BE(pReply, return_value->GetJ());
1904 } else {
1905 CHECK_EQ(tag, JDWP::JT_VOID);
1906 }
1907 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001908 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001909 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001910 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001911 expandBufAddObjectId(pReply, gRegistry->Add(value));
1912 }
1913}
1914
Ian Rogersc0542af2014-09-03 16:16:56 -07001915JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001916 ScopedObjectAccessUnchecked soa(Thread::Current());
1917 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001918 JDWP::JdwpError error;
1919 Thread* thread = DecodeThread(soa, thread_id, &error);
1920 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001921 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1922 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001923 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001924
1925 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07001926 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1927 CHECK(thread_object != nullptr) << error;
Brian Carlstromea46f952013-07-30 01:26:50 -07001928 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001929 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1930 mirror::String* s =
1931 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Ian Rogersc0542af2014-09-03 16:16:56 -07001932 if (s != nullptr) {
1933 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08001934 }
1935 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001936}
1937
Elliott Hughes221229c2013-01-08 18:17:50 -08001938JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001939 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001940 JDWP::JdwpError error;
1941 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1942 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001943 return JDWP::ERR_INVALID_OBJECT;
1944 }
Ian Rogers98379392014-02-24 16:53:16 -08001945 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001946 // Okay, so it's an object, but is it actually a thread?
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001947 {
1948 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07001949 Thread* thread = DecodeThread(soa, thread_id, &error);
1950 UNUSED(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001951 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001952 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1953 // Zombie threads are in the null group.
1954 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001955 error = JDWP::ERR_NONE;
1956 } else if (error == JDWP::ERR_NONE) {
1957 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1958 CHECK(c != nullptr);
1959 mirror::ArtField* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001960 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001961 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001962 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001963 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1964 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001965 }
Ian Rogers98379392014-02-24 16:53:16 -08001966 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001967 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001968}
1969
Elliott Hughes88d63092013-01-09 09:55:54 -08001970std::string Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001971 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001972 JDWP::JdwpError error;
1973 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id, &error);
1974 CHECK(thread_group != nullptr) << error;
Ian Rogers98379392014-02-24 16:53:16 -08001975 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupName");
1976 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1977 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001978 mirror::ArtField* f = c->FindInstanceField("name", "Ljava/lang/String;");
Ian Rogersc0542af2014-09-03 16:16:56 -07001979 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001980 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Ian Rogers98379392014-02-24 16:53:16 -08001981 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes499c5132011-11-17 14:55:11 -08001982 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001983}
1984
Elliott Hughes88d63092013-01-09 09:55:54 -08001985JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id) {
Ian Rogers98379392014-02-24 16:53:16 -08001986 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001987 JDWP::JdwpError error;
1988 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id, &error);
1989 CHECK(thread_group != nullptr) << error;
Ian Rogers98379392014-02-24 16:53:16 -08001990 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupParent");
1991 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1992 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001993 mirror::ArtField* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
Ian Rogersc0542af2014-09-03 16:16:56 -07001994 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001995 mirror::Object* parent = f->GetObject(thread_group);
Ian Rogers98379392014-02-24 16:53:16 -08001996 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes4e235312011-12-02 11:34:15 -08001997 return gRegistry->Add(parent);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001998}
1999
2000JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002001 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07002002 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002003 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002004 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002005}
2006
2007JDWP::ObjectId Dbg::GetMainThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002008 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07002009 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002010 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002011 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002012}
2013
Jeff Hao920af3e2013-08-28 15:46:38 -07002014JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2015 switch (state) {
2016 case kBlocked:
2017 return JDWP::TS_MONITOR;
2018 case kNative:
2019 case kRunnable:
2020 case kSuspended:
2021 return JDWP::TS_RUNNING;
2022 case kSleeping:
2023 return JDWP::TS_SLEEPING;
2024 case kStarting:
2025 case kTerminated:
2026 return JDWP::TS_ZOMBIE;
2027 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002028 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002029 case kWaitingForDebuggerSend:
2030 case kWaitingForDebuggerSuspension:
2031 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002032 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002033 case kWaitingForGcToComplete:
Jeff Hao920af3e2013-08-28 15:46:38 -07002034 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002035 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002036 case kWaitingForSignalCatcherOutput:
2037 case kWaitingInMainDebuggerLoop:
2038 case kWaitingInMainSignalCatcherLoop:
2039 case kWaitingPerformingGc:
2040 case kWaiting:
2041 return JDWP::TS_WAIT;
2042 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2043 }
2044 LOG(FATAL) << "Unknown thread state: " << state;
2045 return JDWP::TS_ZOMBIE;
2046}
2047
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002048JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2049 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002050 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002051
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002052 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2053
Ian Rogers50b35e22012-10-04 10:09:15 -07002054 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002055 JDWP::JdwpError error;
2056 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002057 if (error != JDWP::ERR_NONE) {
2058 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2059 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002060 return JDWP::ERR_NONE;
2061 }
2062 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002063 }
2064
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002065 if (IsSuspendedForDebugger(soa, thread)) {
2066 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002067 }
2068
Jeff Hao920af3e2013-08-28 15:46:38 -07002069 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002070 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002071}
2072
Elliott Hughes221229c2013-01-08 18:17:50 -08002073JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002074 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07002075 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002076 JDWP::JdwpError error;
2077 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002078 if (error != JDWP::ERR_NONE) {
2079 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002080 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002081 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002082 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002083 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002084}
2085
Elliott Hughesf9501702013-01-11 11:22:27 -08002086JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2087 ScopedObjectAccess soa(Thread::Current());
2088 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002089 JDWP::JdwpError error;
2090 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002091 if (error != JDWP::ERR_NONE) {
2092 return error;
2093 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002094 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002095 return JDWP::ERR_NONE;
2096}
2097
Ian Rogersc0542af2014-09-03 16:16:56 -07002098void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers365c1022012-06-22 15:05:28 -07002099 class ThreadListVisitor {
2100 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002101 ThreadListVisitor(const ScopedObjectAccessUnchecked& soa, mirror::Object* desired_thread_group,
Ian Rogersc0542af2014-09-03 16:16:56 -07002102 std::vector<JDWP::ObjectId>* thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002103 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
jeffhao0dfbb7e2012-11-28 15:26:03 -08002104 : soa_(soa), desired_thread_group_(desired_thread_group), thread_ids_(thread_ids) {}
Ian Rogers365c1022012-06-22 15:05:28 -07002105
Elliott Hughesa2155262011-11-16 16:26:58 -08002106 static void Visit(Thread* t, void* arg) {
2107 reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t);
2108 }
2109
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002110 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2111 // annotalysis.
2112 void Visit(Thread* t) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08002113 if (t == Dbg::GetDebugThread()) {
2114 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2115 // query all threads, so it's easier if we just don't tell them about this thread.
2116 return;
2117 }
Sebastien Hertz9ac56022014-08-12 09:09:37 +02002118 if (t->IsStillStarting()) {
2119 // This thread is being started (and has been registered in the thread list). However, it is
2120 // not completely started yet so we must ignore it.
2121 return;
2122 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002123 mirror::Object* peer = t->GetPeer();
jeffhao0dfbb7e2012-11-28 15:26:03 -08002124 if (IsInDesiredThreadGroup(peer)) {
Ian Rogersc0542af2014-09-03 16:16:56 -07002125 thread_ids_->push_back(gRegistry->Add(peer));
Elliott Hughesa2155262011-11-16 16:26:58 -08002126 }
2127 }
2128
Ian Rogers365c1022012-06-22 15:05:28 -07002129 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002130 bool IsInDesiredThreadGroup(mirror::Object* peer)
jeffhao0dfbb7e2012-11-28 15:26:03 -08002131 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07002132 // peer might be nullptr if the thread is still starting up.
2133 if (peer == nullptr) {
jeffhao0dfbb7e2012-11-28 15:26:03 -08002134 // We can't tell the debugger about this thread yet.
2135 // TODO: if we identified threads to the debugger by their Thread*
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002136 // rather than their peer's mirror::Object*, we could fix this.
jeffhao0dfbb7e2012-11-28 15:26:03 -08002137 // Doing so might help us report ZOMBIE threads too.
2138 return false;
2139 }
jeffhaoc1e04902012-12-13 12:41:10 -08002140 // Do we want threads from all thread groups?
Ian Rogersc0542af2014-09-03 16:16:56 -07002141 if (desired_thread_group_ == nullptr) {
jeffhaoc1e04902012-12-13 12:41:10 -08002142 return true;
2143 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002144 mirror::Object* group = soa_.DecodeField(WellKnownClasses::java_lang_Thread_group)->GetObject(peer);
jeffhao0dfbb7e2012-11-28 15:26:03 -08002145 return (group == desired_thread_group_);
2146 }
2147
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002148 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002149 mirror::Object* const desired_thread_group_;
Ian Rogersc0542af2014-09-03 16:16:56 -07002150 std::vector<JDWP::ObjectId>* const thread_ids_;
Elliott Hughesa2155262011-11-16 16:26:58 -08002151 };
2152
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002153 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002154 JDWP::JdwpError error;
2155 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id, &error);
2156 CHECK_EQ(error, JDWP::ERR_NONE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002157 ThreadListVisitor tlv(soa, thread_group, thread_ids);
Ian Rogers50b35e22012-10-04 10:09:15 -07002158 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -07002159 Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv);
Elliott Hughescaf76542012-06-28 16:08:22 -07002160}
Elliott Hughesa2155262011-11-16 16:26:58 -08002161
Ian Rogersc0542af2014-09-03 16:16:56 -07002162void Dbg::GetChildThreadGroups(JDWP::ObjectId thread_group_id,
2163 std::vector<JDWP::ObjectId>* child_thread_group_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002164 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002165 JDWP::JdwpError error;
2166 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id, &error);
2167 CHECK(thread_group != nullptr) << error;
Elliott Hughescaf76542012-06-28 16:08:22 -07002168
2169 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Brian Carlstromea46f952013-07-30 01:26:50 -07002170 mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002171 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Elliott Hughescaf76542012-06-28 16:08:22 -07002172
2173 // Get the array and size out of the ArrayList<ThreadGroup>...
Brian Carlstromea46f952013-07-30 01:26:50 -07002174 mirror::ArtField* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;");
2175 mirror::ArtField* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002176 mirror::ObjectArray<mirror::Object>* groups_array =
2177 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
Elliott Hughescaf76542012-06-28 16:08:22 -07002178 const int32_t size = size_field->GetInt(groups_array_list);
2179
2180 // Copy the first 'size' elements out of the array into the result.
2181 for (int32_t i = 0; i < size; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07002182 child_thread_group_ids->push_back(gRegistry->Add(groups_array->Get(i)));
Elliott Hughesa2155262011-11-16 16:26:58 -08002183 }
2184}
2185
Ian Rogersc0542af2014-09-03 16:16:56 -07002186static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002187 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07002188 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogersc0542af2014-09-03 16:16:56 -07002189 : StackVisitor(thread, nullptr), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002190
Elliott Hughes64f574f2013-02-20 14:57:12 -08002191 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2192 // annotalysis.
2193 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002194 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002195 ++depth;
2196 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002197 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002198 }
2199 size_t depth;
2200 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002201
Ian Rogers7a22fa62013-01-23 12:16:16 -08002202 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002203 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002204 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002205}
2206
Ian Rogersc0542af2014-09-03 16:16:56 -07002207JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002208 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002209 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002210 JDWP::JdwpError error;
2211 *result = 0;
2212 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002213 if (error != JDWP::ERR_NONE) {
2214 return error;
2215 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002216 if (!IsSuspendedForDebugger(soa, thread)) {
2217 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2218 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002219 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002220 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002221}
2222
Ian Rogers306057f2012-11-26 12:45:53 -08002223JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2224 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002225 class GetFrameVisitor : public StackVisitor {
2226 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08002227 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002228 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07002229 : StackVisitor(thread, nullptr), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002230 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
2231 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002232 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002233
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002234 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2235 // annotalysis.
2236 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002237 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002238 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002239 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002240 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002241 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002242 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002243 if (depth_ >= start_frame_) {
2244 JDWP::FrameId frame_id(GetFrameId());
2245 JDWP::JdwpLocation location;
Ian Rogersc0542af2014-09-03 16:16:56 -07002246 SetLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002247 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002248 expandBufAdd8BE(buf_, frame_id);
2249 expandBufAddLocation(buf_, location);
2250 }
2251 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002252 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002253 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002254
2255 private:
2256 size_t depth_;
2257 const size_t start_frame_;
2258 const size_t frame_count_;
2259 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002260 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002261
2262 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002263 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002264 JDWP::JdwpError error;
2265 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002266 if (error != JDWP::ERR_NONE) {
2267 return error;
2268 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002269 if (!IsSuspendedForDebugger(soa, thread)) {
2270 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2271 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002272 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002273 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002274 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002275}
2276
2277JDWP::ObjectId Dbg::GetThreadSelfId() {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002278 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08002279 return gRegistry->Add(soa.Self()->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002280}
2281
Elliott Hughes475fc232011-10-25 15:00:35 -07002282void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002283 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002284}
2285
2286void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07002287 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002288}
2289
Elliott Hughes221229c2013-01-08 18:17:50 -08002290JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002291 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002292 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002293 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002294 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002295 JDWP::JdwpError error;
2296 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002297 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002298 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002299 return JDWP::ERR_THREAD_NOT_ALIVE;
2300 }
Ian Rogersf3d874c2014-07-17 18:52:42 -07002301 // Suspend thread to build stack trace. Take suspend thread lock to avoid races with threads
2302 // trying to suspend this one.
2303 MutexLock mu(self, *Locks::thread_list_suspend_thread_lock_);
Elliott Hughesf327e072013-01-09 16:01:26 -08002304 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002305 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2306 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2307 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002308 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002309 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002310 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002311 return JDWP::ERR_INTERNAL;
2312 } else {
2313 return JDWP::ERR_THREAD_NOT_ALIVE;
2314 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002315}
2316
Elliott Hughes221229c2013-01-08 18:17:50 -08002317void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002318 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002319 JDWP::JdwpError error;
2320 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2321 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002322 Thread* thread;
2323 {
2324 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2325 thread = Thread::FromManagedThread(soa, peer);
2326 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002327 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002328 LOG(WARNING) << "No such thread for resume: " << peer;
2329 return;
2330 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002331 bool needs_resume;
2332 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002333 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002334 needs_resume = thread->GetSuspendCount() > 0;
2335 }
2336 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002337 Runtime::Current()->GetThreadList()->Resume(thread, true);
2338 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002339}
2340
2341void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002342 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002343}
2344
Ian Rogers0399dde2012-06-06 17:09:28 -07002345struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002346 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002347 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07002348 : StackVisitor(thread, context), this_object(nullptr), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002349
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002350 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2351 // annotalysis.
2352 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002353 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002354 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002355 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002356 this_object = GetThisObject();
2357 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002358 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002359 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002360
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002361 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002362 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002363};
2364
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002365JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2366 JDWP::ObjectId* result) {
2367 ScopedObjectAccessUnchecked soa(Thread::Current());
2368 Thread* thread;
2369 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002370 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002371 JDWP::JdwpError error;
2372 thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002373 if (error != JDWP::ERR_NONE) {
2374 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002375 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002376 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002377 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2378 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002379 }
Ian Rogers700a4022014-05-19 16:49:03 -07002380 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002381 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002382 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002383 *result = gRegistry->Add(visitor.this_object);
2384 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002385}
2386
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002387JDWP::JdwpError Dbg::GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2388 JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002389 struct GetLocalVisitor : public StackVisitor {
Ian Rogers98379392014-02-24 16:53:16 -08002390 GetLocalVisitor(const ScopedObjectAccessUnchecked& soa, Thread* thread, Context* context,
2391 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002392 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers98379392014-02-24 16:53:16 -08002393 : StackVisitor(thread, context), soa_(soa), frame_id_(frame_id), slot_(slot), tag_(tag),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002394 buf_(buf), width_(width), error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002395
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002396 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2397 // annotalysis.
2398 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002399 if (GetFrameId() != frame_id_) {
2400 return true; // Not our frame, carry on.
Elliott Hughesdbb40792011-11-18 17:05:22 -08002401 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002402 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002403 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002404 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002405 if (m->IsNative()) {
2406 // We can't read local value from native method.
2407 error_ = JDWP::ERR_OPAQUE_FRAME;
2408 return false;
2409 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002410 uint16_t reg = DemangleSlot(slot_, m);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002411 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
Ian Rogers0399dde2012-06-06 17:09:28 -07002412 switch (tag_) {
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002413 case JDWP::JT_BOOLEAN: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002414 CHECK_EQ(width_, 1U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002415 uint32_t intVal;
2416 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2417 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2418 JDWP::Set1(buf_+1, intVal != 0);
2419 } else {
2420 VLOG(jdwp) << "failed to get boolean local " << reg;
2421 error_ = kFailureErrorCode;
2422 }
2423 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002424 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002425 case JDWP::JT_BYTE: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002426 CHECK_EQ(width_, 1U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002427 uint32_t intVal;
2428 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2429 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2430 JDWP::Set1(buf_+1, intVal);
2431 } else {
2432 VLOG(jdwp) << "failed to get byte local " << reg;
2433 error_ = kFailureErrorCode;
2434 }
2435 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002436 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002437 case JDWP::JT_SHORT:
2438 case JDWP::JT_CHAR: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002439 CHECK_EQ(width_, 2U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002440 uint32_t intVal;
2441 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2442 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2443 JDWP::Set2BE(buf_+1, intVal);
2444 } else {
2445 VLOG(jdwp) << "failed to get short/char local " << reg;
2446 error_ = kFailureErrorCode;
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002447 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002448 break;
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002449 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002450 case JDWP::JT_INT: {
2451 CHECK_EQ(width_, 4U);
2452 uint32_t intVal;
2453 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2454 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2455 JDWP::Set4BE(buf_+1, intVal);
2456 } else {
2457 VLOG(jdwp) << "failed to get int local " << reg;
2458 error_ = kFailureErrorCode;
Sebastien Hertz8ebd94a2014-06-17 09:49:21 +00002459 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002460 break;
Sebastien Hertz8ebd94a2014-06-17 09:49:21 +00002461 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002462 case JDWP::JT_FLOAT: {
2463 CHECK_EQ(width_, 4U);
2464 uint32_t intVal;
2465 if (GetVReg(m, reg, kFloatVReg, &intVal)) {
2466 VLOG(jdwp) << "get float local " << reg << " = " << intVal;
2467 JDWP::Set4BE(buf_+1, intVal);
2468 } else {
2469 VLOG(jdwp) << "failed to get float local " << reg;
2470 error_ = kFailureErrorCode;
2471 }
2472 break;
2473 }
2474 case JDWP::JT_ARRAY:
2475 case JDWP::JT_CLASS_LOADER:
2476 case JDWP::JT_CLASS_OBJECT:
2477 case JDWP::JT_OBJECT:
2478 case JDWP::JT_STRING:
2479 case JDWP::JT_THREAD:
2480 case JDWP::JT_THREAD_GROUP: {
2481 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
2482 uint32_t intVal;
2483 if (GetVReg(m, reg, kReferenceVReg, &intVal)) {
2484 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2485 VLOG(jdwp) << "get " << tag_ << " object local " << reg << " = " << o;
2486 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2487 LOG(FATAL) << "Register " << reg << " expected to hold " << tag_ << " object: " << o;
2488 }
2489 tag_ = TagFromObject(soa_, o);
2490 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2491 } else {
2492 VLOG(jdwp) << "failed to get " << tag_ << " object local " << reg;
2493 error_ = kFailureErrorCode;
2494 }
2495 break;
2496 }
2497 case JDWP::JT_DOUBLE: {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002498 CHECK_EQ(width_, 8U);
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002499 uint64_t longVal;
2500 if (GetVRegPair(m, reg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2501 VLOG(jdwp) << "get double local " << reg << " = " << longVal;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002502 JDWP::Set8BE(buf_+1, longVal);
2503 } else {
2504 VLOG(jdwp) << "failed to get double local " << reg;
2505 error_ = kFailureErrorCode;
2506 }
2507 break;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002508 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002509 case JDWP::JT_LONG: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002510 CHECK_EQ(width_, 8U);
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002511 uint64_t longVal;
2512 if (GetVRegPair(m, reg, kLongLoVReg, kLongHiVReg, &longVal)) {
2513 VLOG(jdwp) << "get long local " << reg << " = " << longVal;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002514 JDWP::Set8BE(buf_+1, longVal);
2515 } else {
2516 VLOG(jdwp) << "failed to get long local " << reg;
2517 error_ = kFailureErrorCode;
2518 }
2519 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002520 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002521 default:
2522 LOG(FATAL) << "Unknown tag " << tag_;
2523 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002524 }
2525
2526 // Prepend tag, which may have been updated.
2527 JDWP::Set1(buf_, tag_);
2528 return false;
2529 }
Ian Rogers98379392014-02-24 16:53:16 -08002530 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002531 const JDWP::FrameId frame_id_;
2532 const int slot_;
2533 JDWP::JdwpTag tag_;
2534 uint8_t* const buf_;
2535 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002536 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002537 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002538
2539 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002540 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002541 JDWP::JdwpError error;
2542 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002543 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002544 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002545 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002546 // TODO check thread is suspended by the debugger ?
Ian Rogers700a4022014-05-19 16:49:03 -07002547 std::unique_ptr<Context> context(Context::Create());
Ian Rogers98379392014-02-24 16:53:16 -08002548 GetLocalVisitor visitor(soa, thread, context.get(), frame_id, slot, tag, buf, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002549 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002550 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002551}
2552
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002553JDWP::JdwpError Dbg::SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2554 JDWP::JdwpTag tag, uint64_t value, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002555 struct SetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002556 SetLocalVisitor(Thread* thread, Context* context,
Ian Rogers0399dde2012-06-06 17:09:28 -07002557 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
Ian Rogersca190662012-06-26 15:45:57 -07002558 size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002559 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002560 : StackVisitor(thread, context),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002561 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width),
2562 error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002563
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002564 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2565 // annotalysis.
2566 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002567 if (GetFrameId() != frame_id_) {
2568 return true; // Not our frame, carry on.
2569 }
2570 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002571 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002572 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002573 if (m->IsNative()) {
2574 // We can't read local value from native method.
2575 error_ = JDWP::ERR_OPAQUE_FRAME;
2576 return false;
2577 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002578 uint16_t reg = DemangleSlot(slot_, m);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002579 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
Ian Rogers0399dde2012-06-06 17:09:28 -07002580 switch (tag_) {
2581 case JDWP::JT_BOOLEAN:
2582 case JDWP::JT_BYTE:
2583 CHECK_EQ(width_, 1U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002584 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2585 VLOG(jdwp) << "failed to set boolean/byte local " << reg << " = "
2586 << static_cast<uint32_t>(value_);
2587 error_ = kFailureErrorCode;
2588 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002589 break;
2590 case JDWP::JT_SHORT:
2591 case JDWP::JT_CHAR:
2592 CHECK_EQ(width_, 2U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002593 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2594 VLOG(jdwp) << "failed to set short/char local " << reg << " = "
2595 << static_cast<uint32_t>(value_);
2596 error_ = kFailureErrorCode;
2597 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002598 break;
2599 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002600 CHECK_EQ(width_, 4U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002601 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2602 VLOG(jdwp) << "failed to set int local " << reg << " = "
2603 << static_cast<uint32_t>(value_);
2604 error_ = kFailureErrorCode;
2605 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002606 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002607 case JDWP::JT_FLOAT:
2608 CHECK_EQ(width_, 4U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002609 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kFloatVReg)) {
2610 VLOG(jdwp) << "failed to set float local " << reg << " = "
2611 << static_cast<uint32_t>(value_);
2612 error_ = kFailureErrorCode;
2613 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002614 break;
2615 case JDWP::JT_ARRAY:
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002616 case JDWP::JT_CLASS_LOADER:
2617 case JDWP::JT_CLASS_OBJECT:
Ian Rogers0399dde2012-06-06 17:09:28 -07002618 case JDWP::JT_OBJECT:
2619 case JDWP::JT_STRING:
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002620 case JDWP::JT_THREAD:
2621 case JDWP::JT_THREAD_GROUP: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002622 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogersc0542af2014-09-03 16:16:56 -07002623 JDWP::JdwpError error;
2624 mirror::Object* o =
2625 gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value_), &error);
2626 if (error != JDWP::ERR_NONE) {
2627 VLOG(jdwp) << tag_ << " object " << value_ << " is an invalid object";
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002628 error_ = JDWP::ERR_INVALID_OBJECT;
2629 } else if (!SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2630 kReferenceVReg)) {
2631 VLOG(jdwp) << "failed to set " << tag_ << " object local " << reg << " = " << o;
2632 error_ = kFailureErrorCode;
Ian Rogers0399dde2012-06-06 17:09:28 -07002633 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002634 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002635 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002636 case JDWP::JT_DOUBLE: {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002637 CHECK_EQ(width_, 8U);
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002638 bool success = SetVRegPair(m, reg, value_, kDoubleLoVReg, kDoubleHiVReg);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002639 if (!success) {
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002640 VLOG(jdwp) << "failed to set double local " << reg << " = " << value_;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002641 error_ = kFailureErrorCode;
2642 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002643 break;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002644 }
2645 case JDWP::JT_LONG: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002646 CHECK_EQ(width_, 8U);
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002647 bool success = SetVRegPair(m, reg, value_, kLongLoVReg, kLongHiVReg);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002648 if (!success) {
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002649 VLOG(jdwp) << "failed to set double local " << reg << " = " << value_;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002650 error_ = kFailureErrorCode;
2651 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002652 break;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002653 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002654 default:
2655 LOG(FATAL) << "Unknown tag " << tag_;
2656 break;
2657 }
2658 return false;
2659 }
2660
2661 const JDWP::FrameId frame_id_;
2662 const int slot_;
2663 const JDWP::JdwpTag tag_;
2664 const uint64_t value_;
2665 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002666 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002667 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002668
2669 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002670 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07002671 JDWP::JdwpError error;
2672 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002673 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002674 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002675 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002676 // TODO check thread is suspended by the debugger ?
Ian Rogers700a4022014-05-19 16:49:03 -07002677 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002678 SetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, value, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002679 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002680 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002681}
2682
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002683JDWP::ObjectId Dbg::GetThisObjectIdForEvent(mirror::Object* this_object) {
2684 // If 'this_object' isn't already in the registry, we know that we're not looking for it, so
2685 // there's no point adding it to the registry and burning through ids.
2686 // When registering an event request with an instance filter, we've been given an existing object
2687 // id so it must already be present in the registry when the event fires.
2688 JDWP::ObjectId this_id = 0;
2689 if (this_object != nullptr && gRegistry->Contains(this_object)) {
2690 this_id = gRegistry->Add(this_object);
2691 }
2692 return this_id;
2693}
2694
Ian Rogersef7d42f2014-01-06 12:55:46 -08002695void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002696 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002697 if (!IsDebuggerActive()) {
2698 return;
2699 }
2700 DCHECK(m != nullptr);
2701 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002702 JDWP::JdwpLocation location;
Ian Rogersc0542af2014-09-03 16:16:56 -07002703 SetLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002704
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002705 // We need 'this' for InstanceOnly filters only.
2706 JDWP::ObjectId this_id = GetThisObjectIdForEvent(this_object);
Jeff Hao579b0242013-11-18 13:16:49 -08002707 gJdwpState->PostLocationEvent(&location, this_id, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002708}
2709
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002710void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
2711 mirror::Object* this_object, mirror::ArtField* f) {
2712 if (!IsDebuggerActive()) {
2713 return;
2714 }
2715 DCHECK(m != nullptr);
2716 DCHECK(f != nullptr);
2717 JDWP::JdwpLocation location;
Ian Rogersc0542af2014-09-03 16:16:56 -07002718 SetLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002719
2720 JDWP::RefTypeId type_id = gRegistry->AddRefType(f->GetDeclaringClass());
2721 JDWP::FieldId field_id = ToFieldId(f);
2722 JDWP::ObjectId this_id = gRegistry->Add(this_object);
2723
2724 gJdwpState->PostFieldEvent(&location, type_id, field_id, this_id, nullptr, false);
2725}
2726
2727void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
2728 mirror::Object* this_object, mirror::ArtField* f,
2729 const JValue* field_value) {
2730 if (!IsDebuggerActive()) {
2731 return;
2732 }
2733 DCHECK(m != nullptr);
2734 DCHECK(f != nullptr);
2735 DCHECK(field_value != nullptr);
2736 JDWP::JdwpLocation location;
Ian Rogersc0542af2014-09-03 16:16:56 -07002737 SetLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002738
2739 JDWP::RefTypeId type_id = gRegistry->AddRefType(f->GetDeclaringClass());
2740 JDWP::FieldId field_id = ToFieldId(f);
2741 JDWP::ObjectId this_id = gRegistry->Add(this_object);
2742
2743 gJdwpState->PostFieldEvent(&location, type_id, field_id, this_id, field_value, true);
2744}
2745
2746void Dbg::PostException(const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002747 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002748 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002749 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002750 return;
2751 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002752
Ian Rogers62d6c772013-02-27 08:32:07 -08002753 JDWP::JdwpLocation jdwp_throw_location;
Ian Rogersc0542af2014-09-03 16:16:56 -07002754 SetLocation(&jdwp_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002755 JDWP::JdwpLocation catch_location;
Ian Rogersc0542af2014-09-03 16:16:56 -07002756 SetLocation(&catch_location, catch_method, catch_dex_pc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002757
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002758 // We need 'this' for InstanceOnly filters only.
2759 JDWP::ObjectId this_id = GetThisObjectIdForEvent(throw_location.GetThis());
Elliott Hughes64f574f2013-02-20 14:57:12 -08002760 JDWP::ObjectId exception_id = gRegistry->Add(exception_object);
2761 JDWP::RefTypeId exception_class_id = gRegistry->AddRefType(exception_object->GetClass());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002762
Ian Rogers62d6c772013-02-27 08:32:07 -08002763 gJdwpState->PostException(&jdwp_throw_location, exception_id, exception_class_id, &catch_location,
2764 this_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002765}
2766
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002767void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002768 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002769 return;
2770 }
2771
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002772 // OLD-TODO - we currently always send both "verified" and "prepared" since
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002773 // debuggers seem to like that. There might be some advantage to honesty,
2774 // since the class may not yet be verified.
2775 int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01002776 JDWP::JdwpTypeTag tag = GetTypeTag(c);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002777 std::string temp;
2778 gJdwpState->PostClassPrepare(tag, gRegistry->Add(c), c->GetDescriptor(&temp), state);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002779}
2780
Ian Rogers62d6c772013-02-27 08:32:07 -08002781void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002782 mirror::ArtMethod* m, uint32_t dex_pc,
2783 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002784 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002785 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002786 }
2787
Elliott Hughes86964332012-02-15 19:37:42 -08002788 if (IsBreakpoint(m, dex_pc)) {
2789 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002790 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002791
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002792 // If the debugger is single-stepping one of our threads, check to
2793 // see if we're that thread and we've reached a step point.
2794 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2795 DCHECK(single_step_control != nullptr);
2796 if (single_step_control->is_active) {
2797 CHECK(!m->IsNative());
2798 if (single_step_control->step_depth == JDWP::SD_INTO) {
2799 // Step into method calls. We break when the line number
2800 // or method pointer changes. If we're in SS_MIN mode, we
2801 // always stop.
2802 if (single_step_control->method != m) {
2803 event_flags |= kSingleStep;
2804 VLOG(jdwp) << "SS new method";
2805 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2806 event_flags |= kSingleStep;
2807 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002808 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002809 event_flags |= kSingleStep;
2810 VLOG(jdwp) << "SS new line";
2811 }
2812 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2813 // Step over method calls. We break when the line number is
2814 // different and the frame depth is <= the original frame
2815 // depth. (We can't just compare on the method, because we
2816 // might get unrolled past it by an exception, and it's tricky
2817 // to identify recursion.)
2818
2819 int stack_depth = GetStackDepth(thread);
2820
2821 if (stack_depth < single_step_control->stack_depth) {
2822 // Popped up one or more frames, always trigger.
2823 event_flags |= kSingleStep;
2824 VLOG(jdwp) << "SS method pop";
2825 } else if (stack_depth == single_step_control->stack_depth) {
2826 // Same depth, see if we moved.
2827 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002828 event_flags |= kSingleStep;
2829 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002830 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002831 event_flags |= kSingleStep;
2832 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002833 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002834 }
2835 } else {
2836 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2837 // Return from the current method. We break when the frame
2838 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002839
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002840 // This differs from the "method exit" break in that it stops
2841 // with the PC at the next instruction in the returned-to
2842 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002843
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002844 int stack_depth = GetStackDepth(thread);
2845 if (stack_depth < single_step_control->stack_depth) {
2846 event_flags |= kSingleStep;
2847 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002848 }
2849 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002850 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002851
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002852 // If there's something interesting going on, see if it matches one
2853 // of the debugger filters.
2854 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002855 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002856 }
2857}
2858
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002859size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2860 switch (instrumentation_event) {
2861 case instrumentation::Instrumentation::kMethodEntered:
2862 return &method_enter_event_ref_count_;
2863 case instrumentation::Instrumentation::kMethodExited:
2864 return &method_exit_event_ref_count_;
2865 case instrumentation::Instrumentation::kDexPcMoved:
2866 return &dex_pc_change_event_ref_count_;
2867 case instrumentation::Instrumentation::kFieldRead:
2868 return &field_read_event_ref_count_;
2869 case instrumentation::Instrumentation::kFieldWritten:
2870 return &field_write_event_ref_count_;
2871 case instrumentation::Instrumentation::kExceptionCaught:
2872 return &exception_catch_event_ref_count_;
2873 default:
2874 return nullptr;
2875 }
2876}
2877
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002878// Process request while all mutator threads are suspended.
2879void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002880 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002881 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002882 case DeoptimizationRequest::kNothing:
2883 LOG(WARNING) << "Ignoring empty deoptimization request.";
2884 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002885 case DeoptimizationRequest::kRegisterForEvent:
2886 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002887 request.InstrumentationEvent());
2888 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
2889 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002890 break;
2891 case DeoptimizationRequest::kUnregisterForEvent:
2892 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002893 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002894 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002895 request.InstrumentationEvent());
2896 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002897 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002898 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002899 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002900 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002901 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002902 break;
2903 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002904 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002905 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002906 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002907 break;
2908 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002909 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
2910 instrumentation->Deoptimize(request.Method());
2911 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002912 break;
2913 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002914 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
2915 instrumentation->Undeoptimize(request.Method());
2916 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002917 break;
2918 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002919 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002920 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002921 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002922}
2923
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002924void Dbg::DelayFullUndeoptimization() {
2925 MutexLock mu(Thread::Current(), *deoptimization_lock_);
2926 ++delayed_full_undeoptimization_count_;
2927 DCHECK_LE(delayed_full_undeoptimization_count_, full_deoptimization_event_count_);
2928}
2929
2930void Dbg::ProcessDelayedFullUndeoptimizations() {
2931 // TODO: avoid taking the lock twice (once here and once in ManageDeoptimization).
2932 {
2933 MutexLock mu(Thread::Current(), *deoptimization_lock_);
2934 while (delayed_full_undeoptimization_count_ > 0) {
2935 DeoptimizationRequest req;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002936 req.SetKind(DeoptimizationRequest::kFullUndeoptimization);
2937 req.SetMethod(nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002938 RequestDeoptimizationLocked(req);
2939 --delayed_full_undeoptimization_count_;
2940 }
2941 }
2942 ManageDeoptimization();
2943}
2944
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002945void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002946 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002947 // Nothing to do.
2948 return;
2949 }
2950 MutexLock mu(Thread::Current(), *deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002951 RequestDeoptimizationLocked(req);
2952}
2953
2954void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002955 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002956 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002957 DCHECK_NE(req.InstrumentationEvent(), 0u);
2958 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002959 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002960 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002961 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02002962 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002963 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002964 deoptimization_requests_.push_back(req);
2965 }
2966 *counter = *counter + 1;
2967 break;
2968 }
2969 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002970 DCHECK_NE(req.InstrumentationEvent(), 0u);
2971 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002972 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002973 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002974 *counter = *counter - 1;
2975 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02002976 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002977 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002978 deoptimization_requests_.push_back(req);
2979 }
2980 break;
2981 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002982 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002983 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002984 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002985 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2986 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002987 deoptimization_requests_.push_back(req);
2988 }
2989 ++full_deoptimization_event_count_;
2990 break;
2991 }
2992 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002993 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02002994 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002995 --full_deoptimization_event_count_;
2996 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002997 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2998 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002999 deoptimization_requests_.push_back(req);
3000 }
3001 break;
3002 }
3003 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003004 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003005 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003006 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003007 deoptimization_requests_.push_back(req);
3008 break;
3009 }
3010 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003011 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003012 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003013 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003014 deoptimization_requests_.push_back(req);
3015 break;
3016 }
3017 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003018 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003019 break;
3020 }
3021 }
3022}
3023
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003024void Dbg::ManageDeoptimization() {
3025 Thread* const self = Thread::Current();
3026 {
3027 // Avoid suspend/resume if there is no pending request.
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003028 MutexLock mu(self, *deoptimization_lock_);
3029 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003030 return;
3031 }
3032 }
3033 CHECK_EQ(self->GetState(), kRunnable);
3034 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3035 // We need to suspend mutator threads first.
3036 Runtime* const runtime = Runtime::Current();
3037 runtime->GetThreadList()->SuspendAll();
3038 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003039 {
3040 MutexLock mu(self, *deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003041 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003042 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003043 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003044 ProcessDeoptimizationRequest(request);
3045 }
3046 deoptimization_requests_.clear();
3047 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003048 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3049 runtime->GetThreadList()->ResumeAll();
3050 self->TransitionFromSuspendedToRunnable();
3051}
3052
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003053static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3054 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003055 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003056 if (code_item == nullptr) {
3057 // TODO We should not be asked to watch location in a native or abstract method so the code item
3058 // should never be null. We could just check we never encounter this case.
3059 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003060 }
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003061 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003062 mirror::Class* declaring_class = m->GetDeclaringClass();
3063 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3064 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003065 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Mathieu Chartierbf99f772014-08-23 16:37:27 -07003066 verifier::MethodVerifier verifier(dex_cache->GetDexFile(), dex_cache, class_loader,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003067 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method,
Ian Rogers46960fe2014-05-23 10:43:43 -07003068 m->GetAccessFlags(), false, true, false);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003069 // Note: we don't need to verify the method.
3070 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3071}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003072
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003073static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003074 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003075 for (Breakpoint& breakpoint : gBreakpoints) {
3076 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003077 return &breakpoint;
3078 }
3079 }
3080 return nullptr;
3081}
3082
3083// Sanity checks all existing breakpoints on the same method.
3084static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m, bool need_full_deoptimization)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003085 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003086 if (kIsDebugBuild) {
3087 for (const Breakpoint& breakpoint : gBreakpoints) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003088 CHECK_EQ(need_full_deoptimization, breakpoint.NeedFullDeoptimization());
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003089 }
3090 if (need_full_deoptimization) {
3091 // We should have deoptimized everything but not "selectively" deoptimized this method.
3092 CHECK(Runtime::Current()->GetInstrumentation()->AreAllMethodsDeoptimized());
3093 CHECK(!Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3094 } else {
3095 // We should have "selectively" deoptimized this method.
3096 // Note: while we have not deoptimized everything for this method, we may have done it for
3097 // another event.
3098 CHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3099 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003100 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003101}
3102
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003103// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3104// request if we need to deoptimize.
3105void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3106 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003107 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003108 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003109
Sebastien Hertzed2be172014-08-19 15:33:43 +02003110 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003111 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3112 bool need_full_deoptimization;
3113 if (existing_breakpoint == nullptr) {
3114 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3115 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3116 need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3117 if (need_full_deoptimization) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003118 req->SetKind(DeoptimizationRequest::kFullDeoptimization);
3119 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003120 } else {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003121 req->SetKind(DeoptimizationRequest::kSelectiveDeoptimization);
3122 req->SetMethod(m);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003123 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003124 } else {
3125 // There is at least one breakpoint for this method: we don't need to deoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003126 req->SetKind(DeoptimizationRequest::kNothing);
3127 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003128
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003129 need_full_deoptimization = existing_breakpoint->NeedFullDeoptimization();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003130 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003131 }
3132
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003133 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, need_full_deoptimization));
3134 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3135 << gBreakpoints[gBreakpoints.size() - 1];
3136}
3137
3138// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3139// request if we need to undeoptimize.
3140void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003141 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003142 mirror::ArtMethod* m = FromMethodId(location->method_id);
3143 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003144 bool need_full_deoptimization = false;
3145 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003146 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003147 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003148 need_full_deoptimization = gBreakpoints[i].NeedFullDeoptimization();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003149 DCHECK_NE(need_full_deoptimization, Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3150 gBreakpoints.erase(gBreakpoints.begin() + i);
3151 break;
3152 }
3153 }
3154 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3155 if (existing_breakpoint == nullptr) {
3156 // There is no more breakpoint on this method: we need to undeoptimize.
3157 if (need_full_deoptimization) {
3158 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003159 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3160 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003161 } else {
3162 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003163 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3164 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003165 }
3166 } else {
3167 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003168 req->SetKind(DeoptimizationRequest::kNothing);
3169 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003170 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
Elliott Hughes86964332012-02-15 19:37:42 -08003171 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003172}
3173
Jeff Hao449db332013-04-12 18:30:52 -07003174// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3175// cause suspension if the thread is the current thread.
3176class ScopedThreadSuspension {
3177 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003178 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003179 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003180 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003181 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003182 error_(JDWP::ERR_NONE),
3183 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003184 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003185 ScopedObjectAccessUnchecked soa(self);
3186 {
3187 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003188 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003189 }
3190 if (error_ == JDWP::ERR_NONE) {
3191 if (thread_ == soa.Self()) {
3192 self_suspend_ = true;
3193 } else {
3194 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
3195 jobject thread_peer = gRegistry->GetJObject(thread_id);
3196 bool timed_out;
Ian Rogersf3d874c2014-07-17 18:52:42 -07003197 Thread* suspended_thread;
3198 {
3199 // Take suspend thread lock to avoid races with threads trying to suspend this one.
3200 MutexLock mu(soa.Self(), *Locks::thread_list_suspend_thread_lock_);
Brian Carlstromba32de42014-08-27 23:43:46 -07003201 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3202 suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true, &timed_out);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003203 }
Jeff Hao449db332013-04-12 18:30:52 -07003204 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003205 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003206 // Thread terminated from under us while suspending.
3207 error_ = JDWP::ERR_INVALID_THREAD;
3208 } else {
3209 CHECK_EQ(suspended_thread, thread_);
3210 other_suspend_ = true;
3211 }
3212 }
3213 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003214 }
Elliott Hughes86964332012-02-15 19:37:42 -08003215
Jeff Hao449db332013-04-12 18:30:52 -07003216 Thread* GetThread() const {
3217 return thread_;
3218 }
3219
3220 JDWP::JdwpError GetError() const {
3221 return error_;
3222 }
3223
3224 ~ScopedThreadSuspension() {
3225 if (other_suspend_) {
3226 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3227 }
3228 }
3229
3230 private:
3231 Thread* thread_;
3232 JDWP::JdwpError error_;
3233 bool self_suspend_;
3234 bool other_suspend_;
3235};
3236
3237JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3238 JDWP::JdwpStepDepth step_depth) {
3239 Thread* self = Thread::Current();
3240 ScopedThreadSuspension sts(self, thread_id);
3241 if (sts.GetError() != JDWP::ERR_NONE) {
3242 return sts.GetError();
3243 }
3244
Elliott Hughes2435a572012-02-17 16:07:41 -08003245 //
3246 // Work out what Method* we're in, the current line number, and how deep the stack currently
3247 // is for step-out.
3248 //
3249
Ian Rogers0399dde2012-06-06 17:09:28 -07003250 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003251 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
3252 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003253 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07003254 : StackVisitor(thread, nullptr), single_step_control_(single_step_control),
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003255 line_number_(line_number) {
3256 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
Ian Rogersc0542af2014-09-03 16:16:56 -07003257 single_step_control_->method = nullptr;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003258 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08003259 }
Ian Rogersca190662012-06-26 15:45:57 -07003260
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003261 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3262 // annotalysis.
3263 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003264 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003265 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003266 ++single_step_control_->stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -07003267 if (single_step_control_->method == nullptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003268 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003269 single_step_control_->method = m;
3270 *line_number_ = -1;
Ian Rogersc0542af2014-09-03 16:16:56 -07003271 if (dex_cache != nullptr) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003272 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003273 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003274 }
Elliott Hughes86964332012-02-15 19:37:42 -08003275 }
3276 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003277 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003278 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003279
3280 SingleStepControl* const single_step_control_;
3281 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08003282 };
Jeff Hao449db332013-04-12 18:30:52 -07003283
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003284 Thread* const thread = sts.GetThread();
3285 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
3286 DCHECK(single_step_control != nullptr);
3287 int32_t line_number = -1;
3288 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07003289 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003290
Elliott Hughes2435a572012-02-17 16:07:41 -08003291 //
3292 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
3293 //
3294
3295 struct DebugCallbackContext {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003296 explicit DebugCallbackContext(SingleStepControl* single_step_control, int32_t line_number,
3297 const DexFile::CodeItem* code_item)
3298 : single_step_control_(single_step_control), line_number_(line_number), code_item_(code_item),
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003299 last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003300 }
3301
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003302 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003303 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003304 if (static_cast<int32_t>(line_number) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003305 if (!context->last_pc_valid) {
3306 // Everything from this address until the next line change is ours.
3307 context->last_pc = address;
3308 context->last_pc_valid = true;
3309 }
3310 // Otherwise, if we're already in a valid range for this line,
3311 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003312 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003313 // Add everything from the last entry up until here to the set
3314 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003315 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003316 }
3317 context->last_pc_valid = false;
3318 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003319 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003320 }
3321
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003322 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003323 // If the line number was the last in the position table...
3324 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003325 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003326 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003327 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003328 }
3329 }
3330 }
3331
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003332 SingleStepControl* const single_step_control_;
3333 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003334 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003335 bool last_pc_valid;
3336 uint32_t last_pc;
3337 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003338 single_step_control->dex_pcs.clear();
Ian Rogersef7d42f2014-01-06 12:55:46 -08003339 mirror::ArtMethod* m = single_step_control->method;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003340 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003341 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003342 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003343 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07003344 DebugCallbackContext::Callback, nullptr, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003345 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003346
3347 //
3348 // Everything else...
3349 //
3350
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003351 single_step_control->step_size = step_size;
3352 single_step_control->step_depth = step_depth;
3353 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08003354
Elliott Hughes2435a572012-02-17 16:07:41 -08003355 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003356 VLOG(jdwp) << "Single-step thread: " << *thread;
3357 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
3358 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
3359 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
3360 VLOG(jdwp) << "Single-step current line: " << line_number;
3361 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08003362 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003363 for (uint32_t dex_pc : single_step_control->dex_pcs) {
3364 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003365 }
3366 }
3367
3368 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003369}
3370
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003371void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3372 ScopedObjectAccessUnchecked soa(Thread::Current());
3373 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003374 JDWP::JdwpError error;
3375 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003376 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003377 SingleStepControl* single_step_control = thread->GetSingleStepControl();
3378 DCHECK(single_step_control != nullptr);
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003379 single_step_control->Clear();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003380 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003381}
3382
Elliott Hughes45651fd2012-02-21 15:48:20 -08003383static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3384 switch (tag) {
3385 default:
3386 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
3387
3388 // Primitives.
3389 case JDWP::JT_BYTE: return 'B';
3390 case JDWP::JT_CHAR: return 'C';
3391 case JDWP::JT_FLOAT: return 'F';
3392 case JDWP::JT_DOUBLE: return 'D';
3393 case JDWP::JT_INT: return 'I';
3394 case JDWP::JT_LONG: return 'J';
3395 case JDWP::JT_SHORT: return 'S';
3396 case JDWP::JT_VOID: return 'V';
3397 case JDWP::JT_BOOLEAN: return 'Z';
3398
3399 // Reference types.
3400 case JDWP::JT_ARRAY:
3401 case JDWP::JT_OBJECT:
3402 case JDWP::JT_STRING:
3403 case JDWP::JT_THREAD:
3404 case JDWP::JT_THREAD_GROUP:
3405 case JDWP::JT_CLASS_LOADER:
3406 case JDWP::JT_CLASS_OBJECT:
3407 return 'L';
3408 }
3409}
3410
Elliott Hughes88d63092013-01-09 09:55:54 -08003411JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3412 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003413 uint32_t arg_count, uint64_t* arg_values,
3414 JDWP::JdwpTag* arg_types, uint32_t options,
3415 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3416 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003417 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3418
Ian Rogersc0542af2014-09-03 16:16:56 -07003419 Thread* targetThread = nullptr;
3420 DebugInvokeReq* req = nullptr;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003421 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003422 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003423 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003424 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003425 JDWP::JdwpError error;
3426 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003427 if (error != JDWP::ERR_NONE) {
3428 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3429 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003430 }
3431 req = targetThread->GetInvokeReq();
3432 if (!req->ready) {
3433 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3434 return JDWP::ERR_INVALID_THREAD;
3435 }
3436
3437 /*
3438 * We currently have a bug where we don't successfully resume the
3439 * target thread if the suspend count is too deep. We're expected to
3440 * require one "resume" for each "suspend", but when asked to execute
3441 * a method we have to resume fully and then re-suspend it back to the
3442 * same level. (The easiest way to cause this is to type "suspend"
3443 * multiple times in jdb.)
3444 *
3445 * It's unclear what this means when the event specifies "resume all"
3446 * and some threads are suspended more deeply than others. This is
3447 * a rare problem, so for now we just prevent it from hanging forever
3448 * by rejecting the method invocation request. Without this, we will
3449 * be stuck waiting on a suspended thread.
3450 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003451 int suspend_count;
3452 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003453 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003454 suspend_count = targetThread->GetSuspendCount();
3455 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003456 if (suspend_count > 1) {
3457 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003458 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003459 }
3460
Ian Rogersc0542af2014-09-03 16:16:56 -07003461 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3462 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003463 return JDWP::ERR_INVALID_OBJECT;
3464 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003465
Ian Rogersc0542af2014-09-03 16:16:56 -07003466 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id, &error);
3467 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003468 return JDWP::ERR_INVALID_OBJECT;
3469 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003470 // TODO: check that 'thread' is actually a java.lang.Thread!
3471
Ian Rogersc0542af2014-09-03 16:16:56 -07003472 mirror::Class* c = DecodeClass(class_id, &error);
3473 if (c == nullptr) {
3474 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003475 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003476
Brian Carlstromea46f952013-07-30 01:26:50 -07003477 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003478 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003479 return JDWP::ERR_INVALID_METHODID;
3480 }
3481 if (m->IsStatic()) {
3482 if (m->GetDeclaringClass() != c) {
3483 return JDWP::ERR_INVALID_METHODID;
3484 }
3485 } else {
3486 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3487 return JDWP::ERR_INVALID_METHODID;
3488 }
3489 }
3490
3491 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003492 uint32_t shorty_len = 0;
3493 const char* shorty = m->GetShorty(&shorty_len);
3494 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003495 return JDWP::ERR_ILLEGAL_ARGUMENT;
3496 }
Elliott Hughes09201632013-04-15 15:50:07 -07003497
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003498 {
3499 StackHandleScope<3> hs(soa.Self());
3500 MethodHelper mh(hs.NewHandle(m));
3501 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3502 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3503 const DexFile::TypeList* types = m->GetParameterTypeList();
3504 for (size_t i = 0; i < arg_count; ++i) {
3505 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003506 return JDWP::ERR_ILLEGAL_ARGUMENT;
3507 }
3508
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003509 if (shorty[i + 1] == 'L') {
3510 // Did we really get an argument of an appropriate reference type?
3511 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003512 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
3513 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003514 return JDWP::ERR_INVALID_OBJECT;
3515 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003516 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003517 return JDWP::ERR_ILLEGAL_ARGUMENT;
3518 }
3519
3520 // Turn the on-the-wire ObjectId into a jobject.
3521 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3522 v.l = gRegistry->GetJObject(arg_values[i]);
3523 }
Elliott Hughes09201632013-04-15 15:50:07 -07003524 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003525 // Update in case it moved.
3526 m = mh.GetMethod();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003527 }
3528
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003529 req->receiver = receiver;
3530 req->thread = thread;
3531 req->klass = c;
3532 req->method = m;
3533 req->arg_count = arg_count;
3534 req->arg_values = arg_values;
3535 req->options = options;
3536 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003537 }
3538
3539 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3540 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3541 // call, and it's unwise to hold it during WaitForSuspend.
3542
3543 {
3544 /*
3545 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003546 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003547 * run out of memory. It's also a good idea to change it before locking
3548 * the invokeReq mutex, although that should never be held for long.
3549 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003550 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003551
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003552 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003553 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003554 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003555
3556 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003557 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003558 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003559 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003560 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003561 thread_list->Resume(targetThread, true);
3562 }
3563
3564 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003565 while (req->invoke_needed) {
3566 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003567 }
3568 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003569 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003570
3571 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003572 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003573 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003574 }
3575
3576 /*
3577 * Suspend the threads. We waited for the target thread to suspend
3578 * itself, so all we need to do is suspend the others.
3579 *
3580 * The suspendAllThreads() call will double-suspend the event thread,
3581 * so we want to resume the target thread once to keep the books straight.
3582 */
3583 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003584 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003585 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003586 thread_list->SuspendAllForDebugger();
3587 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003588 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003589 thread_list->Resume(targetThread, true);
3590 }
3591
3592 // Copy the result.
3593 *pResultTag = req->result_tag;
3594 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003595 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003596 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003597 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003598 }
3599 *pExceptionId = req->exception;
3600 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003601}
3602
3603void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003604 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003605
Elliott Hughes81ff3182012-03-23 20:35:56 -07003606 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003607 // to preserve that across the method invocation.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003608 StackHandleScope<4> hs(soa.Self());
3609 auto old_throw_this_object = hs.NewHandle<mirror::Object>(nullptr);
3610 auto old_throw_method = hs.NewHandle<mirror::ArtMethod>(nullptr);
3611 auto old_exception = hs.NewHandle<mirror::Throwable>(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003612 uint32_t old_throw_dex_pc;
Sebastien Hertz9f102032014-05-23 08:59:42 +02003613 bool old_exception_report_flag;
Ian Rogers62d6c772013-02-27 08:32:07 -08003614 {
3615 ThrowLocation old_throw_location;
3616 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003617 old_throw_this_object.Assign(old_throw_location.GetThis());
3618 old_throw_method.Assign(old_throw_location.GetMethod());
3619 old_exception.Assign(old_exception_obj);
Ian Rogers62d6c772013-02-27 08:32:07 -08003620 old_throw_dex_pc = old_throw_location.GetDexPc();
Sebastien Hertz9f102032014-05-23 08:59:42 +02003621 old_exception_report_flag = soa.Self()->IsExceptionReportedToInstrumentation();
Ian Rogers62d6c772013-02-27 08:32:07 -08003622 soa.Self()->ClearException();
3623 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003624
3625 // Translate the method through the vtable, unless the debugger wants to suppress it.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003626 Handle<mirror::ArtMethod> m(hs.NewHandle(pReq->method));
Ian Rogersc0542af2014-09-03 16:16:56 -07003627 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003628 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.Get());
3629 if (actual_method != m.Get()) {
3630 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get()) << " to " << PrettyMethod(actual_method);
3631 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003632 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003633 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003634 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003635 << " receiver=" << pReq->receiver
3636 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003637 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003638
3639 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3640
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003641 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.Get()),
Ian Rogers53b8b092014-03-13 23:45:53 -07003642 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003643
Ian Rogersc0542af2014-09-03 16:16:56 -07003644 mirror::Throwable* exception = soa.Self()->GetException(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003645 soa.Self()->ClearException();
3646 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003647 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003648 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003649 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3650 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003651 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003652 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3653 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003654 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003655 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003656 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003657 pReq->result_tag = new_tag;
3658 }
3659
3660 /*
3661 * Register the object. We don't actually need an ObjectId yet,
3662 * but we do need to be sure that the GC won't move or discard the
3663 * object when we switch out of RUNNING. The ObjectId conversion
3664 * will add the object to the "do not touch" list.
3665 *
3666 * We can't use the "tracked allocation" mechanism here because
3667 * the object is going to be handed off to a different thread.
3668 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003669 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003670 }
3671
Ian Rogersc0542af2014-09-03 16:16:56 -07003672 if (old_exception.Get() != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003673 ThrowLocation gc_safe_throw_location(old_throw_this_object.Get(), old_throw_method.Get(),
Ian Rogers62d6c772013-02-27 08:32:07 -08003674 old_throw_dex_pc);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003675 soa.Self()->SetException(gc_safe_throw_location, old_exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +02003676 soa.Self()->SetExceptionReportedToInstrumentation(old_exception_report_flag);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003677 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003678}
3679
Elliott Hughesd07986f2011-12-06 18:27:45 -08003680/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003681 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003682 * need to process each, accumulate the replies, and ship the whole thing
3683 * back.
3684 *
3685 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3686 * and includes the chunk type/length, followed by the data.
3687 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003688 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003689 * chunk. If this becomes inconvenient we will need to adapt.
3690 */
Ian Rogersc0542af2014-09-03 16:16:56 -07003691bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003692 Thread* self = Thread::Current();
3693 JNIEnv* env = self->GetJniEnv();
3694
Ian Rogersc0542af2014-09-03 16:16:56 -07003695 uint32_t type = request->ReadUnsigned32("type");
3696 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003697
3698 // Create a byte[] corresponding to 'request'.
Ian Rogersc0542af2014-09-03 16:16:56 -07003699 size_t request_length = request->size();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003700 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Ian Rogersc0542af2014-09-03 16:16:56 -07003701 if (dataArray.get() == nullptr) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003702 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003703 env->ExceptionClear();
3704 return false;
3705 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003706 env->SetByteArrayRegion(dataArray.get(), 0, request_length,
3707 reinterpret_cast<const jbyte*>(request->data()));
3708 request->Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003709
3710 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003711 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003712 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003713 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003714 return false;
3715 }
3716
3717 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003718 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3719 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003720 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003721 if (env->ExceptionCheck()) {
3722 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3723 env->ExceptionDescribe();
3724 env->ExceptionClear();
3725 return false;
3726 }
3727
Ian Rogersc0542af2014-09-03 16:16:56 -07003728 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003729 return false;
3730 }
3731
3732 /*
3733 * Pull the pieces out of the chunk. We copy the results into a
3734 * newly-allocated buffer that the caller can free. We don't want to
3735 * continue using the Chunk object because nothing has a reference to it.
3736 *
3737 * We could avoid this by returning type/data/offset/length and having
3738 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003739 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003740 * if we have responses for multiple chunks.
3741 *
3742 * So we're pretty much stuck with copying data around multiple times.
3743 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003744 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 -08003745 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003746 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003747 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003748
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003749 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 -07003750 if (length == 0 || replyData.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003751 return false;
3752 }
3753
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003754 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003755 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
Ian Rogersc0542af2014-09-03 16:16:56 -07003756 if (reply == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003757 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3758 return false;
3759 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003760 JDWP::Set4BE(reply + 0, type);
3761 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003762 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003763
3764 *pReplyBuf = reply;
3765 *pReplyLen = length + kChunkHdrLen;
3766
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003767 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003768 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003769}
3770
Elliott Hughesa2155262011-11-16 16:26:58 -08003771void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003772 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003773
3774 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003775 if (self->GetState() != kRunnable) {
3776 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3777 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003778 }
3779
3780 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003781 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003782 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3783 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3784 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003785 if (env->ExceptionCheck()) {
3786 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3787 env->ExceptionDescribe();
3788 env->ExceptionClear();
3789 }
3790}
3791
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003792void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003793 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003794}
3795
3796void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003797 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003798 gDdmThreadNotification = false;
3799}
3800
3801/*
Elliott Hughes82188472011-11-07 18:11:48 -08003802 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003803 *
3804 * Because we broadcast the full set of threads when the notifications are
3805 * first enabled, it's possible for "thread" to be actively executing.
3806 */
Elliott Hughes82188472011-11-07 18:11:48 -08003807void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003808 if (!gDdmThreadNotification) {
3809 return;
3810 }
3811
Elliott Hughes82188472011-11-07 18:11:48 -08003812 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003813 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003814 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003815 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003816 } else {
3817 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003818 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003819 StackHandleScope<1> hs(soa.Self());
3820 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
Ian Rogersc0542af2014-09-03 16:16:56 -07003821 size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0;
3822 const jchar* chars = (name.Get() != nullptr) ? name->GetCharArray()->GetData() : nullptr;
Elliott Hughes82188472011-11-07 18:11:48 -08003823
Elliott Hughes21f32d72011-11-09 17:44:13 -08003824 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003825 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003826 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003827 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3828 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003829 }
3830}
3831
Elliott Hughes47fce012011-10-25 18:37:19 -07003832void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003833 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003834 gDdmThreadNotification = enable;
3835 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003836 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3837 // see a suspension in progress and block until that ends. They then post their own start
3838 // notification.
3839 SuspendVM();
3840 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003841 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003842 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003843 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003844 threads = Runtime::Current()->GetThreadList()->GetList();
3845 }
3846 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003847 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003848 for (Thread* thread : threads) {
3849 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003850 }
3851 }
3852 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003853 }
3854}
3855
Elliott Hughesa2155262011-11-16 16:26:58 -08003856void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003857 if (IsDebuggerActive()) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07003858 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08003859 JDWP::ObjectId id = gRegistry->Add(t->GetPeer());
Elliott Hughes82188472011-11-07 18:11:48 -08003860 gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003861 }
Elliott Hughes82188472011-11-07 18:11:48 -08003862 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003863}
3864
3865void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003866 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003867}
3868
3869void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003870 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003871}
3872
Elliott Hughes82188472011-11-07 18:11:48 -08003873void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Ian Rogersc0542af2014-09-03 16:16:56 -07003874 CHECK(buf != nullptr);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003875 iovec vec[1];
3876 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3877 vec[0].iov_len = byte_count;
3878 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003879}
3880
Elliott Hughes21f32d72011-11-09 17:44:13 -08003881void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3882 DdmSendChunk(type, bytes.size(), &bytes[0]);
3883}
3884
Brian Carlstromf5293522013-07-19 00:24:00 -07003885void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Ian Rogersc0542af2014-09-03 16:16:56 -07003886 if (gJdwpState == nullptr) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003887 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003888 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003889 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003890 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003891}
3892
Elliott Hughes767a1472011-10-26 18:49:02 -07003893int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3894 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003895 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003896 return true;
3897 }
3898
3899 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
3900 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
3901 return false;
3902 }
3903
3904 gDdmHpifWhen = when;
3905 return true;
3906}
3907
3908bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
3909 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
3910 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
3911 return false;
3912 }
3913
3914 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
3915 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
3916 return false;
3917 }
3918
3919 if (native) {
3920 gDdmNhsgWhen = when;
3921 gDdmNhsgWhat = what;
3922 } else {
3923 gDdmHpsgWhen = when;
3924 gDdmHpsgWhat = what;
3925 }
3926 return true;
3927}
3928
Elliott Hughes7162ad92011-10-27 14:08:42 -07003929void Dbg::DdmSendHeapInfo(HpifWhen reason) {
3930 // If there's a one-shot 'when', reset it.
3931 if (reason == gDdmHpifWhen) {
3932 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
3933 gDdmHpifWhen = HPIF_WHEN_NEVER;
3934 }
3935 }
3936
3937 /*
3938 * Chunk HPIF (client --> server)
3939 *
3940 * Heap Info. General information about the heap,
3941 * suitable for a summary display.
3942 *
3943 * [u4]: number of heaps
3944 *
3945 * For each heap:
3946 * [u4]: heap ID
3947 * [u8]: timestamp in ms since Unix epoch
3948 * [u1]: capture reason (same as 'when' value from server)
3949 * [u4]: max heap size in bytes (-Xmx)
3950 * [u4]: current heap size in bytes
3951 * [u4]: current number of bytes allocated
3952 * [u4]: current number of objects allocated
3953 */
3954 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07003955 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08003956 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08003957 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003958 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08003959 JDWP::Append8BE(bytes, MilliTime());
3960 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003961 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
3962 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003963 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
3964 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08003965 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
3966 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07003967}
3968
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003969enum HpsgSolidity {
3970 SOLIDITY_FREE = 0,
3971 SOLIDITY_HARD = 1,
3972 SOLIDITY_SOFT = 2,
3973 SOLIDITY_WEAK = 3,
3974 SOLIDITY_PHANTOM = 4,
3975 SOLIDITY_FINALIZABLE = 5,
3976 SOLIDITY_SWEEP = 6,
3977};
3978
3979enum HpsgKind {
3980 KIND_OBJECT = 0,
3981 KIND_CLASS_OBJECT = 1,
3982 KIND_ARRAY_1 = 2,
3983 KIND_ARRAY_2 = 3,
3984 KIND_ARRAY_4 = 4,
3985 KIND_ARRAY_8 = 5,
3986 KIND_UNKNOWN = 6,
3987 KIND_NATIVE = 7,
3988};
3989
3990#define HPSG_PARTIAL (1<<7)
3991#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
3992
Ian Rogers30fab402012-01-23 15:43:46 -08003993class HeapChunkContext {
3994 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003995 // Maximum chunk size. Obtain this from the formula:
3996 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
3997 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08003998 : buf_(16384 - 16),
3999 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004000 merge_(merge),
4001 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004002 Reset();
4003 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004004 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004005 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004006 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004007 }
4008 }
4009
4010 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004011 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004012 Flush();
4013 }
4014 }
4015
Mathieu Chartier36dab362014-07-30 14:59:56 -07004016 void SetChunkOverhead(size_t chunk_overhead) {
4017 chunk_overhead_ = chunk_overhead;
4018 }
4019
4020 void ResetStartOfNextChunk() {
4021 startOfNextMemoryChunk_ = nullptr;
4022 }
4023
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004024 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004025 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004026 return;
4027 }
4028
4029 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004030 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4031 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004032
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004033 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4034 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004035 // [u4]: length of piece, in allocation units
4036 // 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 -08004037 pieceLenField_ = p_;
4038 JDWP::Write4BE(&p_, 0x55555555);
4039 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004040 }
4041
Ian Rogersb726dcb2012-09-05 08:57:23 -07004042 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004043 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004044 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4045 CHECK(needHeader_);
4046 return;
4047 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004048 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004049 CHECK_LE(&buf_[0], pieceLenField_);
4050 CHECK_LE(pieceLenField_, p_);
4051 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004052
Ian Rogers30fab402012-01-23 15:43:46 -08004053 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004054 Reset();
4055 }
4056
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004057 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004058 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4059 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004060 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004061 }
4062
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004063 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004064 enum { ALLOCATION_UNIT_SIZE = 8 };
4065
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004066 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004067 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004068 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004069 totalAllocationUnits_ = 0;
4070 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004071 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004072 }
4073
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004074 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004075 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4076 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004077 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4078 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004079 if (used_bytes == 0) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004080 if (start == nullptr) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004081 // Reset for start of new heap.
Ian Rogersc0542af2014-09-03 16:16:56 -07004082 startOfNextMemoryChunk_ = nullptr;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004083 Flush();
4084 }
4085 // Only process in use memory so that free region information
4086 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08004087 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08004088 }
4089
Ian Rogers15bf2d32012-08-28 17:33:04 -07004090 /* If we're looking at the native heap, we'll just return
4091 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
4092 */
4093 bool native = type_ == CHUNK_TYPE("NHSG");
4094
Mathieu Chartier36dab362014-07-30 14:59:56 -07004095 // TODO: I'm not sure using start of next chunk works well with multiple spaces. We shouldn't
4096 // count gaps inbetween spaces as free memory.
Ian Rogersc0542af2014-09-03 16:16:56 -07004097 if (startOfNextMemoryChunk_ != nullptr) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004098 // Transmit any pending free memory. Native free memory of
4099 // over kMaxFreeLen could be because of the use of mmaps, so
4100 // don't report. If not free memory then start a new segment.
4101 bool flush = true;
4102 if (start > startOfNextMemoryChunk_) {
4103 const size_t kMaxFreeLen = 2 * kPageSize;
4104 void* freeStart = startOfNextMemoryChunk_;
4105 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07004106 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07004107 if (!native || freeLen < kMaxFreeLen) {
4108 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
4109 flush = false;
4110 }
4111 }
4112 if (flush) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004113 startOfNextMemoryChunk_ = nullptr;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004114 Flush();
4115 }
4116 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08004117 mirror::Object* obj = reinterpret_cast<mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08004118
4119 // Determine the type of this chunk.
4120 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4121 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004122 uint8_t state = ExamineObject(obj, native);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004123 AppendChunk(state, start, used_bytes + chunk_overhead_);
4124 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004125 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004126
Ian Rogers15bf2d32012-08-28 17:33:04 -07004127 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004128 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004129 // Make sure there's enough room left in the buffer.
4130 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4131 // 17 bytes for any header.
4132 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
4133 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4134 if (bytesLeft < needed) {
4135 Flush();
4136 }
4137
4138 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4139 if (bytesLeft < needed) {
4140 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4141 << needed << " bytes)";
4142 return;
4143 }
4144 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004145 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004146 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4147 totalAllocationUnits_ += length;
4148 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004149 *p_++ = state | HPSG_PARTIAL;
4150 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004151 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004152 }
Ian Rogers30fab402012-01-23 15:43:46 -08004153 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004154 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004155 }
4156
Ian Rogersef7d42f2014-01-06 12:55:46 -08004157 uint8_t ExamineObject(mirror::Object* o, bool is_native_heap)
4158 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004159 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004160 return HPSG_STATE(SOLIDITY_FREE, 0);
4161 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004162
Elliott Hughesa2155262011-11-16 16:26:58 -08004163 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004164
Elliott Hughesa2155262011-11-16 16:26:58 -08004165 // If we're looking at the native heap, we'll just return
4166 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004167 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004168 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4169 }
4170
Ian Rogers5bfa60f2012-09-02 21:17:56 -07004171 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004172 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004173 }
4174
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004175 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004176 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004177 // The object was probably just created but hasn't been initialized yet.
4178 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4179 }
4180
Mathieu Chartier590fee92013-09-13 13:46:47 -07004181 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004182 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004183 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4184 }
4185
4186 if (c->IsClassClass()) {
4187 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4188 }
4189
4190 if (c->IsArrayClass()) {
4191 if (o->IsObjectArray()) {
4192 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4193 }
4194 switch (c->GetComponentSize()) {
4195 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4196 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4197 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4198 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4199 }
4200 }
4201
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004202 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4203 }
4204
Ian Rogers30fab402012-01-23 15:43:46 -08004205 std::vector<uint8_t> buf_;
4206 uint8_t* p_;
4207 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004208 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004209 size_t totalAllocationUnits_;
4210 uint32_t type_;
4211 bool merge_;
4212 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004213 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004214
Elliott Hughesa2155262011-11-16 16:26:58 -08004215 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4216};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004217
Mathieu Chartier36dab362014-07-30 14:59:56 -07004218static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
4219 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
4220 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
4221 HeapChunkContext::HeapChunkCallback(
4222 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4223}
4224
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004225void Dbg::DdmSendHeapSegments(bool native) {
4226 Dbg::HpsgWhen when;
4227 Dbg::HpsgWhat what;
4228 if (!native) {
4229 when = gDdmHpsgWhen;
4230 what = gDdmHpsgWhat;
4231 } else {
4232 when = gDdmNhsgWhen;
4233 what = gDdmNhsgWhat;
4234 }
4235 if (when == HPSG_WHEN_NEVER) {
4236 return;
4237 }
4238
4239 // Figure out what kind of chunks we'll be sending.
4240 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
4241
4242 // First, send a heap start chunk.
4243 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004244 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004245 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
4246
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004247 Thread* self = Thread::Current();
4248
4249 // To allow the Walk/InspectAll() below to exclusively-lock the
4250 // mutator lock, temporarily release the shared access to the
4251 // mutator lock here by transitioning to the suspended state.
4252 Locks::mutator_lock_->AssertSharedHeld(self);
4253 self->TransitionFromRunnableToSuspended(kSuspended);
4254
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004255 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08004256 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
4257 if (native) {
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004258#ifdef USE_DLMALLOC
Ian Rogers1d54e732013-05-02 21:10:01 -07004259 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004260#else
4261 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4262#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004263 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004264 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004265 for (const auto& space : heap->GetContinuousSpaces()) {
4266 if (space->IsDlMallocSpace()) {
4267 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4268 // allocation then the first sizeof(size_t) may belong to it.
4269 context.SetChunkOverhead(sizeof(size_t));
4270 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
4271 } else if (space->IsRosAllocSpace()) {
4272 context.SetChunkOverhead(0);
4273 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
4274 } else if (space->IsBumpPointerSpace()) {
4275 context.SetChunkOverhead(0);
4276 ReaderMutexLock mu(self, *Locks::mutator_lock_);
4277 WriterMutexLock mu2(self, *Locks::heap_bitmap_lock_);
4278 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
4279 } else {
4280 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004281 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004282 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004283 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004284 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004285 context.SetChunkOverhead(0);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004286 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004287 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004288
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004289 // Shared-lock the mutator lock back.
4290 self->TransitionFromSuspendedToRunnable();
4291 Locks::mutator_lock_->AssertSharedHeld(self);
4292
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004293 // Finally, send a heap end chunk.
4294 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004295}
4296
Elliott Hughesb1a58792013-07-11 18:10:58 -07004297static size_t GetAllocTrackerMax() {
4298#ifdef HAVE_ANDROID_OS
4299 // Check whether there's a system property overriding the number of records.
4300 const char* propertyName = "dalvik.vm.allocTrackerMax";
4301 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4302 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4303 char* end;
4304 size_t value = strtoul(allocRecordMaxString, &end, 10);
4305 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004306 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4307 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004308 return kDefaultNumAllocRecords;
4309 }
4310 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004311 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4312 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004313 return kDefaultNumAllocRecords;
4314 }
4315 return value;
4316 }
4317#endif
4318 return kDefaultNumAllocRecords;
4319}
4320
Elliott Hughes545a0642011-11-08 19:10:03 -08004321void Dbg::SetAllocTrackingEnabled(bool enabled) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004322 if (enabled) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004323 {
4324 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004325 if (recent_allocation_records_ == nullptr) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004326 alloc_record_max_ = GetAllocTrackerMax();
4327 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4328 << kMaxAllocRecordStackDepth << " frames, taking "
4329 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4330 alloc_record_head_ = alloc_record_count_ = 0;
4331 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
Ian Rogersc0542af2014-09-03 16:16:56 -07004332 CHECK(recent_allocation_records_ != nullptr);
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004333 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004334 }
Ian Rogersfa824272013-11-05 16:12:57 -08004335 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004336 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08004337 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004338 {
4339 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
Mathieu Chartier4345c462014-06-27 10:20:14 -07004340 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004341 delete[] recent_allocation_records_;
Ian Rogersc0542af2014-09-03 16:16:56 -07004342 recent_allocation_records_ = nullptr;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004343 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004344 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004345 }
4346}
4347
Ian Rogers0399dde2012-06-06 17:09:28 -07004348struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08004349 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004350 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07004351 : StackVisitor(thread, nullptr), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004352
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004353 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4354 // annotalysis.
4355 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004356 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004357 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004358 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004359 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004360 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004361 record->StackElement(depth)->SetMethod(m);
4362 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004363 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004364 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004365 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004366 }
4367
4368 ~AllocRecordStackVisitor() {
4369 // Clear out any unused stack trace elements.
4370 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004371 record->StackElement(depth)->SetMethod(nullptr);
4372 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004373 }
4374 }
4375
4376 AllocRecord* record;
4377 size_t depth;
4378};
4379
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004380void Dbg::RecordAllocation(mirror::Class* type, size_t byte_count) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004381 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07004382 CHECK(self != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004383
Ian Rogers719d1a32014-03-06 12:13:39 -08004384 MutexLock mu(self, *alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004385 if (recent_allocation_records_ == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004386 return;
4387 }
4388
4389 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004390 if (++alloc_record_head_ == alloc_record_max_) {
4391 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004392 }
4393
4394 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004395 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004396 record->SetType(type);
4397 record->SetByteCount(byte_count);
4398 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004399
4400 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004401 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004402 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004403
Ian Rogers719d1a32014-03-06 12:13:39 -08004404 if (alloc_record_count_ < alloc_record_max_) {
4405 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004406 }
4407}
4408
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004409// Returns the index of the head element.
4410//
4411// We point at the most-recently-written record, so if gAllocRecordCount is 1
4412// we want to use the current element. Take "head+1" and subtract count
4413// from it.
4414//
4415// We need to handle underflow in our circular buffer, so we add
Elliott Hughesb1a58792013-07-11 18:10:58 -07004416// gAllocRecordMax and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004417size_t Dbg::HeadIndex() {
4418 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4419 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004420}
4421
4422void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004423 ScopedObjectAccess soa(Thread::Current());
Ian Rogers719d1a32014-03-06 12:13:39 -08004424 MutexLock mu(soa.Self(), *alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004425 if (recent_allocation_records_ == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004426 LOG(INFO) << "Not recording tracked allocations";
4427 return;
4428 }
4429
4430 // "i" is the head of the list. We want to start at the end of the
4431 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004432 size_t i = HeadIndex();
Ian Rogers719d1a32014-03-06 12:13:39 -08004433 size_t count = alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004434
Ian Rogers719d1a32014-03-06 12:13:39 -08004435 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004436 while (count--) {
4437 AllocRecord* record = &recent_allocation_records_[i];
4438
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004439 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4440 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004441
4442 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004443 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4444 mirror::ArtMethod* m = stack_element->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004445 if (m == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004446 break;
4447 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004448 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004449 }
4450
4451 // pause periodically to help logcat catch up
4452 if ((count % 5) == 0) {
4453 usleep(40000);
4454 }
4455
Ian Rogers719d1a32014-03-06 12:13:39 -08004456 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004457 }
4458}
4459
4460class StringTable {
4461 public:
4462 StringTable() {
4463 }
4464
Mathieu Chartier4345c462014-06-27 10:20:14 -07004465 void Add(const std::string& str) {
4466 table_.insert(str);
4467 }
4468
4469 void Add(const char* str) {
4470 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004471 }
4472
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004473 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004474 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004475 if (it == table_.end()) {
4476 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4477 }
4478 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004479 }
4480
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004481 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004482 return table_.size();
4483 }
4484
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004485 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004486 for (const std::string& str : table_) {
4487 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004488 size_t s_len = CountModifiedUtf8Chars(s);
Ian Rogers700a4022014-05-19 16:49:03 -07004489 std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004490 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4491 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004492 }
4493 }
4494
4495 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004496 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004497 DISALLOW_COPY_AND_ASSIGN(StringTable);
4498};
4499
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004500static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004501 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004502 DCHECK(method != nullptr);
4503 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004504 return (source_file != nullptr) ? source_file : "";
4505}
4506
Elliott Hughes545a0642011-11-08 19:10:03 -08004507/*
4508 * The data we send to DDMS contains everything we have recorded.
4509 *
4510 * Message header (all values big-endian):
4511 * (1b) message header len (to allow future expansion); includes itself
4512 * (1b) entry header len
4513 * (1b) stack frame len
4514 * (2b) number of entries
4515 * (4b) offset to string table from start of message
4516 * (2b) number of class name strings
4517 * (2b) number of method name strings
4518 * (2b) number of source file name strings
4519 * For each entry:
4520 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004521 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004522 * (2b) allocated object's class name index
4523 * (1b) stack depth
4524 * For each stack frame:
4525 * (2b) method's class name
4526 * (2b) method name
4527 * (2b) method source file
4528 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4529 * (xb) class name strings
4530 * (xb) method name strings
4531 * (xb) source file strings
4532 *
4533 * As with other DDM traffic, strings are sent as a 4-byte length
4534 * followed by UTF-16 data.
4535 *
4536 * We send up 16-bit unsigned indexes into string tables. In theory there
Elliott Hughesb1a58792013-07-11 18:10:58 -07004537 * can be (kMaxAllocRecordStackDepth * gAllocRecordMax) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004538 * each table, but in practice there should be far fewer.
4539 *
4540 * The chief reason for using a string table here is to keep the size of
4541 * the DDMS message to a minimum. This is partly to make the protocol
4542 * efficient, but also because we have to form the whole thing up all at
4543 * once in a memory buffer.
4544 *
4545 * We use separate string tables for class names, method names, and source
4546 * files to keep the indexes small. There will generally be no overlap
4547 * between the contents of these tables.
4548 */
4549jbyteArray Dbg::GetRecentAllocations() {
4550 if (false) {
4551 DumpRecentAllocations();
4552 }
4553
Ian Rogers50b35e22012-10-04 10:09:15 -07004554 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004555 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004556 {
Ian Rogers719d1a32014-03-06 12:13:39 -08004557 MutexLock mu(self, *alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004558 //
4559 // Part 1: generate string tables.
4560 //
4561 StringTable class_names;
4562 StringTable method_names;
4563 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004564
Ian Rogers719d1a32014-03-06 12:13:39 -08004565 int count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004566 int idx = HeadIndex();
4567 while (count--) {
4568 AllocRecord* record = &recent_allocation_records_[idx];
Ian Rogers1ff3c982014-08-12 02:30:58 -07004569 std::string temp;
4570 class_names.Add(record->Type()->GetDescriptor(&temp));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004571 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004572 mirror::ArtMethod* m = record->StackElement(i)->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004573 if (m != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004574 class_names.Add(m->GetDeclaringClassDescriptor());
4575 method_names.Add(m->GetName());
4576 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004577 }
4578 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004579
Ian Rogers719d1a32014-03-06 12:13:39 -08004580 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004581 }
4582
Ian Rogers719d1a32014-03-06 12:13:39 -08004583 LOG(INFO) << "allocation records: " << alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004584
4585 //
4586 // Part 2: Generate the output and store it in the buffer.
4587 //
4588
4589 // (1b) message header len (to allow future expansion); includes itself
4590 // (1b) entry header len
4591 // (1b) stack frame len
4592 const int kMessageHeaderLen = 15;
4593 const int kEntryHeaderLen = 9;
4594 const int kStackFrameLen = 8;
4595 JDWP::Append1BE(bytes, kMessageHeaderLen);
4596 JDWP::Append1BE(bytes, kEntryHeaderLen);
4597 JDWP::Append1BE(bytes, kStackFrameLen);
4598
4599 // (2b) number of entries
4600 // (4b) offset to string table from start of message
4601 // (2b) number of class name strings
4602 // (2b) number of method name strings
4603 // (2b) number of source file name strings
Ian Rogers719d1a32014-03-06 12:13:39 -08004604 JDWP::Append2BE(bytes, alloc_record_count_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004605 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004606 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004607 JDWP::Append2BE(bytes, class_names.Size());
4608 JDWP::Append2BE(bytes, method_names.Size());
4609 JDWP::Append2BE(bytes, filenames.Size());
4610
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004611 idx = HeadIndex();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004612 std::string temp;
4613 for (count = alloc_record_count_; count != 0; --count) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004614 // For each entry:
4615 // (4b) total allocation size
4616 // (2b) thread id
4617 // (2b) allocated object's class name index
4618 // (1b) stack depth
4619 AllocRecord* record = &recent_allocation_records_[idx];
4620 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004621 size_t allocated_object_class_name_index =
Ian Rogers1ff3c982014-08-12 02:30:58 -07004622 class_names.IndexOf(record->Type()->GetDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004623 JDWP::Append4BE(bytes, record->ByteCount());
4624 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004625 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4626 JDWP::Append1BE(bytes, stack_depth);
4627
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004628 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4629 // For each stack frame:
4630 // (2b) method's class name
4631 // (2b) method name
4632 // (2b) method source file
4633 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004634 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004635 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4636 size_t method_name_index = method_names.IndexOf(m->GetName());
4637 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004638 JDWP::Append2BE(bytes, class_name_index);
4639 JDWP::Append2BE(bytes, method_name_index);
4640 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004641 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004642 }
Ian Rogers719d1a32014-03-06 12:13:39 -08004643 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004644 }
4645
4646 // (xb) class name strings
4647 // (xb) method name strings
4648 // (xb) source file strings
4649 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4650 class_names.WriteTo(bytes);
4651 method_names.WriteTo(bytes);
4652 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004653 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004654 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004655 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07004656 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004657 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4658 }
4659 return result;
4660}
4661
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07004662mirror::ArtMethod* DeoptimizationRequest::Method() const {
4663 ScopedObjectAccessUnchecked soa(Thread::Current());
4664 return soa.DecodeMethod(method_);
4665}
4666
4667void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
4668 ScopedObjectAccessUnchecked soa(Thread::Current());
4669 method_ = soa.EncodeMethod(m);
4670}
4671
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004672} // namespace art