blob: 6161aff6479c5745ba732195629f8de144cc69b6 [file] [log] [blame]
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "debugger.h"
18
Elliott Hughes3bb81562011-10-21 18:52:59 -070019#include <sys/uio.h>
20
Elliott Hughes545a0642011-11-08 19:10:03 -080021#include <set>
22
Ian Rogers166db042013-07-26 12:05:57 -070023#include "arch/context.h"
Elliott Hughes545a0642011-11-08 19:10:03 -080024#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070026#include "dex_file-inl.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070027#include "dex_instruction.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070028#include "gc/accounting/card_table-inl.h"
29#include "gc/space/large_object_space.h"
30#include "gc/space/space-inl.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070031#include "handle_scope.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080032#include "jdwp/object_registry.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070033#include "mirror/art_field-inl.h"
34#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035#include "mirror/class.h"
36#include "mirror/class-inl.h"
37#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038#include "mirror/object-inl.h"
39#include "mirror/object_array-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070040#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080041#include "mirror/throwable.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080042#include "object_utils.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010043#include "quick/inline_method_analyser.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070044#include "reflection.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070045#include "safe_map.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080046#include "scoped_thread_state_change.h"
Elliott Hughes6a5bd492011-10-28 14:33:57 -070047#include "ScopedLocalRef.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070048#include "ScopedPrimitiveArray.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070049#include "handle_scope-inl.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070050#include "thread_list.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080051#include "throw_location.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080052#include "utf.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010053#include "verifier/method_verifier-inl.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070054#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070055
Brian Carlstrom3d92d522013-07-12 09:03:08 -070056#ifdef HAVE_ANDROID_OS
57#include "cutils/properties.h"
58#endif
59
Elliott Hughes872d4ec2011-10-21 17:07:15 -070060namespace art {
61
Brian Carlstrom7934ac22013-07-26 10:54:15 -070062static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
63static const size_t kDefaultNumAllocRecords = 64*1024; // Must be a power of 2.
Elliott Hughes475fc232011-10-25 15:00:35 -070064
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070065class AllocRecordStackTraceElement {
66 public:
67 AllocRecordStackTraceElement() : method_(nullptr), dex_pc_(0) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080068 }
69
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070070 int32_t LineNumber() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
71 mirror::ArtMethod* method = Method();
72 DCHECK(method != nullptr);
73 return method->GetLineNumFromDexPC(DexPc());
Elliott Hughes545a0642011-11-08 19:10:03 -080074 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070075
76 mirror::ArtMethod* Method() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -070077 ScopedObjectAccessUnchecked soa(Thread::Current());
78 return soa.DecodeMethod(method_);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070079 }
80
81 void SetMethod(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
82 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4345c462014-06-27 10:20:14 -070083 method_ = soa.EncodeMethod(m);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070084 }
85
86 uint32_t DexPc() const {
87 return dex_pc_;
88 }
89
90 void SetDexPc(uint32_t pc) {
91 dex_pc_ = pc;
92 }
93
94 private:
Mathieu Chartier4345c462014-06-27 10:20:14 -070095 jmethodID method_;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070096 uint32_t dex_pc_;
Elliott Hughes545a0642011-11-08 19:10:03 -080097};
98
Mathieu Chartier4345c462014-06-27 10:20:14 -070099jobject Dbg::TypeCache::Add(mirror::Class* t) {
100 ScopedObjectAccessUnchecked soa(Thread::Current());
101 int32_t hash_code = t->IdentityHashCode();
102 auto range = objects_.equal_range(hash_code);
103 for (auto it = range.first; it != range.second; ++it) {
104 if (soa.Decode<mirror::Class*>(it->second) == t) {
105 // Found a matching weak global, return it.
106 return it->second;
107 }
108 }
109 JNIEnv* env = soa.Env();
110 const jobject local_ref = soa.AddLocalReference<jobject>(t);
111 const jobject weak_global = env->NewWeakGlobalRef(local_ref);
112 env->DeleteLocalRef(local_ref);
113 objects_.insert(std::make_pair(hash_code, weak_global));
114 return weak_global;
115}
116
117void Dbg::TypeCache::Clear() {
118 ScopedObjectAccess soa(Thread::Current());
119 for (const auto& p : objects_) {
120 soa.Vm()->DeleteWeakGlobalRef(soa.Self(), p.second);
121 }
122 objects_.clear();
123}
124
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700125class AllocRecord {
126 public:
127 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -0800128
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700129 mirror::Class* Type() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700130 return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700131 }
132
133 void SetType(mirror::Class* t) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700134 type_ = Dbg::GetTypeCache().Add(t);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700135 }
136
137 size_t GetDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800138 size_t depth = 0;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700139 while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != NULL) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800140 ++depth;
141 }
142 return depth;
143 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800144
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700145 size_t ByteCount() const {
146 return byte_count_;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800147 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700148
149 void SetByteCount(size_t count) {
150 byte_count_ = count;
151 }
152
153 uint16_t ThinLockId() const {
154 return thin_lock_id_;
155 }
156
157 void SetThinLockId(uint16_t id) {
158 thin_lock_id_ = id;
159 }
160
161 AllocRecordStackTraceElement* StackElement(size_t index) {
162 DCHECK_LT(index, kMaxAllocRecordStackDepth);
163 return &stack_[index];
164 }
165
166 private:
167 jobject type_; // This is a weak global.
168 size_t byte_count_;
169 uint16_t thin_lock_id_;
170 AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth]; // Unused entries have NULL method.
Elliott Hughes545a0642011-11-08 19:10:03 -0800171};
172
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700173class Breakpoint {
174 public:
175 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc, bool need_full_deoptimization)
176 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
177 : method_(nullptr), dex_pc_(dex_pc), need_full_deoptimization_(need_full_deoptimization) {
178 ScopedObjectAccessUnchecked soa(Thread::Current());
179 method_ = soa.EncodeMethod(method);
180 }
181
182 Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
183 : method_(nullptr), dex_pc_(other.dex_pc_),
184 need_full_deoptimization_(other.need_full_deoptimization_) {
185 ScopedObjectAccessUnchecked soa(Thread::Current());
186 method_ = soa.EncodeMethod(other.Method());
187 }
188
189 mirror::ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
190 ScopedObjectAccessUnchecked soa(Thread::Current());
191 return soa.DecodeMethod(method_);
192 }
193
194 uint32_t DexPc() const {
195 return dex_pc_;
196 }
197
198 bool NeedFullDeoptimization() const {
199 return need_full_deoptimization_;
200 }
201
202 private:
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100203 // The location of this breakpoint.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700204 jmethodID method_;
205 uint32_t dex_pc_;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100206
207 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700208 bool need_full_deoptimization_;
Elliott Hughes86964332012-02-15 19:37:42 -0800209};
210
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700211static std::ostream& operator<<(std::ostream& os, Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700212 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700213 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
Elliott Hughes86964332012-02-15 19:37:42 -0800214 return os;
215}
216
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200217class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800218 public:
219 DebugInstrumentationListener() {}
220 virtual ~DebugInstrumentationListener() {}
221
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200222 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
223 uint32_t dex_pc)
224 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800225 if (method->IsNative()) {
226 // TODO: post location events is a suspension point and native method entry stubs aren't.
227 return;
228 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100229 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800230 }
231
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200232 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
233 uint32_t dex_pc, const JValue& return_value)
234 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800235 if (method->IsNative()) {
236 // TODO: post location events is a suspension point and native method entry stubs aren't.
237 return;
238 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100239 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800240 }
241
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200242 void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
243 uint32_t dex_pc)
244 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800245 // We're not recorded to listen to this kind of event, so complain.
246 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100247 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800248 }
249
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200250 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
251 uint32_t new_dex_pc)
252 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz8379b222014-02-24 17:38:15 +0100253 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800254 }
255
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200256 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
257 uint32_t dex_pc, mirror::ArtField* field)
258 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
259 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800260 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200261
262 void FieldWritten(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
263 uint32_t dex_pc, mirror::ArtField* field, const JValue& field_value)
264 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
265 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
266 }
267
268 void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
269 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
270 mirror::Throwable* exception_object)
271 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
272 Dbg::PostException(throw_location, catch_method, catch_dex_pc, exception_object);
273 }
274
275 private:
276 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800277} gDebugInstrumentationListener;
278
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700279// JDWP is allowed unless the Zygote forbids it.
280static bool gJdwpAllowed = true;
281
Elliott Hughesc0f09332012-03-26 13:27:06 -0700282// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700283static bool gJdwpConfigured = false;
284
Elliott Hughesc0f09332012-03-26 13:27:06 -0700285// Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.)
Elliott Hughes376a7a02011-10-24 18:35:55 -0700286static JDWP::JdwpOptions gJdwpOptions;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700287
288// Runtime JDWP state.
289static JDWP::JdwpState* gJdwpState = NULL;
290static bool gDebuggerConnected; // debugger or DDMS is connected.
291static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800292static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700293
Elliott Hughes47fce012011-10-25 18:37:19 -0700294static bool gDdmThreadNotification = false;
295
Elliott Hughes767a1472011-10-26 18:49:02 -0700296// DDMS GC-related settings.
297static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
298static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
299static Dbg::HpsgWhat gDdmHpsgWhat;
300static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
301static Dbg::HpsgWhat gDdmNhsgWhat;
302
Ian Rogers719d1a32014-03-06 12:13:39 -0800303static ObjectRegistry* gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700304
Elliott Hughes545a0642011-11-08 19:10:03 -0800305// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800306Mutex* Dbg::alloc_tracker_lock_ = nullptr;
307AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
308size_t Dbg::alloc_record_max_ = 0;
309size_t Dbg::alloc_record_head_ = 0;
310size_t Dbg::alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -0700311Dbg::TypeCache Dbg::type_cache_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800312
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100313// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100314Mutex* Dbg::deoptimization_lock_ = nullptr;
315std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
316size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100317size_t Dbg::delayed_full_undeoptimization_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100318
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200319// Instrumentation event reference counters.
320size_t Dbg::dex_pc_change_event_ref_count_ = 0;
321size_t Dbg::method_enter_event_ref_count_ = 0;
322size_t Dbg::method_exit_event_ref_count_ = 0;
323size_t Dbg::field_read_event_ref_count_ = 0;
324size_t Dbg::field_write_event_ref_count_ = 0;
325size_t Dbg::exception_catch_event_ref_count_ = 0;
326uint32_t Dbg::instrumentation_events_ = 0;
327
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100328// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800329static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800330
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700331void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
332 RootType root_type) {
333 if (receiver != nullptr) {
334 callback(&receiver, arg, tid, root_type);
335 }
336 if (thread != nullptr) {
337 callback(&thread, arg, tid, root_type);
338 }
339 if (klass != nullptr) {
340 callback(reinterpret_cast<mirror::Object**>(&klass), arg, tid, root_type);
341 }
342 if (method != nullptr) {
343 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
344 }
345}
346
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200347void DebugInvokeReq::Clear() {
348 invoke_needed = false;
349 receiver = nullptr;
350 thread = nullptr;
351 klass = nullptr;
352 method = nullptr;
353}
354
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700355void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
356 RootType root_type) {
357 if (method != nullptr) {
358 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
359 }
360}
361
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200362bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
363 return dex_pcs.find(dex_pc) == dex_pcs.end();
364}
365
366void SingleStepControl::Clear() {
367 is_active = false;
368 method = nullptr;
369 dex_pcs.clear();
370}
371
Brian Carlstromea46f952013-07-30 01:26:50 -0700372static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800373 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700374 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao09bfc6a2012-12-11 18:11:43 -0800375 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100376 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700377 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
Elliott Hughes86964332012-02-15 19:37:42 -0800378 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
379 return true;
380 }
381 }
382 return false;
383}
384
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100385static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
386 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800387 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
388 // A thread may be suspended for GC; in this code, we really want to know whether
389 // there's a debugger suspension active.
390 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
391}
392
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800393static mirror::Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700394 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800395 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800396 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800397 status = JDWP::ERR_INVALID_OBJECT;
398 return NULL;
399 }
400 if (!o->IsArrayInstance()) {
401 status = JDWP::ERR_INVALID_ARRAY;
402 return NULL;
403 }
404 status = JDWP::ERR_NONE;
405 return o->AsArray();
406}
407
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800408static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700409 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800410 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800411 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800412 status = JDWP::ERR_INVALID_OBJECT;
413 return NULL;
414 }
415 if (!o->IsClass()) {
416 status = JDWP::ERR_INVALID_CLASS;
417 return NULL;
418 }
419 status = JDWP::ERR_NONE;
420 return o->AsClass();
421}
422
Elliott Hughes221229c2013-01-08 18:17:50 -0800423static JDWP::JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thread*& thread)
jeffhaoa77f0f62012-12-05 17:19:31 -0800424 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700425 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
426 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800427 mirror::Object* thread_peer = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800428 if (thread_peer == NULL || thread_peer == ObjectRegistry::kInvalidObject) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800429 // This isn't even an object.
430 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes436e3722012-02-17 20:01:47 -0800431 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800432
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800433 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800434 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
435 // This isn't a thread.
436 return JDWP::ERR_INVALID_THREAD;
437 }
438
439 thread = Thread::FromManagedThread(soa, thread_peer);
440 if (thread == NULL) {
441 // This is a java.lang.Thread without a Thread*. Must be a zombie.
442 return JDWP::ERR_THREAD_NOT_ALIVE;
443 }
444 return JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800445}
446
Elliott Hughes24437992011-11-30 14:49:33 -0800447static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
448 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
449 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
450 return static_cast<JDWP::JdwpTag>(descriptor[0]);
451}
452
Ian Rogers98379392014-02-24 16:53:16 -0800453static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700454 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes86b00102011-12-05 17:54:26 -0800455 CHECK(c != NULL);
Elliott Hughes24437992011-11-30 14:49:33 -0800456 if (c->IsArrayClass()) {
457 return JDWP::JT_ARRAY;
458 }
Elliott Hughes24437992011-11-30 14:49:33 -0800459 if (c->IsStringClass()) {
460 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800461 }
Ian Rogers98379392014-02-24 16:53:16 -0800462 if (c->IsClassClass()) {
463 return JDWP::JT_CLASS_OBJECT;
464 }
465 {
466 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
467 if (thread_class->IsAssignableFrom(c)) {
468 return JDWP::JT_THREAD;
469 }
470 }
471 {
472 mirror::Class* thread_group_class =
473 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
474 if (thread_group_class->IsAssignableFrom(c)) {
475 return JDWP::JT_THREAD_GROUP;
476 }
477 }
478 {
479 mirror::Class* class_loader_class =
480 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
481 if (class_loader_class->IsAssignableFrom(c)) {
482 return JDWP::JT_CLASS_LOADER;
483 }
484 }
485 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800486}
487
488/*
489 * Objects declared to hold Object might actually hold a more specific
490 * type. The debugger may take a special interest in these (e.g. it
491 * wants to display the contents of Strings), so we want to return an
492 * appropriate tag.
493 *
494 * Null objects are tagged JT_OBJECT.
495 */
Ian Rogers98379392014-02-24 16:53:16 -0800496static JDWP::JdwpTag TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700497 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers98379392014-02-24 16:53:16 -0800498 return (o == NULL) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800499}
500
501static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
502 switch (tag) {
503 case JDWP::JT_BOOLEAN:
504 case JDWP::JT_BYTE:
505 case JDWP::JT_CHAR:
506 case JDWP::JT_FLOAT:
507 case JDWP::JT_DOUBLE:
508 case JDWP::JT_INT:
509 case JDWP::JT_LONG:
510 case JDWP::JT_SHORT:
511 case JDWP::JT_VOID:
512 return true;
513 default:
514 return false;
515 }
516}
517
Elliott Hughes3bb81562011-10-21 18:52:59 -0700518/*
519 * Handle one of the JDWP name/value pairs.
520 *
521 * JDWP options are:
522 * help: if specified, show help message and bail
523 * transport: may be dt_socket or dt_shmem
524 * address: for dt_socket, "host:port", or just "port" when listening
525 * server: if "y", wait for debugger to attach; if "n", attach to debugger
526 * timeout: how long to wait for debugger to connect / listen
527 *
528 * Useful with server=n (these aren't supported yet):
529 * onthrow=<exception-name>: connect to debugger when exception thrown
530 * onuncaught=y|n: connect to debugger when uncaught exception thrown
531 * launch=<command-line>: launch the debugger itself
532 *
533 * The "transport" option is required, as is "address" if server=n.
534 */
535static bool ParseJdwpOption(const std::string& name, const std::string& value) {
536 if (name == "transport") {
537 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700538 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700539 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700540 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700541 } else {
542 LOG(ERROR) << "JDWP transport not supported: " << value;
543 return false;
544 }
545 } else if (name == "server") {
546 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700547 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700548 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700549 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700550 } else {
551 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
552 return false;
553 }
554 } else if (name == "suspend") {
555 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700556 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700557 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700558 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700559 } else {
560 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
561 return false;
562 }
563 } else if (name == "address") {
564 /* this is either <port> or <host>:<port> */
565 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700566 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700567 std::string::size_type colon = value.find(':');
568 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700569 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700570 port_string = value.substr(colon + 1);
571 } else {
572 port_string = value;
573 }
574 if (port_string.empty()) {
575 LOG(ERROR) << "JDWP address missing port: " << value;
576 return false;
577 }
578 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800579 uint64_t port = strtoul(port_string.c_str(), &end, 10);
580 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700581 LOG(ERROR) << "JDWP address has junk in port field: " << value;
582 return false;
583 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700584 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700585 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
586 /* valid but unsupported */
587 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
588 } else {
589 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
590 }
591
592 return true;
593}
594
595/*
596 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
597 * "transport=dt_socket,address=8000,server=y,suspend=n"
598 */
599bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800600 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700601
Elliott Hughes3bb81562011-10-21 18:52:59 -0700602 std::vector<std::string> pairs;
603 Split(options, ',', pairs);
604
605 for (size_t i = 0; i < pairs.size(); ++i) {
606 std::string::size_type equals = pairs[i].find('=');
607 if (equals == std::string::npos) {
608 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
609 return false;
610 }
611 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
612 }
613
Elliott Hughes376a7a02011-10-24 18:35:55 -0700614 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700615 LOG(ERROR) << "Must specify JDWP transport: " << options;
616 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700617 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700618 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
619 return false;
620 }
621
622 gJdwpConfigured = true;
623 return true;
624}
625
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700626void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700627 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700628 // No JDWP for you!
629 return;
630 }
631
Ian Rogers719d1a32014-03-06 12:13:39 -0800632 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700633 gRegistry = new ObjectRegistry;
634
Ian Rogers719d1a32014-03-06 12:13:39 -0800635 alloc_tracker_lock_ = new Mutex("AllocTracker lock");
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100636 deoptimization_lock_ = new Mutex("deoptimization lock", kDeoptimizationLock);
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700637 // Init JDWP if the debugger is enabled. This may connect out to a
638 // debugger, passively listen for a debugger, or block waiting for a
639 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700640 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
641 if (gJdwpState == NULL) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800642 // We probably failed because some other process has the port already, which means that
643 // if we don't abort the user is likely to think they're talking to us when they're actually
644 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800645 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700646 }
647
648 // If a debugger has already attached, send the "welcome" message.
649 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700650 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700651 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes376a7a02011-10-24 18:35:55 -0700652 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800653 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700654 }
655 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700656}
657
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700658void Dbg::StopJdwp() {
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100659 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
660 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700661 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800662 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700663 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800664 gRegistry = nullptr;
665 delete alloc_tracker_lock_;
666 alloc_tracker_lock_ = nullptr;
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100667 delete deoptimization_lock_;
668 deoptimization_lock_ = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700669}
670
Elliott Hughes767a1472011-10-26 18:49:02 -0700671void Dbg::GcDidFinish() {
672 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700673 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700674 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700675 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700676 }
677 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700678 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700679 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700680 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700681 }
682 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700683 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700684 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700685 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700686 }
687}
688
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700689void Dbg::SetJdwpAllowed(bool allowed) {
690 gJdwpAllowed = allowed;
691}
692
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700693DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700694 return Thread::Current()->GetInvokeReq();
695}
696
697Thread* Dbg::GetDebugThread() {
698 return (gJdwpState != NULL) ? gJdwpState->GetDebugThread() : NULL;
699}
700
701void Dbg::ClearWaitForEventThread() {
702 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700703}
704
705void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700706 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800707 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700708 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800709 gDisposed = false;
710}
711
712void Dbg::Disposed() {
713 gDisposed = true;
714}
715
716bool Dbg::IsDisposed() {
717 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700718}
719
Elliott Hughesa2155262011-11-16 16:26:58 -0800720void Dbg::GoActive() {
721 // Enable all debugging features, including scans for breakpoints.
722 // This is a no-op if we're already active.
723 // Only called from the JDWP handler thread.
724 if (gDebuggerActive) {
725 return;
726 }
727
Elliott Hughesc0f09332012-03-26 13:27:06 -0700728 {
729 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
jeffhao09bfc6a2012-12-11 18:11:43 -0800730 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700731 CHECK_EQ(gBreakpoints.size(), 0U);
732 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800733
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100734 {
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100735 MutexLock mu(Thread::Current(), *deoptimization_lock_);
736 CHECK_EQ(deoptimization_requests_.size(), 0U);
737 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100738 CHECK_EQ(delayed_full_undeoptimization_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200739 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
740 CHECK_EQ(method_enter_event_ref_count_, 0U);
741 CHECK_EQ(method_exit_event_ref_count_, 0U);
742 CHECK_EQ(field_read_event_ref_count_, 0U);
743 CHECK_EQ(field_write_event_ref_count_, 0U);
744 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100745 }
746
Ian Rogers62d6c772013-02-27 08:32:07 -0800747 Runtime* runtime = Runtime::Current();
748 runtime->GetThreadList()->SuspendAll();
749 Thread* self = Thread::Current();
750 ThreadState old_state = self->SetStateUnsafe(kRunnable);
751 CHECK_NE(old_state, kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100752 runtime->GetInstrumentation()->EnableDeoptimization();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200753 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800754 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800755 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
756 runtime->GetThreadList()->ResumeAll();
757
758 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700759}
760
761void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700762 CHECK(gDebuggerConnected);
763
Elliott Hughesc0f09332012-03-26 13:27:06 -0700764 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700765
Ian Rogers62d6c772013-02-27 08:32:07 -0800766 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
767 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
768 // and clear the object registry.
769 Runtime* runtime = Runtime::Current();
770 runtime->GetThreadList()->SuspendAll();
771 Thread* self = Thread::Current();
772 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100773
774 // Debugger may not be active at this point.
775 if (gDebuggerActive) {
776 {
777 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
778 // This prevents us from having any pending deoptimization request when the debugger attaches
779 // to us again while no event has been requested yet.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100780 MutexLock mu(Thread::Current(), *deoptimization_lock_);
781 deoptimization_requests_.clear();
782 full_deoptimization_event_count_ = 0U;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100783 delayed_full_undeoptimization_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100784 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200785 if (instrumentation_events_ != 0) {
786 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
787 instrumentation_events_);
788 instrumentation_events_ = 0;
789 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100790 runtime->GetInstrumentation()->DisableDeoptimization();
791 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100792 }
Elliott Hughes234ab152011-10-26 14:02:26 -0700793 gRegistry->Clear();
794 gDebuggerConnected = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800795 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
796 runtime->GetThreadList()->ResumeAll();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700797}
798
Elliott Hughesc0f09332012-03-26 13:27:06 -0700799bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700800 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700801}
802
Elliott Hughesc0f09332012-03-26 13:27:06 -0700803bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700804 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700805}
806
807int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800808 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700809}
810
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700811void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700812 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700813}
814
Elliott Hughes88d63092013-01-09 09:55:54 -0800815std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800816 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800817 if (o == NULL) {
818 return "NULL";
819 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800820 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes88d63092013-01-09 09:55:54 -0800821 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
Elliott Hughes436e3722012-02-17 20:01:47 -0800822 }
823 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700824 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800825 }
Mathieu Chartierf8322842014-05-16 10:59:25 -0700826 return DescriptorToName(o->AsClass()->GetDescriptor().c_str());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700827}
828
Elliott Hughes88d63092013-01-09 09:55:54 -0800829JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800830 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800831 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800832 if (c == NULL) {
833 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800834 }
Elliott Hughes88d63092013-01-09 09:55:54 -0800835 class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800836 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800837}
838
Elliott Hughes88d63092013-01-09 09:55:54 -0800839JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800840 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800841 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800842 if (c == NULL) {
843 return status;
844 }
845 if (c->IsInterface()) {
846 // http://code.google.com/p/android/issues/detail?id=20856
Elliott Hughes88d63092013-01-09 09:55:54 -0800847 superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800848 } else {
Elliott Hughes88d63092013-01-09 09:55:54 -0800849 superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800850 }
851 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700852}
853
Elliott Hughes436e3722012-02-17 20:01:47 -0800854JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800855 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800856 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800857 return JDWP::ERR_INVALID_OBJECT;
858 }
859 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
860 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700861}
862
Elliott Hughes436e3722012-02-17 20:01:47 -0800863JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
864 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800865 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800866 if (c == NULL) {
867 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800868 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800869
870 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
871
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700872 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
873 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800874 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700875 if ((access_flags & kAccInterface) == 0) {
876 access_flags |= kAccSuper;
877 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800878
879 expandBufAdd4BE(pReply, access_flags);
880
881 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700882}
883
Elliott Hughesf327e072013-01-09 16:01:26 -0800884JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
885 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800886 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800887 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800888 return JDWP::ERR_INVALID_OBJECT;
889 }
890
891 // Ensure all threads are suspended while we read objects' lock words.
892 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100893 CHECK_EQ(self->GetState(), kRunnable);
894 self->TransitionFromRunnableToSuspended(kSuspended);
895 Runtime::Current()->GetThreadList()->SuspendAll();
Elliott Hughesf327e072013-01-09 16:01:26 -0800896
897 MonitorInfo monitor_info(o);
898
Sebastien Hertz54263242014-03-19 18:16:50 +0100899 Runtime::Current()->GetThreadList()->ResumeAll();
900 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800901
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700902 if (monitor_info.owner_ != NULL) {
903 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800904 } else {
905 expandBufAddObjectId(reply, gRegistry->Add(NULL));
906 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700907 expandBufAdd4BE(reply, monitor_info.entry_count_);
908 expandBufAdd4BE(reply, monitor_info.waiters_.size());
909 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
910 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800911 }
912 return JDWP::ERR_NONE;
913}
914
Elliott Hughes734b8c62013-01-11 15:32:45 -0800915JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
916 std::vector<JDWP::ObjectId>& monitors,
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100917 std::vector<uint32_t>& stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800918 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700919 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700920 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700921 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800922 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700923 : StackVisitor(thread, context), current_stack_depth(0),
924 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800925
926 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
927 // annotalysis.
928 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
929 if (!GetMethod()->IsRuntimeMethod()) {
930 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800931 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800932 }
933 return true;
934 }
935
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700936 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
937 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800938 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700939 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700940 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800941 }
942
Elliott Hughes734b8c62013-01-11 15:32:45 -0800943 size_t current_stack_depth;
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700944 std::vector<JDWP::ObjectId>* monitors;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700945 std::vector<uint32_t>* stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800946 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800947
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700948 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700949 Thread* thread;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700950 {
951 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700952 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
953 if (error != JDWP::ERR_NONE) {
954 return error;
955 }
956 if (!IsSuspendedForDebugger(soa, thread)) {
957 return JDWP::ERR_THREAD_NOT_SUSPENDED;
958 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700959 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700960 std::unique_ptr<Context> context(Context::Create());
961 OwnedMonitorVisitor visitor(thread, context.get(), &monitors, &stack_depths);
962 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800963 return JDWP::ERR_NONE;
964}
965
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100966JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
967 JDWP::ObjectId& contended_monitor) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700968 mirror::Object* contended_monitor_obj;
Elliott Hughesf9501702013-01-11 11:22:27 -0800969 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700970 {
971 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
972 Thread* thread;
973 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
974 if (error != JDWP::ERR_NONE) {
975 return error;
976 }
977 if (!IsSuspendedForDebugger(soa, thread)) {
978 return JDWP::ERR_THREAD_NOT_SUSPENDED;
979 }
980 contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Elliott Hughesf9501702013-01-11 11:22:27 -0800981 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700982 // Add() requires the thread_list_lock_ not held to avoid the lock
983 // level violation.
984 contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -0800985 return JDWP::ERR_NONE;
986}
987
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800988JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
989 std::vector<uint64_t>& counts)
990 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800991 gc::Heap* heap = Runtime::Current()->GetHeap();
992 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800993 std::vector<mirror::Class*> classes;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800994 counts.clear();
995 for (size_t i = 0; i < class_ids.size(); ++i) {
996 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800997 mirror::Class* c = DecodeClass(class_ids[i], status);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800998 if (c == NULL) {
999 return status;
1000 }
1001 classes.push_back(c);
1002 counts.push_back(0);
1003 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001004 heap->CountInstances(classes, false, &counts[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001005 return JDWP::ERR_NONE;
1006}
1007
Elliott Hughes3b78c942013-01-15 17:35:41 -08001008JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::ObjectId>& instances)
1009 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001010 gc::Heap* heap = Runtime::Current()->GetHeap();
1011 // We only want reachable instances, so do a GC.
1012 heap->CollectGarbage(false);
Elliott Hughes3b78c942013-01-15 17:35:41 -08001013 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001014 mirror::Class* c = DecodeClass(class_id, status);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001015 if (c == nullptr) {
Elliott Hughes3b78c942013-01-15 17:35:41 -08001016 return status;
1017 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001018 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001019 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
1020 for (size_t i = 0; i < raw_instances.size(); ++i) {
1021 instances.push_back(gRegistry->Add(raw_instances[i]));
1022 }
1023 return JDWP::ERR_NONE;
1024}
1025
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001026JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
1027 std::vector<JDWP::ObjectId>& referring_objects)
1028 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001029 gc::Heap* heap = Runtime::Current()->GetHeap();
1030 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001031 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001032 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001033 return JDWP::ERR_INVALID_OBJECT;
1034 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001035 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001036 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001037 for (size_t i = 0; i < raw_instances.size(); ++i) {
1038 referring_objects.push_back(gRegistry->Add(raw_instances[i]));
1039 }
1040 return JDWP::ERR_NONE;
1041}
1042
Elliott Hughes64f574f2013-02-20 14:57:12 -08001043JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id)
1044 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001045 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
1046 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
1047 return JDWP::ERR_INVALID_OBJECT;
1048 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001049 gRegistry->DisableCollection(object_id);
1050 return JDWP::ERR_NONE;
1051}
1052
1053JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id)
1054 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001055 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
1056 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
1057 // also ignores these cases and never return an error. However it's not obvious why this command
1058 // should behave differently from DisableCollection and IsCollected commands. So let's be more
1059 // strict and return an error if this happens.
1060 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
1061 return JDWP::ERR_INVALID_OBJECT;
1062 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001063 gRegistry->EnableCollection(object_id);
1064 return JDWP::ERR_NONE;
1065}
1066
1067JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool& is_collected)
1068 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001069 if (object_id == 0) {
1070 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +01001071 return JDWP::ERR_INVALID_OBJECT;
1072 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001073 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1074 // the RI seems to ignore this and assume object has been collected.
1075 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
1076 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
1077 is_collected = true;
1078 } else {
1079 is_collected = gRegistry->IsCollected(object_id);
1080 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001081 return JDWP::ERR_NONE;
1082}
1083
1084void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
1085 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1086 gRegistry->DisposeObject(object_id, reference_count);
1087}
1088
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001089static JDWP::JdwpTypeTag GetTypeTag(mirror::Class* klass)
1090 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1091 DCHECK(klass != nullptr);
1092 if (klass->IsArrayClass()) {
1093 return JDWP::TT_ARRAY;
1094 } else if (klass->IsInterface()) {
1095 return JDWP::TT_INTERFACE;
1096 } else {
1097 return JDWP::TT_CLASS;
1098 }
1099}
1100
Elliott Hughes88d63092013-01-09 09:55:54 -08001101JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001102 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001103 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001104 if (c == NULL) {
1105 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001106 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001107
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001108 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1109 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001110 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001111 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001112}
1113
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001114void Dbg::GetClassList(std::vector<JDWP::RefTypeId>& classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001115 // Get the complete list of reference classes (i.e. all classes except
1116 // the primitive types).
1117 // Returns a newly-allocated buffer full of RefTypeId values.
1118 struct ClassListCreator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001119 explicit ClassListCreator(std::vector<JDWP::RefTypeId>& classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001120 }
1121
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001122 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001123 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1124 }
1125
Elliott Hughes64f574f2013-02-20 14:57:12 -08001126 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1127 // annotalysis.
1128 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001129 if (!c->IsPrimitive()) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001130 classes.push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001131 }
1132 return true;
1133 }
1134
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001135 std::vector<JDWP::RefTypeId>& classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001136 };
1137
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001138 ClassListCreator clc(classes);
Elliott Hughesa2155262011-11-16 16:26:58 -08001139 Runtime::Current()->GetClassLinker()->VisitClasses(ClassListCreator::Visit, &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001140}
1141
Elliott Hughes88d63092013-01-09 09:55:54 -08001142JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, uint32_t* pStatus, std::string* pDescriptor) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001143 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001144 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001145 if (c == NULL) {
1146 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001147 }
1148
Elliott Hughesa2155262011-11-16 16:26:58 -08001149 if (c->IsArrayClass()) {
1150 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1151 *pTypeTag = JDWP::TT_ARRAY;
1152 } else {
1153 if (c->IsErroneous()) {
1154 *pStatus = JDWP::CS_ERROR;
1155 } else {
1156 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1157 }
1158 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1159 }
1160
1161 if (pDescriptor != NULL) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001162 *pDescriptor = c->GetDescriptor();
Elliott Hughesa2155262011-11-16 16:26:58 -08001163 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001164 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001165}
1166
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001167void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001168 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001169 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
1170 ids.clear();
1171 for (size_t i = 0; i < classes.size(); ++i) {
1172 ids.push_back(gRegistry->Add(classes[i]));
1173 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001174}
1175
Elliott Hughes64f574f2013-02-20 14:57:12 -08001176JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
1177 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001178 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001179 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001180 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001181 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001182
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001183 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001184 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001185
1186 expandBufAdd1(pReply, type_tag);
1187 expandBufAddRefTypeId(pReply, type_id);
1188
1189 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001190}
1191
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001192JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001193 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001194 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001195 if (c == NULL) {
1196 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001197 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001198 *signature = c->GetDescriptor();
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001199 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001200}
1201
Elliott Hughes88d63092013-01-09 09:55:54 -08001202JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string& result) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001203 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001204 mirror::Class* c = DecodeClass(class_id, status);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001205 if (c == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001206 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001207 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001208 const char* source_file = c->GetSourceFile();
1209 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001210 return JDWP::ERR_ABSENT_INFORMATION;
1211 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001212 result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001213 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001214}
1215
Elliott Hughes88d63092013-01-09 09:55:54 -08001216JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t& tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001217 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001218 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001219 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes546b9862012-06-20 16:06:13 -07001220 return JDWP::ERR_INVALID_OBJECT;
1221 }
Ian Rogers98379392014-02-24 16:53:16 -08001222 tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001223 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001224}
1225
Elliott Hughesaed4be92011-12-02 16:16:23 -08001226size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001227 switch (tag) {
1228 case JDWP::JT_VOID:
1229 return 0;
1230 case JDWP::JT_BYTE:
1231 case JDWP::JT_BOOLEAN:
1232 return 1;
1233 case JDWP::JT_CHAR:
1234 case JDWP::JT_SHORT:
1235 return 2;
1236 case JDWP::JT_FLOAT:
1237 case JDWP::JT_INT:
1238 return 4;
1239 case JDWP::JT_ARRAY:
1240 case JDWP::JT_OBJECT:
1241 case JDWP::JT_STRING:
1242 case JDWP::JT_THREAD:
1243 case JDWP::JT_THREAD_GROUP:
1244 case JDWP::JT_CLASS_LOADER:
1245 case JDWP::JT_CLASS_OBJECT:
1246 return sizeof(JDWP::ObjectId);
1247 case JDWP::JT_DOUBLE:
1248 case JDWP::JT_LONG:
1249 return 8;
1250 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001251 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001252 return -1;
1253 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001254}
1255
Elliott Hughes88d63092013-01-09 09:55:54 -08001256JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int& length) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001257 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001258 mirror::Array* a = DecodeArray(array_id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001259 if (a == NULL) {
1260 return status;
Elliott Hughes24437992011-11-30 14:49:33 -08001261 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001262 length = a->GetLength();
1263 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001264}
1265
Elliott Hughes88d63092013-01-09 09:55:54 -08001266JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001267 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001268 mirror::Array* a = DecodeArray(array_id, status);
Ian Rogers98379392014-02-24 16:53:16 -08001269 if (a == nullptr) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001270 return status;
1271 }
Elliott Hughes24437992011-11-30 14:49:33 -08001272
1273 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1274 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001275 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001276 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001277 std::string descriptor(a->GetClass()->GetDescriptor());
Elliott Hughes24437992011-11-30 14:49:33 -08001278 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
1279
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001280 expandBufAdd1(pReply, tag);
1281 expandBufAdd4BE(pReply, count);
1282
Elliott Hughes24437992011-11-30 14:49:33 -08001283 if (IsPrimitiveTag(tag)) {
1284 size_t width = GetTagWidth(tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001285 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1286 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001287 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001288 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1289 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001290 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001291 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1292 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001293 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001294 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1295 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001296 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001297 memcpy(dst, &src[offset * width], count * width);
1298 }
1299 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001300 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001301 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001302 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001303 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001304 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
1305 : tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001306 expandBufAdd1(pReply, specific_tag);
1307 expandBufAddObjectId(pReply, gRegistry->Add(element));
1308 }
1309 }
1310
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001311 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001312}
1313
Ian Rogersef7d42f2014-01-06 12:55:46 -08001314template <typename T>
1315static void CopyArrayData(mirror::Array* a, JDWP::Request& src, int offset, int count)
1316 NO_THREAD_SAFETY_ANALYSIS {
1317 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001318 DCHECK(a->GetClass()->IsPrimitiveArray());
1319
Ian Rogersef7d42f2014-01-06 12:55:46 -08001320 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001321 for (int i = 0; i < count; ++i) {
1322 *dst++ = src.ReadValue(sizeof(T));
1323 }
1324}
1325
Elliott Hughes88d63092013-01-09 09:55:54 -08001326JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001327 JDWP::Request& request)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001328 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001329 JDWP::JdwpError status;
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001330 mirror::Array* dst = DecodeArray(array_id, status);
1331 if (dst == NULL) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001332 return status;
1333 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001334
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001335 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001336 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001337 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001338 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001339 std::string descriptor = dst->GetClass()->GetDescriptor();
1340 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001341
1342 if (IsPrimitiveTag(tag)) {
1343 size_t width = GetTagWidth(tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001344 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001345 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001346 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001347 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001348 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001349 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001350 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001351 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001352 }
1353 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001354 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001355 for (int i = 0; i < count; ++i) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001356 JDWP::ObjectId id = request.ReadObjectId();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001357 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001358 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001359 return JDWP::ERR_INVALID_OBJECT;
1360 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001361 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001362 }
1363 }
1364
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001365 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001366}
1367
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001368JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001369 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001370}
1371
Elliott Hughes88d63092013-01-09 09:55:54 -08001372JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001373 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001374 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001375 if (c == NULL) {
1376 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001377 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001378 new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001379 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001380}
1381
Elliott Hughesbf13d362011-12-08 15:51:37 -08001382/*
1383 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1384 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001385JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001386 JDWP::ObjectId& new_array) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001387 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001388 mirror::Class* c = DecodeClass(array_class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001389 if (c == NULL) {
1390 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001391 }
Ian Rogers6fac4472014-02-25 17:01:10 -08001392 new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
1393 c->GetComponentSize(),
1394 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001395 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001396}
1397
Elliott Hughes88d63092013-01-09 09:55:54 -08001398bool Dbg::MatchType(JDWP::RefTypeId instance_class_id, JDWP::RefTypeId class_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001399 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001400 mirror::Class* c1 = DecodeClass(instance_class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001401 CHECK(c1 != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001402 mirror::Class* c2 = DecodeClass(class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001403 CHECK(c2 != NULL);
Sebastien Hertz123756a2013-11-27 15:49:42 +01001404 return c2->IsAssignableFrom(c1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001405}
1406
Brian Carlstromea46f952013-07-30 01:26:50 -07001407static JDWP::FieldId ToFieldId(const mirror::ArtField* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001408 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001409 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001410 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001411}
1412
Brian Carlstromea46f952013-07-30 01:26:50 -07001413static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001414 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001415 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001416 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001417}
1418
Brian Carlstromea46f952013-07-30 01:26:50 -07001419static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001420 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001421 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001422 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001423}
1424
Brian Carlstromea46f952013-07-30 01:26:50 -07001425static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001426 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001427 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001428 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001429}
1430
Brian Carlstromea46f952013-07-30 01:26:50 -07001431static void SetLocation(JDWP::JdwpLocation& location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001432 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001433 if (m == NULL) {
1434 memset(&location, 0, sizeof(location));
1435 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001436 mirror::Class* c = m->GetDeclaringClass();
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001437 location.type_tag = GetTypeTag(c);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001438 location.class_id = gRegistry->AddRefType(c);
Elliott Hughes74847412012-06-20 18:10:21 -07001439 location.method_id = ToMethodId(m);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001440 location.dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001441 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001442}
1443
Elliott Hughesa96836a2013-01-17 12:27:49 -08001444std::string Dbg::GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001445 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001446 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001447 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001448}
1449
Elliott Hughesa96836a2013-01-17 12:27:49 -08001450std::string Dbg::GetFieldName(JDWP::FieldId field_id)
1451 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001452 return FromFieldId(field_id)->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001453}
1454
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001455/*
1456 * Augment the access flags for synthetic methods and fields by setting
1457 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1458 * flags not specified by the Java programming language.
1459 */
1460static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1461 accessFlags &= kAccJavaFlagsMask;
1462 if ((accessFlags & kAccSynthetic) != 0) {
1463 accessFlags |= 0xf0000000;
1464 }
1465 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001466}
1467
Elliott Hughesdbb40792011-11-18 17:05:22 -08001468/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001469 * Circularly shifts registers so that arguments come first. Debuggers
1470 * expect slots to begin with arguments, but dex code places them at
1471 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001472 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001473static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1474 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001475 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001476 if (code_item == nullptr) {
1477 // We should not get here for a method without code (native, proxy or abstract). Log it and
1478 // return the slot as is since all registers are arguments.
1479 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1480 return slot;
1481 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001482 uint16_t ins_size = code_item->ins_size_;
1483 uint16_t locals_size = code_item->registers_size_ - ins_size;
1484 if (slot >= locals_size) {
1485 return slot - locals_size;
1486 } else {
1487 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001488 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001489}
1490
Jeff Haob7cefc72013-11-14 14:51:09 -08001491/*
1492 * Circularly shifts registers so that arguments come last. Reverts
1493 * slots to dex style argument placement.
1494 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001495static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001496 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 demangle 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 < ins_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
Elliott Hughes88d63092013-01-09 09:55:54 -08001513JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001514 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001515 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001516 if (c == NULL) {
1517 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001518 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001519
1520 size_t instance_field_count = c->NumInstanceFields();
1521 size_t static_field_count = c->NumStaticFields();
1522
1523 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1524
1525 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001526 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001527 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001528 expandBufAddUtf8String(pReply, f->GetName());
1529 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001530 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001531 static const char genericSignature[1] = "";
1532 expandBufAddUtf8String(pReply, genericSignature);
1533 }
1534 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1535 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001536 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001537}
1538
Elliott Hughes88d63092013-01-09 09:55:54 -08001539JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001540 JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001541 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001542 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001543 if (c == NULL) {
1544 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001545 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001546
1547 size_t direct_method_count = c->NumDirectMethods();
1548 size_t virtual_method_count = c->NumVirtualMethods();
1549
1550 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1551
1552 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001553 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001554 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001555 expandBufAddUtf8String(pReply, m->GetName());
1556 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001557 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001558 static const char genericSignature[1] = "";
1559 expandBufAddUtf8String(pReply, genericSignature);
1560 }
1561 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1562 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001563 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001564}
1565
Elliott Hughes88d63092013-01-09 09:55:54 -08001566JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001567 JDWP::JdwpError status;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001568 Thread* self = Thread::Current();
1569 StackHandleScope<1> hs(self);
1570 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, status)));
1571 if (c.Get() == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001572 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001573 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001574 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001575 expandBufAdd4BE(pReply, interface_count);
1576 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001577 expandBufAddRefTypeId(pReply,
1578 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001579 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001580 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001581}
1582
Elliott Hughes88d63092013-01-09 09:55:54 -08001583void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001584 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001585 struct DebugCallbackContext {
1586 int numItems;
1587 JDWP::ExpandBuf* pReply;
1588
Elliott Hughes2435a572012-02-17 16:07:41 -08001589 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001590 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1591 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001592 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001593 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001594 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001595 }
1596 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001597 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001598 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001599 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001600 if (code_item == nullptr) {
1601 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001602 start = -1;
1603 end = -1;
1604 } else {
1605 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001606 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001607 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001608 }
1609
1610 expandBufAdd8BE(pReply, start);
1611 expandBufAdd8BE(pReply, end);
1612
1613 // Add numLines later
1614 size_t numLinesOffset = expandBufGetLength(pReply);
1615 expandBufAdd4BE(pReply, 0);
1616
1617 DebugCallbackContext context;
1618 context.numItems = 0;
1619 context.pReply = pReply;
1620
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001621 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001622 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
1623 DebugCallbackContext::Callback, NULL, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001624 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001625
1626 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001627}
1628
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001629void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1630 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001631 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001632 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001633 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001634 size_t variable_count;
1635 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001636
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001637 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1638 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001639 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001640 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1641
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001642 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1643 pContext->variable_count, startAddress, endAddress - startAddress,
1644 name, descriptor, signature, slot,
1645 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001646
Jeff Haob7cefc72013-11-14 14:51:09 -08001647 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001648
Elliott Hughesdbb40792011-11-18 17:05:22 -08001649 expandBufAdd8BE(pContext->pReply, startAddress);
1650 expandBufAddUtf8String(pContext->pReply, name);
1651 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001652 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001653 expandBufAddUtf8String(pContext->pReply, signature);
1654 }
1655 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1656 expandBufAdd4BE(pContext->pReply, slot);
1657
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001658 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001659 }
1660 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001661 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001662
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001663 // arg_count considers doubles and longs to take 2 units.
1664 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001665 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001666 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001667
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001668 // We don't know the total number of variables yet, so leave a blank and update it later.
1669 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001670 expandBufAdd4BE(pReply, 0);
1671
1672 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001673 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001674 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001675 context.variable_count = 0;
1676 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001677
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001678 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001679 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001680 m->GetDexFile()->DecodeDebugInfo(
1681 code_item, m->IsStatic(), m->GetDexMethodIndex(), NULL, DebugCallbackContext::Callback,
1682 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001683 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001684
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001685 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001686}
1687
Jeff Hao579b0242013-11-18 13:16:49 -08001688void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1689 JDWP::ExpandBuf* pReply) {
1690 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001691 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001692 OutputJValue(tag, return_value, pReply);
1693}
1694
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001695void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1696 JDWP::ExpandBuf* pReply) {
1697 mirror::ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001698 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001699 OutputJValue(tag, field_value, pReply);
1700}
1701
Elliott Hughes9777ba22013-01-17 09:04:19 -08001702JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
1703 std::vector<uint8_t>& bytecodes)
1704 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001705 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001706 if (m == NULL) {
1707 return JDWP::ERR_INVALID_METHODID;
1708 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001709 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001710 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1711 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1712 const uint8_t* end = begin + byte_count;
1713 for (const uint8_t* p = begin; p != end; ++p) {
1714 bytecodes.push_back(*p);
1715 }
1716 return JDWP::ERR_NONE;
1717}
1718
Elliott Hughes88d63092013-01-09 09:55:54 -08001719JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001720 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001721}
1722
Elliott Hughes88d63092013-01-09 09:55:54 -08001723JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001724 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001725}
1726
Elliott Hughes88d63092013-01-09 09:55:54 -08001727static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1728 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001729 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001730 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001731 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001732 mirror::Class* c = DecodeClass(ref_type_id, status);
Elliott Hughes88d63092013-01-09 09:55:54 -08001733 if (ref_type_id != 0 && c == NULL) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001734 return status;
1735 }
1736
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001737 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001738 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001739 return JDWP::ERR_INVALID_OBJECT;
1740 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001741 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001742
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001743 mirror::Class* receiver_class = c;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001744 if (receiver_class == NULL && o != NULL) {
1745 receiver_class = o->GetClass();
1746 }
1747 // TODO: should we give up now if receiver_class is NULL?
1748 if (receiver_class != NULL && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
1749 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001750 return JDWP::ERR_INVALID_FIELDID;
1751 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001752
Elliott Hughes0cf74332012-02-23 23:14:00 -08001753 // The RI only enforces the static/non-static mismatch in one direction.
1754 // TODO: should we change the tests and check both?
1755 if (is_static) {
1756 if (!f->IsStatic()) {
1757 return JDWP::ERR_INVALID_FIELDID;
1758 }
1759 } else {
1760 if (f->IsStatic()) {
1761 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001762 }
1763 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001764 if (f->IsStatic()) {
1765 o = f->GetDeclaringClass();
1766 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001767
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001768 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001769 JValue field_value;
1770 if (tag == JDWP::JT_VOID) {
1771 LOG(FATAL) << "Unknown tag: " << tag;
1772 } else if (!IsPrimitiveTag(tag)) {
1773 field_value.SetL(f->GetObject(o));
1774 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1775 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001776 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001777 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001778 }
Jeff Hao579b0242013-11-18 13:16:49 -08001779 Dbg::OutputJValue(tag, &field_value, pReply);
1780
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001781 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001782}
1783
Elliott Hughes88d63092013-01-09 09:55:54 -08001784JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001785 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001786 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001787}
1788
Elliott Hughes88d63092013-01-09 09:55:54 -08001789JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) {
1790 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001791}
1792
Elliott Hughes88d63092013-01-09 09:55:54 -08001793static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001794 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001795 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001796 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001797 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001798 return JDWP::ERR_INVALID_OBJECT;
1799 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001800 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001801
1802 // The RI only enforces the static/non-static mismatch in one direction.
1803 // TODO: should we change the tests and check both?
1804 if (is_static) {
1805 if (!f->IsStatic()) {
1806 return JDWP::ERR_INVALID_FIELDID;
1807 }
1808 } else {
1809 if (f->IsStatic()) {
1810 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001811 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001812 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001813 if (f->IsStatic()) {
1814 o = f->GetDeclaringClass();
1815 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001816
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001817 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001818
1819 if (IsPrimitiveTag(tag)) {
1820 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001821 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001822 // Debugging can't use transactional mode (runtime only).
1823 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001824 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001825 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001826 // Debugging can't use transactional mode (runtime only).
1827 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001828 }
1829 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001830 mirror::Object* v = gRegistry->Get<mirror::Object*>(value);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001831 if (v == ObjectRegistry::kInvalidObject) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001832 return JDWP::ERR_INVALID_OBJECT;
1833 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001834 if (v != NULL) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001835 mirror::Class* field_type;
1836 {
1837 StackHandleScope<3> hs(Thread::Current());
1838 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1839 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
1840 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
1841 field_type = FieldHelper(h_f).GetType();
1842 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001843 if (!field_type->IsAssignableFrom(v->GetClass())) {
1844 return JDWP::ERR_INVALID_OBJECT;
1845 }
1846 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001847 // Debugging can't use transactional mode (runtime only).
1848 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001849 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001850
1851 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001852}
1853
Elliott Hughes88d63092013-01-09 09:55:54 -08001854JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001855 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001856 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001857}
1858
Elliott Hughes88d63092013-01-09 09:55:54 -08001859JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1860 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001861}
1862
Elliott Hughes88d63092013-01-09 09:55:54 -08001863std::string Dbg::StringToUtf8(JDWP::ObjectId string_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001864 mirror::String* s = gRegistry->Get<mirror::String*>(string_id);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001865 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001866}
1867
Jeff Hao579b0242013-11-18 13:16:49 -08001868void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1869 if (IsPrimitiveTag(tag)) {
1870 expandBufAdd1(pReply, tag);
1871 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1872 expandBufAdd1(pReply, return_value->GetI());
1873 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1874 expandBufAdd2BE(pReply, return_value->GetI());
1875 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1876 expandBufAdd4BE(pReply, return_value->GetI());
1877 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1878 expandBufAdd8BE(pReply, return_value->GetJ());
1879 } else {
1880 CHECK_EQ(tag, JDWP::JT_VOID);
1881 }
1882 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001883 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001884 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001885 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001886 expandBufAddObjectId(pReply, gRegistry->Add(value));
1887 }
1888}
1889
Elliott Hughes221229c2013-01-08 18:17:50 -08001890JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string& name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001891 ScopedObjectAccessUnchecked soa(Thread::Current());
1892 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001893 Thread* thread;
1894 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1895 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1896 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001897 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001898
1899 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001900 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Brian Carlstromea46f952013-07-30 01:26:50 -07001901 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001902 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1903 mirror::String* s =
1904 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Elliott Hughes221229c2013-01-08 18:17:50 -08001905 if (s != NULL) {
1906 name = s->ToModifiedUtf8();
1907 }
1908 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001909}
1910
Elliott Hughes221229c2013-01-08 18:17:50 -08001911JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001912 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001913 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001914 if (thread_object == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001915 return JDWP::ERR_INVALID_OBJECT;
1916 }
Ian Rogers98379392014-02-24 16:53:16 -08001917 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001918 // Okay, so it's an object, but is it actually a thread?
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001919 JDWP::JdwpError error;
1920 {
1921 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
1922 Thread* thread;
1923 error = DecodeThread(soa, thread_id, thread);
1924 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001925 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1926 // Zombie threads are in the null group.
1927 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001928 error = JDWP::ERR_NONE;
1929 } else if (error == JDWP::ERR_NONE) {
1930 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1931 CHECK(c != nullptr);
1932 mirror::ArtField* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001933 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001934 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001935 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001936 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1937 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001938 }
Ian Rogers98379392014-02-24 16:53:16 -08001939 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001940 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001941}
1942
Elliott Hughes88d63092013-01-09 09:55:54 -08001943std::string Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001944 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001945 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001946 CHECK(thread_group != nullptr);
1947 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupName");
1948 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1949 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001950 mirror::ArtField* f = c->FindInstanceField("name", "Ljava/lang/String;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001951 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001952 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Ian Rogers98379392014-02-24 16:53:16 -08001953 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes499c5132011-11-17 14:55:11 -08001954 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001955}
1956
Elliott Hughes88d63092013-01-09 09:55:54 -08001957JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id) {
Ian Rogers98379392014-02-24 16:53:16 -08001958 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001959 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001960 CHECK(thread_group != nullptr);
1961 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupParent");
1962 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1963 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001964 mirror::ArtField* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
Elliott Hughes4e235312011-12-02 11:34:15 -08001965 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001966 mirror::Object* parent = f->GetObject(thread_group);
Ian Rogers98379392014-02-24 16:53:16 -08001967 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes4e235312011-12-02 11:34:15 -08001968 return gRegistry->Add(parent);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001969}
1970
1971JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001972 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001973 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001974 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001975 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001976}
1977
1978JDWP::ObjectId Dbg::GetMainThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001979 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001980 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001981 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001982 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001983}
1984
Jeff Hao920af3e2013-08-28 15:46:38 -07001985JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
1986 switch (state) {
1987 case kBlocked:
1988 return JDWP::TS_MONITOR;
1989 case kNative:
1990 case kRunnable:
1991 case kSuspended:
1992 return JDWP::TS_RUNNING;
1993 case kSleeping:
1994 return JDWP::TS_SLEEPING;
1995 case kStarting:
1996 case kTerminated:
1997 return JDWP::TS_ZOMBIE;
1998 case kTimedWaiting:
1999 case kWaitingForDebuggerSend:
2000 case kWaitingForDebuggerSuspension:
2001 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002002 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002003 case kWaitingForGcToComplete:
2004 case kWaitingForCheckPointsToRun:
2005 case kWaitingForJniOnLoad:
2006 case kWaitingForSignalCatcherOutput:
2007 case kWaitingInMainDebuggerLoop:
2008 case kWaitingInMainSignalCatcherLoop:
2009 case kWaitingPerformingGc:
2010 case kWaiting:
2011 return JDWP::TS_WAIT;
2012 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2013 }
2014 LOG(FATAL) << "Unknown thread state: " << state;
2015 return JDWP::TS_ZOMBIE;
2016}
2017
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002018JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2019 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002020 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002021
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002022 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2023
Ian Rogers50b35e22012-10-04 10:09:15 -07002024 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002025 Thread* thread;
2026 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2027 if (error != JDWP::ERR_NONE) {
2028 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2029 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002030 return JDWP::ERR_NONE;
2031 }
2032 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002033 }
2034
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002035 if (IsSuspendedForDebugger(soa, thread)) {
2036 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002037 }
2038
Jeff Hao920af3e2013-08-28 15:46:38 -07002039 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002040 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002041}
2042
Elliott Hughes221229c2013-01-08 18:17:50 -08002043JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002044 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07002045 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002046 Thread* thread;
2047 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2048 if (error != JDWP::ERR_NONE) {
2049 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002050 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002051 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002052 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002053 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002054}
2055
Elliott Hughesf9501702013-01-11 11:22:27 -08002056JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2057 ScopedObjectAccess soa(Thread::Current());
2058 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2059 Thread* thread;
2060 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2061 if (error != JDWP::ERR_NONE) {
2062 return error;
2063 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002064 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002065 return JDWP::ERR_NONE;
2066}
2067
Elliott Hughescaf76542012-06-28 16:08:22 -07002068void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids) {
Ian Rogers365c1022012-06-22 15:05:28 -07002069 class ThreadListVisitor {
2070 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002071 ThreadListVisitor(const ScopedObjectAccessUnchecked& soa, mirror::Object* desired_thread_group,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002072 std::vector<JDWP::ObjectId>& thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002073 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
jeffhao0dfbb7e2012-11-28 15:26:03 -08002074 : soa_(soa), desired_thread_group_(desired_thread_group), thread_ids_(thread_ids) {}
Ian Rogers365c1022012-06-22 15:05:28 -07002075
Elliott Hughesa2155262011-11-16 16:26:58 -08002076 static void Visit(Thread* t, void* arg) {
2077 reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t);
2078 }
2079
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002080 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2081 // annotalysis.
2082 void Visit(Thread* t) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08002083 if (t == Dbg::GetDebugThread()) {
2084 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2085 // query all threads, so it's easier if we just don't tell them about this thread.
2086 return;
2087 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002088 mirror::Object* peer = t->GetPeer();
jeffhao0dfbb7e2012-11-28 15:26:03 -08002089 if (IsInDesiredThreadGroup(peer)) {
Ian Rogers120f1c72012-09-28 17:17:10 -07002090 thread_ids_.push_back(gRegistry->Add(peer));
Elliott Hughesa2155262011-11-16 16:26:58 -08002091 }
2092 }
2093
Ian Rogers365c1022012-06-22 15:05:28 -07002094 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002095 bool IsInDesiredThreadGroup(mirror::Object* peer)
jeffhao0dfbb7e2012-11-28 15:26:03 -08002096 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao0dfbb7e2012-11-28 15:26:03 -08002097 // peer might be NULL if the thread is still starting up.
2098 if (peer == NULL) {
2099 // We can't tell the debugger about this thread yet.
2100 // TODO: if we identified threads to the debugger by their Thread*
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002101 // rather than their peer's mirror::Object*, we could fix this.
jeffhao0dfbb7e2012-11-28 15:26:03 -08002102 // Doing so might help us report ZOMBIE threads too.
2103 return false;
2104 }
jeffhaoc1e04902012-12-13 12:41:10 -08002105 // Do we want threads from all thread groups?
2106 if (desired_thread_group_ == NULL) {
2107 return true;
2108 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002109 mirror::Object* group = soa_.DecodeField(WellKnownClasses::java_lang_Thread_group)->GetObject(peer);
jeffhao0dfbb7e2012-11-28 15:26:03 -08002110 return (group == desired_thread_group_);
2111 }
2112
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002113 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002114 mirror::Object* const desired_thread_group_;
Elliott Hughescaf76542012-06-28 16:08:22 -07002115 std::vector<JDWP::ObjectId>& thread_ids_;
Elliott Hughesa2155262011-11-16 16:26:58 -08002116 };
2117
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002118 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002119 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002120 ThreadListVisitor tlv(soa, thread_group, thread_ids);
Ian Rogers50b35e22012-10-04 10:09:15 -07002121 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -07002122 Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv);
Elliott Hughescaf76542012-06-28 16:08:22 -07002123}
Elliott Hughesa2155262011-11-16 16:26:58 -08002124
Elliott Hughescaf76542012-06-28 16:08:22 -07002125void Dbg::GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002126 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002127 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughescaf76542012-06-28 16:08:22 -07002128
2129 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Brian Carlstromea46f952013-07-30 01:26:50 -07002130 mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002131 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Elliott Hughescaf76542012-06-28 16:08:22 -07002132
2133 // Get the array and size out of the ArrayList<ThreadGroup>...
Brian Carlstromea46f952013-07-30 01:26:50 -07002134 mirror::ArtField* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;");
2135 mirror::ArtField* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002136 mirror::ObjectArray<mirror::Object>* groups_array =
2137 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
Elliott Hughescaf76542012-06-28 16:08:22 -07002138 const int32_t size = size_field->GetInt(groups_array_list);
2139
2140 // Copy the first 'size' elements out of the array into the result.
2141 for (int32_t i = 0; i < size; ++i) {
2142 child_thread_group_ids.push_back(gRegistry->Add(groups_array->Get(i)));
Elliott Hughesa2155262011-11-16 16:26:58 -08002143 }
2144}
2145
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002146static int GetStackDepth(Thread* thread)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002147 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002148 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07002149 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002150 : StackVisitor(thread, NULL), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002151
Elliott Hughes64f574f2013-02-20 14:57:12 -08002152 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2153 // annotalysis.
2154 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002155 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002156 ++depth;
2157 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002158 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002159 }
2160 size_t depth;
2161 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002162
Ian Rogers7a22fa62013-01-23 12:16:16 -08002163 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002164 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002165 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002166}
2167
Elliott Hughes221229c2013-01-08 18:17:50 -08002168JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002169 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002170 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002171 Thread* thread;
2172 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2173 if (error != JDWP::ERR_NONE) {
2174 return error;
2175 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002176 if (!IsSuspendedForDebugger(soa, thread)) {
2177 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2178 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002179 result = GetStackDepth(thread);
2180 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002181}
2182
Ian Rogers306057f2012-11-26 12:45:53 -08002183JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2184 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002185 class GetFrameVisitor : public StackVisitor {
2186 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08002187 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002188 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002189 : StackVisitor(thread, NULL), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002190 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
2191 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002192 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002193
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002194 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2195 // annotalysis.
2196 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002197 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002198 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002199 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002200 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002201 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002202 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002203 if (depth_ >= start_frame_) {
2204 JDWP::FrameId frame_id(GetFrameId());
2205 JDWP::JdwpLocation location;
2206 SetLocation(location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002207 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002208 expandBufAdd8BE(buf_, frame_id);
2209 expandBufAddLocation(buf_, location);
2210 }
2211 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002212 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002213 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002214
2215 private:
2216 size_t depth_;
2217 const size_t start_frame_;
2218 const size_t frame_count_;
2219 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002220 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002221
2222 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002223 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002224 Thread* thread;
2225 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2226 if (error != JDWP::ERR_NONE) {
2227 return error;
2228 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002229 if (!IsSuspendedForDebugger(soa, thread)) {
2230 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2231 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002232 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002233 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002234 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002235}
2236
2237JDWP::ObjectId Dbg::GetThreadSelfId() {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002238 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08002239 return gRegistry->Add(soa.Self()->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002240}
2241
Elliott Hughes475fc232011-10-25 15:00:35 -07002242void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002243 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002244}
2245
2246void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07002247 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002248}
2249
Elliott Hughes221229c2013-01-08 18:17:50 -08002250JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002251 ScopedLocalRef<jobject> peer(Thread::Current()->GetJniEnv(), NULL);
2252 {
2253 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002254 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002255 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002256 if (peer.get() == NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002257 return JDWP::ERR_THREAD_NOT_ALIVE;
2258 }
2259 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002260 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002261 Thread* thread = ThreadList::SuspendThreadByPeer(peer.get(), request_suspension, true,
2262 &timed_out);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002263 if (thread != NULL) {
2264 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002265 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002266 return JDWP::ERR_INTERNAL;
2267 } else {
2268 return JDWP::ERR_THREAD_NOT_ALIVE;
2269 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002270}
2271
Elliott Hughes221229c2013-01-08 18:17:50 -08002272void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002273 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002274 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
jeffhaoa77f0f62012-12-05 17:19:31 -08002275 Thread* thread;
2276 {
2277 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2278 thread = Thread::FromManagedThread(soa, peer);
2279 }
Elliott Hughes4e235312011-12-02 11:34:15 -08002280 if (thread == NULL) {
2281 LOG(WARNING) << "No such thread for resume: " << peer;
2282 return;
2283 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002284 bool needs_resume;
2285 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002286 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002287 needs_resume = thread->GetSuspendCount() > 0;
2288 }
2289 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002290 Runtime::Current()->GetThreadList()->Resume(thread, true);
2291 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002292}
2293
2294void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002295 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002296}
2297
Ian Rogers0399dde2012-06-06 17:09:28 -07002298struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002299 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002300 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002301 : StackVisitor(thread, context), this_object(NULL), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002302
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002303 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2304 // annotalysis.
2305 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002306 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002307 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002308 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002309 this_object = GetThisObject();
2310 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002311 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002312 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002313
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002314 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002315 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002316};
2317
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002318JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2319 JDWP::ObjectId* result) {
2320 ScopedObjectAccessUnchecked soa(Thread::Current());
2321 Thread* thread;
2322 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002323 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002324 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2325 if (error != JDWP::ERR_NONE) {
2326 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002327 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002328 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002329 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2330 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002331 }
Ian Rogers700a4022014-05-19 16:49:03 -07002332 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002333 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002334 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002335 *result = gRegistry->Add(visitor.this_object);
2336 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002337}
2338
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002339JDWP::JdwpError Dbg::GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2340 JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002341 struct GetLocalVisitor : public StackVisitor {
Ian Rogers98379392014-02-24 16:53:16 -08002342 GetLocalVisitor(const ScopedObjectAccessUnchecked& soa, Thread* thread, Context* context,
2343 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002344 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers98379392014-02-24 16:53:16 -08002345 : StackVisitor(thread, context), soa_(soa), frame_id_(frame_id), slot_(slot), tag_(tag),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002346 buf_(buf), width_(width), error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002347
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002348 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2349 // annotalysis.
2350 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002351 if (GetFrameId() != frame_id_) {
2352 return true; // Not our frame, carry on.
Elliott Hughesdbb40792011-11-18 17:05:22 -08002353 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002354 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002355 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002356 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002357 if (m->IsNative()) {
2358 // We can't read local value from native method.
2359 error_ = JDWP::ERR_OPAQUE_FRAME;
2360 return false;
2361 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002362 uint16_t reg = DemangleSlot(slot_, m);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002363 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
Ian Rogers0399dde2012-06-06 17:09:28 -07002364 switch (tag_) {
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002365 case JDWP::JT_BOOLEAN: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002366 CHECK_EQ(width_, 1U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002367 uint32_t intVal;
2368 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2369 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2370 JDWP::Set1(buf_+1, intVal != 0);
2371 } else {
2372 VLOG(jdwp) << "failed to get boolean local " << reg;
2373 error_ = kFailureErrorCode;
2374 }
2375 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002376 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002377 case JDWP::JT_BYTE: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002378 CHECK_EQ(width_, 1U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002379 uint32_t intVal;
2380 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2381 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2382 JDWP::Set1(buf_+1, intVal);
2383 } else {
2384 VLOG(jdwp) << "failed to get byte local " << reg;
2385 error_ = kFailureErrorCode;
2386 }
2387 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002388 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002389 case JDWP::JT_SHORT:
2390 case JDWP::JT_CHAR: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002391 CHECK_EQ(width_, 2U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002392 uint32_t intVal;
2393 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2394 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2395 JDWP::Set2BE(buf_+1, intVal);
2396 } else {
2397 VLOG(jdwp) << "failed to get short/char local " << reg;
2398 error_ = kFailureErrorCode;
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002399 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002400 break;
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002401 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002402 case JDWP::JT_INT: {
2403 CHECK_EQ(width_, 4U);
2404 uint32_t intVal;
2405 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2406 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2407 JDWP::Set4BE(buf_+1, intVal);
2408 } else {
2409 VLOG(jdwp) << "failed to get int local " << reg;
2410 error_ = kFailureErrorCode;
Sebastien Hertz8ebd94a2014-06-17 09:49:21 +00002411 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002412 break;
Sebastien Hertz8ebd94a2014-06-17 09:49:21 +00002413 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002414 case JDWP::JT_FLOAT: {
2415 CHECK_EQ(width_, 4U);
2416 uint32_t intVal;
2417 if (GetVReg(m, reg, kFloatVReg, &intVal)) {
2418 VLOG(jdwp) << "get float local " << reg << " = " << intVal;
2419 JDWP::Set4BE(buf_+1, intVal);
2420 } else {
2421 VLOG(jdwp) << "failed to get float local " << reg;
2422 error_ = kFailureErrorCode;
2423 }
2424 break;
2425 }
2426 case JDWP::JT_ARRAY:
2427 case JDWP::JT_CLASS_LOADER:
2428 case JDWP::JT_CLASS_OBJECT:
2429 case JDWP::JT_OBJECT:
2430 case JDWP::JT_STRING:
2431 case JDWP::JT_THREAD:
2432 case JDWP::JT_THREAD_GROUP: {
2433 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
2434 uint32_t intVal;
2435 if (GetVReg(m, reg, kReferenceVReg, &intVal)) {
2436 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2437 VLOG(jdwp) << "get " << tag_ << " object local " << reg << " = " << o;
2438 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2439 LOG(FATAL) << "Register " << reg << " expected to hold " << tag_ << " object: " << o;
2440 }
2441 tag_ = TagFromObject(soa_, o);
2442 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2443 } else {
2444 VLOG(jdwp) << "failed to get " << tag_ << " object local " << reg;
2445 error_ = kFailureErrorCode;
2446 }
2447 break;
2448 }
2449 case JDWP::JT_DOUBLE: {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002450 CHECK_EQ(width_, 8U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002451 uint32_t lo;
2452 uint32_t hi;
2453 if (GetVReg(m, reg, kDoubleLoVReg, &lo) && GetVReg(m, reg + 1, kDoubleHiVReg, &hi)) {
2454 uint64_t longVal = (static_cast<uint64_t>(hi) << 32) | lo;
2455 VLOG(jdwp) << "get double local " << reg << " = "
2456 << hi << ":" << lo << " = " << longVal;
2457 JDWP::Set8BE(buf_+1, longVal);
2458 } else {
2459 VLOG(jdwp) << "failed to get double local " << reg;
2460 error_ = kFailureErrorCode;
2461 }
2462 break;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002463 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002464 case JDWP::JT_LONG: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002465 CHECK_EQ(width_, 8U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002466 uint32_t lo;
2467 uint32_t hi;
2468 if (GetVReg(m, reg, kLongLoVReg, &lo) && GetVReg(m, reg + 1, kLongHiVReg, &hi)) {
2469 uint64_t longVal = (static_cast<uint64_t>(hi) << 32) | lo;
2470 VLOG(jdwp) << "get long local " << reg << " = "
2471 << hi << ":" << lo << " = " << longVal;
2472 JDWP::Set8BE(buf_+1, longVal);
2473 } else {
2474 VLOG(jdwp) << "failed to get long local " << reg;
2475 error_ = kFailureErrorCode;
2476 }
2477 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002478 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002479 default:
2480 LOG(FATAL) << "Unknown tag " << tag_;
2481 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002482 }
2483
2484 // Prepend tag, which may have been updated.
2485 JDWP::Set1(buf_, tag_);
2486 return false;
2487 }
Ian Rogers98379392014-02-24 16:53:16 -08002488 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002489 const JDWP::FrameId frame_id_;
2490 const int slot_;
2491 JDWP::JdwpTag tag_;
2492 uint8_t* const buf_;
2493 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002494 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002495 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002496
2497 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002498 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002499 Thread* thread;
2500 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2501 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002502 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002503 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002504 // TODO check thread is suspended by the debugger ?
Ian Rogers700a4022014-05-19 16:49:03 -07002505 std::unique_ptr<Context> context(Context::Create());
Ian Rogers98379392014-02-24 16:53:16 -08002506 GetLocalVisitor visitor(soa, thread, context.get(), frame_id, slot, tag, buf, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002507 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002508 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002509}
2510
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002511JDWP::JdwpError Dbg::SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2512 JDWP::JdwpTag tag, uint64_t value, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002513 struct SetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002514 SetLocalVisitor(Thread* thread, Context* context,
Ian Rogers0399dde2012-06-06 17:09:28 -07002515 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
Ian Rogersca190662012-06-26 15:45:57 -07002516 size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002517 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002518 : StackVisitor(thread, context),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002519 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width),
2520 error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002521
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002522 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2523 // annotalysis.
2524 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002525 if (GetFrameId() != frame_id_) {
2526 return true; // Not our frame, carry on.
2527 }
2528 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002529 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002530 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002531 if (m->IsNative()) {
2532 // We can't read local value from native method.
2533 error_ = JDWP::ERR_OPAQUE_FRAME;
2534 return false;
2535 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002536 uint16_t reg = DemangleSlot(slot_, m);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002537 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
Ian Rogers0399dde2012-06-06 17:09:28 -07002538 switch (tag_) {
2539 case JDWP::JT_BOOLEAN:
2540 case JDWP::JT_BYTE:
2541 CHECK_EQ(width_, 1U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002542 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2543 VLOG(jdwp) << "failed to set boolean/byte local " << reg << " = "
2544 << static_cast<uint32_t>(value_);
2545 error_ = kFailureErrorCode;
2546 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002547 break;
2548 case JDWP::JT_SHORT:
2549 case JDWP::JT_CHAR:
2550 CHECK_EQ(width_, 2U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002551 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2552 VLOG(jdwp) << "failed to set short/char local " << reg << " = "
2553 << static_cast<uint32_t>(value_);
2554 error_ = kFailureErrorCode;
2555 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002556 break;
2557 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002558 CHECK_EQ(width_, 4U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002559 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2560 VLOG(jdwp) << "failed to set int local " << reg << " = "
2561 << static_cast<uint32_t>(value_);
2562 error_ = kFailureErrorCode;
2563 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002564 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002565 case JDWP::JT_FLOAT:
2566 CHECK_EQ(width_, 4U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002567 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kFloatVReg)) {
2568 VLOG(jdwp) << "failed to set float local " << reg << " = "
2569 << static_cast<uint32_t>(value_);
2570 error_ = kFailureErrorCode;
2571 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002572 break;
2573 case JDWP::JT_ARRAY:
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002574 case JDWP::JT_CLASS_LOADER:
2575 case JDWP::JT_CLASS_OBJECT:
Ian Rogers0399dde2012-06-06 17:09:28 -07002576 case JDWP::JT_OBJECT:
2577 case JDWP::JT_STRING:
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002578 case JDWP::JT_THREAD:
2579 case JDWP::JT_THREAD_GROUP: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002580 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002581 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value_));
Elliott Hughes64f574f2013-02-20 14:57:12 -08002582 if (o == ObjectRegistry::kInvalidObject) {
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002583 VLOG(jdwp) << tag_ << " object " << o << " is an invalid object";
2584 error_ = JDWP::ERR_INVALID_OBJECT;
2585 } else if (!SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2586 kReferenceVReg)) {
2587 VLOG(jdwp) << "failed to set " << tag_ << " object local " << reg << " = " << o;
2588 error_ = kFailureErrorCode;
Ian Rogers0399dde2012-06-06 17:09:28 -07002589 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002590 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002591 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002592 case JDWP::JT_DOUBLE: {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002593 CHECK_EQ(width_, 8U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002594 const uint32_t lo = static_cast<uint32_t>(value_);
2595 const uint32_t hi = static_cast<uint32_t>(value_ >> 32);
2596 bool success = SetVReg(m, reg, lo, kDoubleLoVReg);
2597 success &= SetVReg(m, reg + 1, hi, kDoubleHiVReg);
2598 if (!success) {
2599 uint64_t longVal = (static_cast<uint64_t>(hi) << 32) | lo;
2600 VLOG(jdwp) << "failed to set double local " << reg << " = "
2601 << hi << ":" << lo << " = " << longVal;
2602 error_ = kFailureErrorCode;
2603 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002604 break;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002605 }
2606 case JDWP::JT_LONG: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002607 CHECK_EQ(width_, 8U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002608 const uint32_t lo = static_cast<uint32_t>(value_);
2609 const uint32_t hi = static_cast<uint32_t>(value_ >> 32);
2610 bool success = SetVReg(m, reg, lo, kLongLoVReg);
2611 success &= SetVReg(m, reg + 1, hi, kLongHiVReg);
2612 if (!success) {
2613 uint64_t longVal = (static_cast<uint64_t>(hi) << 32) | lo;
2614 VLOG(jdwp) << "failed to set double local " << reg << " = "
2615 << hi << ":" << lo << " = " << longVal;
2616 error_ = kFailureErrorCode;
2617 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002618 break;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002619 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002620 default:
2621 LOG(FATAL) << "Unknown tag " << tag_;
2622 break;
2623 }
2624 return false;
2625 }
2626
2627 const JDWP::FrameId frame_id_;
2628 const int slot_;
2629 const JDWP::JdwpTag tag_;
2630 const uint64_t value_;
2631 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002632 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002633 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002634
2635 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002636 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002637 Thread* thread;
2638 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2639 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002640 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002641 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002642 // TODO check thread is suspended by the debugger ?
Ian Rogers700a4022014-05-19 16:49:03 -07002643 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002644 SetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, value, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002645 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002646 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002647}
2648
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002649JDWP::ObjectId Dbg::GetThisObjectIdForEvent(mirror::Object* this_object) {
2650 // If 'this_object' isn't already in the registry, we know that we're not looking for it, so
2651 // there's no point adding it to the registry and burning through ids.
2652 // When registering an event request with an instance filter, we've been given an existing object
2653 // id so it must already be present in the registry when the event fires.
2654 JDWP::ObjectId this_id = 0;
2655 if (this_object != nullptr && gRegistry->Contains(this_object)) {
2656 this_id = gRegistry->Add(this_object);
2657 }
2658 return this_id;
2659}
2660
Ian Rogersef7d42f2014-01-06 12:55:46 -08002661void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002662 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002663 if (!IsDebuggerActive()) {
2664 return;
2665 }
2666 DCHECK(m != nullptr);
2667 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002668 JDWP::JdwpLocation location;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002669 SetLocation(location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002670
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002671 // We need 'this' for InstanceOnly filters only.
2672 JDWP::ObjectId this_id = GetThisObjectIdForEvent(this_object);
Jeff Hao579b0242013-11-18 13:16:49 -08002673 gJdwpState->PostLocationEvent(&location, this_id, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002674}
2675
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002676void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
2677 mirror::Object* this_object, mirror::ArtField* f) {
2678 if (!IsDebuggerActive()) {
2679 return;
2680 }
2681 DCHECK(m != nullptr);
2682 DCHECK(f != nullptr);
2683 JDWP::JdwpLocation location;
2684 SetLocation(location, m, dex_pc);
2685
2686 JDWP::RefTypeId type_id = gRegistry->AddRefType(f->GetDeclaringClass());
2687 JDWP::FieldId field_id = ToFieldId(f);
2688 JDWP::ObjectId this_id = gRegistry->Add(this_object);
2689
2690 gJdwpState->PostFieldEvent(&location, type_id, field_id, this_id, nullptr, false);
2691}
2692
2693void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
2694 mirror::Object* this_object, mirror::ArtField* f,
2695 const JValue* field_value) {
2696 if (!IsDebuggerActive()) {
2697 return;
2698 }
2699 DCHECK(m != nullptr);
2700 DCHECK(f != nullptr);
2701 DCHECK(field_value != nullptr);
2702 JDWP::JdwpLocation location;
2703 SetLocation(location, m, dex_pc);
2704
2705 JDWP::RefTypeId type_id = gRegistry->AddRefType(f->GetDeclaringClass());
2706 JDWP::FieldId field_id = ToFieldId(f);
2707 JDWP::ObjectId this_id = gRegistry->Add(this_object);
2708
2709 gJdwpState->PostFieldEvent(&location, type_id, field_id, this_id, field_value, true);
2710}
2711
2712void Dbg::PostException(const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002713 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002714 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002715 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002716 return;
2717 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002718
Ian Rogers62d6c772013-02-27 08:32:07 -08002719 JDWP::JdwpLocation jdwp_throw_location;
2720 SetLocation(jdwp_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002721 JDWP::JdwpLocation catch_location;
Elliott Hughescaf76542012-06-28 16:08:22 -07002722 SetLocation(catch_location, catch_method, catch_dex_pc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002723
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002724 // We need 'this' for InstanceOnly filters only.
2725 JDWP::ObjectId this_id = GetThisObjectIdForEvent(throw_location.GetThis());
Elliott Hughes64f574f2013-02-20 14:57:12 -08002726 JDWP::ObjectId exception_id = gRegistry->Add(exception_object);
2727 JDWP::RefTypeId exception_class_id = gRegistry->AddRefType(exception_object->GetClass());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002728
Ian Rogers62d6c772013-02-27 08:32:07 -08002729 gJdwpState->PostException(&jdwp_throw_location, exception_id, exception_class_id, &catch_location,
2730 this_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002731}
2732
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002733void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002734 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002735 return;
2736 }
2737
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002738 // OLD-TODO - we currently always send both "verified" and "prepared" since
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002739 // debuggers seem to like that. There might be some advantage to honesty,
2740 // since the class may not yet be verified.
2741 int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01002742 JDWP::JdwpTypeTag tag = GetTypeTag(c);
Mathieu Chartierf8322842014-05-16 10:59:25 -07002743 gJdwpState->PostClassPrepare(tag, gRegistry->Add(c), c->GetDescriptor(), state);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002744}
2745
Ian Rogers62d6c772013-02-27 08:32:07 -08002746void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002747 mirror::ArtMethod* m, uint32_t dex_pc,
2748 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002749 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002750 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002751 }
2752
Elliott Hughes86964332012-02-15 19:37:42 -08002753 if (IsBreakpoint(m, dex_pc)) {
2754 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002755 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002756
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002757 // If the debugger is single-stepping one of our threads, check to
2758 // see if we're that thread and we've reached a step point.
2759 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2760 DCHECK(single_step_control != nullptr);
2761 if (single_step_control->is_active) {
2762 CHECK(!m->IsNative());
2763 if (single_step_control->step_depth == JDWP::SD_INTO) {
2764 // Step into method calls. We break when the line number
2765 // or method pointer changes. If we're in SS_MIN mode, we
2766 // always stop.
2767 if (single_step_control->method != m) {
2768 event_flags |= kSingleStep;
2769 VLOG(jdwp) << "SS new method";
2770 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2771 event_flags |= kSingleStep;
2772 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002773 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002774 event_flags |= kSingleStep;
2775 VLOG(jdwp) << "SS new line";
2776 }
2777 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2778 // Step over method calls. We break when the line number is
2779 // different and the frame depth is <= the original frame
2780 // depth. (We can't just compare on the method, because we
2781 // might get unrolled past it by an exception, and it's tricky
2782 // to identify recursion.)
2783
2784 int stack_depth = GetStackDepth(thread);
2785
2786 if (stack_depth < single_step_control->stack_depth) {
2787 // Popped up one or more frames, always trigger.
2788 event_flags |= kSingleStep;
2789 VLOG(jdwp) << "SS method pop";
2790 } else if (stack_depth == single_step_control->stack_depth) {
2791 // Same depth, see if we moved.
2792 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002793 event_flags |= kSingleStep;
2794 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002795 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002796 event_flags |= kSingleStep;
2797 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002798 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002799 }
2800 } else {
2801 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2802 // Return from the current method. We break when the frame
2803 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002804
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002805 // This differs from the "method exit" break in that it stops
2806 // with the PC at the next instruction in the returned-to
2807 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002808
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002809 int stack_depth = GetStackDepth(thread);
2810 if (stack_depth < single_step_control->stack_depth) {
2811 event_flags |= kSingleStep;
2812 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002813 }
2814 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002815 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002816
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002817 // If there's something interesting going on, see if it matches one
2818 // of the debugger filters.
2819 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002820 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002821 }
2822}
2823
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002824size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2825 switch (instrumentation_event) {
2826 case instrumentation::Instrumentation::kMethodEntered:
2827 return &method_enter_event_ref_count_;
2828 case instrumentation::Instrumentation::kMethodExited:
2829 return &method_exit_event_ref_count_;
2830 case instrumentation::Instrumentation::kDexPcMoved:
2831 return &dex_pc_change_event_ref_count_;
2832 case instrumentation::Instrumentation::kFieldRead:
2833 return &field_read_event_ref_count_;
2834 case instrumentation::Instrumentation::kFieldWritten:
2835 return &field_write_event_ref_count_;
2836 case instrumentation::Instrumentation::kExceptionCaught:
2837 return &exception_catch_event_ref_count_;
2838 default:
2839 return nullptr;
2840 }
2841}
2842
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002843// Process request while all mutator threads are suspended.
2844void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002845 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002846 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002847 case DeoptimizationRequest::kNothing:
2848 LOG(WARNING) << "Ignoring empty deoptimization request.";
2849 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002850 case DeoptimizationRequest::kRegisterForEvent:
2851 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002852 request.InstrumentationEvent());
2853 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
2854 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002855 break;
2856 case DeoptimizationRequest::kUnregisterForEvent:
2857 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002858 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002859 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002860 request.InstrumentationEvent());
2861 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002862 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002863 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002864 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002865 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002866 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002867 break;
2868 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002869 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002870 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002871 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002872 break;
2873 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002874 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
2875 instrumentation->Deoptimize(request.Method());
2876 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002877 break;
2878 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002879 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
2880 instrumentation->Undeoptimize(request.Method());
2881 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002882 break;
2883 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002884 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002885 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002886 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002887}
2888
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002889void Dbg::DelayFullUndeoptimization() {
2890 MutexLock mu(Thread::Current(), *deoptimization_lock_);
2891 ++delayed_full_undeoptimization_count_;
2892 DCHECK_LE(delayed_full_undeoptimization_count_, full_deoptimization_event_count_);
2893}
2894
2895void Dbg::ProcessDelayedFullUndeoptimizations() {
2896 // TODO: avoid taking the lock twice (once here and once in ManageDeoptimization).
2897 {
2898 MutexLock mu(Thread::Current(), *deoptimization_lock_);
2899 while (delayed_full_undeoptimization_count_ > 0) {
2900 DeoptimizationRequest req;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002901 req.SetKind(DeoptimizationRequest::kFullUndeoptimization);
2902 req.SetMethod(nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002903 RequestDeoptimizationLocked(req);
2904 --delayed_full_undeoptimization_count_;
2905 }
2906 }
2907 ManageDeoptimization();
2908}
2909
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002910void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002911 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002912 // Nothing to do.
2913 return;
2914 }
2915 MutexLock mu(Thread::Current(), *deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002916 RequestDeoptimizationLocked(req);
2917}
2918
2919void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002920 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002921 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002922 DCHECK_NE(req.InstrumentationEvent(), 0u);
2923 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002924 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002925 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002926 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02002927 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002928 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002929 deoptimization_requests_.push_back(req);
2930 }
2931 *counter = *counter + 1;
2932 break;
2933 }
2934 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002935 DCHECK_NE(req.InstrumentationEvent(), 0u);
2936 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002937 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002938 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002939 *counter = *counter - 1;
2940 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02002941 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002942 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002943 deoptimization_requests_.push_back(req);
2944 }
2945 break;
2946 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002947 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002948 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002949 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002950 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2951 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002952 deoptimization_requests_.push_back(req);
2953 }
2954 ++full_deoptimization_event_count_;
2955 break;
2956 }
2957 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002958 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02002959 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002960 --full_deoptimization_event_count_;
2961 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002962 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2963 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002964 deoptimization_requests_.push_back(req);
2965 }
2966 break;
2967 }
2968 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002969 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002970 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002971 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002972 deoptimization_requests_.push_back(req);
2973 break;
2974 }
2975 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002976 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002977 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002978 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002979 deoptimization_requests_.push_back(req);
2980 break;
2981 }
2982 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002983 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002984 break;
2985 }
2986 }
2987}
2988
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002989void Dbg::ManageDeoptimization() {
2990 Thread* const self = Thread::Current();
2991 {
2992 // Avoid suspend/resume if there is no pending request.
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002993 MutexLock mu(self, *deoptimization_lock_);
2994 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002995 return;
2996 }
2997 }
2998 CHECK_EQ(self->GetState(), kRunnable);
2999 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3000 // We need to suspend mutator threads first.
3001 Runtime* const runtime = Runtime::Current();
3002 runtime->GetThreadList()->SuspendAll();
3003 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003004 {
3005 MutexLock mu(self, *deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003006 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003007 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003008 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003009 ProcessDeoptimizationRequest(request);
3010 }
3011 deoptimization_requests_.clear();
3012 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003013 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3014 runtime->GetThreadList()->ResumeAll();
3015 self->TransitionFromSuspendedToRunnable();
3016}
3017
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003018static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3019 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003020 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003021 if (code_item == nullptr) {
3022 // TODO We should not be asked to watch location in a native or abstract method so the code item
3023 // should never be null. We could just check we never encounter this case.
3024 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003025 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003026 StackHandleScope<2> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003027 mirror::Class* declaring_class = m->GetDeclaringClass();
3028 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3029 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
3030 verifier::MethodVerifier verifier(dex_cache->GetDexFile(), &dex_cache, &class_loader,
3031 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), m,
Ian Rogers46960fe2014-05-23 10:43:43 -07003032 m->GetAccessFlags(), false, true, false);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003033 // Note: we don't need to verify the method.
3034 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3035}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003036
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003037static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003038 EXCLUSIVE_LOCKS_REQUIRED(Locks::breakpoint_lock_) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
3039 for (Breakpoint& breakpoint : gBreakpoints) {
3040 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003041 return &breakpoint;
3042 }
3043 }
3044 return nullptr;
3045}
3046
3047// Sanity checks all existing breakpoints on the same method.
3048static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m, bool need_full_deoptimization)
3049 EXCLUSIVE_LOCKS_REQUIRED(Locks::breakpoint_lock_) {
3050 if (kIsDebugBuild) {
3051 for (const Breakpoint& breakpoint : gBreakpoints) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003052 CHECK_EQ(need_full_deoptimization, breakpoint.NeedFullDeoptimization());
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003053 }
3054 if (need_full_deoptimization) {
3055 // We should have deoptimized everything but not "selectively" deoptimized this method.
3056 CHECK(Runtime::Current()->GetInstrumentation()->AreAllMethodsDeoptimized());
3057 CHECK(!Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3058 } else {
3059 // We should have "selectively" deoptimized this method.
3060 // Note: while we have not deoptimized everything for this method, we may have done it for
3061 // another event.
3062 CHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3063 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003064 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003065}
3066
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003067// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3068// request if we need to deoptimize.
3069void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3070 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003071 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003072 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003073
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003074 MutexLock mu(self, *Locks::breakpoint_lock_);
3075 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3076 bool need_full_deoptimization;
3077 if (existing_breakpoint == nullptr) {
3078 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3079 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3080 need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3081 if (need_full_deoptimization) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003082 req->SetKind(DeoptimizationRequest::kFullDeoptimization);
3083 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003084 } else {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003085 req->SetKind(DeoptimizationRequest::kSelectiveDeoptimization);
3086 req->SetMethod(m);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003087 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003088 } else {
3089 // There is at least one breakpoint for this method: we don't need to deoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003090 req->SetKind(DeoptimizationRequest::kNothing);
3091 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003092
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003093 need_full_deoptimization = existing_breakpoint->NeedFullDeoptimization();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003094 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003095 }
3096
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003097 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, need_full_deoptimization));
3098 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3099 << gBreakpoints[gBreakpoints.size() - 1];
3100}
3101
3102// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3103// request if we need to undeoptimize.
3104void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003105 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003106 mirror::ArtMethod* m = FromMethodId(location->method_id);
3107 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003108 bool need_full_deoptimization = false;
3109 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003110 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003111 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003112 need_full_deoptimization = gBreakpoints[i].NeedFullDeoptimization();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003113 DCHECK_NE(need_full_deoptimization, Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3114 gBreakpoints.erase(gBreakpoints.begin() + i);
3115 break;
3116 }
3117 }
3118 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3119 if (existing_breakpoint == nullptr) {
3120 // There is no more breakpoint on this method: we need to undeoptimize.
3121 if (need_full_deoptimization) {
3122 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003123 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3124 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003125 } else {
3126 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003127 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3128 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003129 }
3130 } else {
3131 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003132 req->SetKind(DeoptimizationRequest::kNothing);
3133 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003134 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
Elliott Hughes86964332012-02-15 19:37:42 -08003135 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003136}
3137
Jeff Hao449db332013-04-12 18:30:52 -07003138// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3139// cause suspension if the thread is the current thread.
3140class ScopedThreadSuspension {
3141 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003142 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003143 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003144 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Jeff Hao449db332013-04-12 18:30:52 -07003145 thread_(NULL),
3146 error_(JDWP::ERR_NONE),
3147 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003148 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003149 ScopedObjectAccessUnchecked soa(self);
3150 {
3151 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
3152 error_ = DecodeThread(soa, thread_id, thread_);
3153 }
3154 if (error_ == JDWP::ERR_NONE) {
3155 if (thread_ == soa.Self()) {
3156 self_suspend_ = true;
3157 } else {
3158 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
3159 jobject thread_peer = gRegistry->GetJObject(thread_id);
3160 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003161 Thread* suspended_thread = ThreadList::SuspendThreadByPeer(thread_peer, true, true,
3162 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07003163 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
3164 if (suspended_thread == NULL) {
3165 // Thread terminated from under us while suspending.
3166 error_ = JDWP::ERR_INVALID_THREAD;
3167 } else {
3168 CHECK_EQ(suspended_thread, thread_);
3169 other_suspend_ = true;
3170 }
3171 }
3172 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003173 }
Elliott Hughes86964332012-02-15 19:37:42 -08003174
Jeff Hao449db332013-04-12 18:30:52 -07003175 Thread* GetThread() const {
3176 return thread_;
3177 }
3178
3179 JDWP::JdwpError GetError() const {
3180 return error_;
3181 }
3182
3183 ~ScopedThreadSuspension() {
3184 if (other_suspend_) {
3185 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3186 }
3187 }
3188
3189 private:
3190 Thread* thread_;
3191 JDWP::JdwpError error_;
3192 bool self_suspend_;
3193 bool other_suspend_;
3194};
3195
3196JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3197 JDWP::JdwpStepDepth step_depth) {
3198 Thread* self = Thread::Current();
3199 ScopedThreadSuspension sts(self, thread_id);
3200 if (sts.GetError() != JDWP::ERR_NONE) {
3201 return sts.GetError();
3202 }
3203
Elliott Hughes2435a572012-02-17 16:07:41 -08003204 //
3205 // Work out what Method* we're in, the current line number, and how deep the stack currently
3206 // is for step-out.
3207 //
3208
Ian Rogers0399dde2012-06-06 17:09:28 -07003209 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003210 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
3211 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003212 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003213 : StackVisitor(thread, NULL), single_step_control_(single_step_control),
3214 line_number_(line_number) {
3215 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
3216 single_step_control_->method = NULL;
3217 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08003218 }
Ian Rogersca190662012-06-26 15:45:57 -07003219
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003220 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3221 // annotalysis.
3222 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003223 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003224 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003225 ++single_step_control_->stack_depth;
3226 if (single_step_control_->method == NULL) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003227 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003228 single_step_control_->method = m;
3229 *line_number_ = -1;
Elliott Hughes2435a572012-02-17 16:07:41 -08003230 if (dex_cache != NULL) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003231 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003232 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003233 }
Elliott Hughes86964332012-02-15 19:37:42 -08003234 }
3235 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003236 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003237 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003238
3239 SingleStepControl* const single_step_control_;
3240 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08003241 };
Jeff Hao449db332013-04-12 18:30:52 -07003242
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003243 Thread* const thread = sts.GetThread();
3244 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
3245 DCHECK(single_step_control != nullptr);
3246 int32_t line_number = -1;
3247 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07003248 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003249
Elliott Hughes2435a572012-02-17 16:07:41 -08003250 //
3251 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
3252 //
3253
3254 struct DebugCallbackContext {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003255 explicit DebugCallbackContext(SingleStepControl* single_step_control, int32_t line_number,
3256 const DexFile::CodeItem* code_item)
3257 : single_step_control_(single_step_control), line_number_(line_number), code_item_(code_item),
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003258 last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003259 }
3260
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003261 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003262 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003263 if (static_cast<int32_t>(line_number) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003264 if (!context->last_pc_valid) {
3265 // Everything from this address until the next line change is ours.
3266 context->last_pc = address;
3267 context->last_pc_valid = true;
3268 }
3269 // Otherwise, if we're already in a valid range for this line,
3270 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003271 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003272 // Add everything from the last entry up until here to the set
3273 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003274 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003275 }
3276 context->last_pc_valid = false;
3277 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003278 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003279 }
3280
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003281 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003282 // If the line number was the last in the position table...
3283 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003284 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003285 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003286 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003287 }
3288 }
3289 }
3290
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003291 SingleStepControl* const single_step_control_;
3292 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003293 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003294 bool last_pc_valid;
3295 uint32_t last_pc;
3296 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003297 single_step_control->dex_pcs.clear();
Ian Rogersef7d42f2014-01-06 12:55:46 -08003298 mirror::ArtMethod* m = single_step_control->method;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003299 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003300 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003301 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003302 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
3303 DebugCallbackContext::Callback, NULL, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003304 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003305
3306 //
3307 // Everything else...
3308 //
3309
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003310 single_step_control->step_size = step_size;
3311 single_step_control->step_depth = step_depth;
3312 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08003313
Elliott Hughes2435a572012-02-17 16:07:41 -08003314 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003315 VLOG(jdwp) << "Single-step thread: " << *thread;
3316 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
3317 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
3318 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
3319 VLOG(jdwp) << "Single-step current line: " << line_number;
3320 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08003321 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003322 for (uint32_t dex_pc : single_step_control->dex_pcs) {
3323 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003324 }
3325 }
3326
3327 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003328}
3329
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003330void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3331 ScopedObjectAccessUnchecked soa(Thread::Current());
3332 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
3333 Thread* thread;
3334 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003335 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003336 SingleStepControl* single_step_control = thread->GetSingleStepControl();
3337 DCHECK(single_step_control != nullptr);
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003338 single_step_control->Clear();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003339 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003340}
3341
Elliott Hughes45651fd2012-02-21 15:48:20 -08003342static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3343 switch (tag) {
3344 default:
3345 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
3346
3347 // Primitives.
3348 case JDWP::JT_BYTE: return 'B';
3349 case JDWP::JT_CHAR: return 'C';
3350 case JDWP::JT_FLOAT: return 'F';
3351 case JDWP::JT_DOUBLE: return 'D';
3352 case JDWP::JT_INT: return 'I';
3353 case JDWP::JT_LONG: return 'J';
3354 case JDWP::JT_SHORT: return 'S';
3355 case JDWP::JT_VOID: return 'V';
3356 case JDWP::JT_BOOLEAN: return 'Z';
3357
3358 // Reference types.
3359 case JDWP::JT_ARRAY:
3360 case JDWP::JT_OBJECT:
3361 case JDWP::JT_STRING:
3362 case JDWP::JT_THREAD:
3363 case JDWP::JT_THREAD_GROUP:
3364 case JDWP::JT_CLASS_LOADER:
3365 case JDWP::JT_CLASS_OBJECT:
3366 return 'L';
3367 }
3368}
3369
Elliott Hughes88d63092013-01-09 09:55:54 -08003370JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3371 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003372 uint32_t arg_count, uint64_t* arg_values,
3373 JDWP::JdwpTag* arg_types, uint32_t options,
3374 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3375 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003376 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3377
3378 Thread* targetThread = NULL;
3379 DebugInvokeReq* req = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003380 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003381 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003382 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003383 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08003384 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread);
3385 if (error != JDWP::ERR_NONE) {
3386 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3387 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003388 }
3389 req = targetThread->GetInvokeReq();
3390 if (!req->ready) {
3391 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3392 return JDWP::ERR_INVALID_THREAD;
3393 }
3394
3395 /*
3396 * We currently have a bug where we don't successfully resume the
3397 * target thread if the suspend count is too deep. We're expected to
3398 * require one "resume" for each "suspend", but when asked to execute
3399 * a method we have to resume fully and then re-suspend it back to the
3400 * same level. (The easiest way to cause this is to type "suspend"
3401 * multiple times in jdb.)
3402 *
3403 * It's unclear what this means when the event specifies "resume all"
3404 * and some threads are suspended more deeply than others. This is
3405 * a rare problem, so for now we just prevent it from hanging forever
3406 * by rejecting the method invocation request. Without this, we will
3407 * be stuck waiting on a suspended thread.
3408 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003409 int suspend_count;
3410 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003411 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003412 suspend_count = targetThread->GetSuspendCount();
3413 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003414 if (suspend_count > 1) {
3415 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003416 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003417 }
3418
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003419 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003420 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08003421 if (receiver == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003422 return JDWP::ERR_INVALID_OBJECT;
3423 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003424
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003425 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08003426 if (thread == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003427 return JDWP::ERR_INVALID_OBJECT;
3428 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003429 // TODO: check that 'thread' is actually a java.lang.Thread!
3430
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003431 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003432 if (c == NULL) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003433 return status;
3434 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003435
Brian Carlstromea46f952013-07-30 01:26:50 -07003436 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003437 if (m->IsStatic() != (receiver == NULL)) {
3438 return JDWP::ERR_INVALID_METHODID;
3439 }
3440 if (m->IsStatic()) {
3441 if (m->GetDeclaringClass() != c) {
3442 return JDWP::ERR_INVALID_METHODID;
3443 }
3444 } else {
3445 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3446 return JDWP::ERR_INVALID_METHODID;
3447 }
3448 }
3449
3450 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003451 uint32_t shorty_len = 0;
3452 const char* shorty = m->GetShorty(&shorty_len);
3453 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003454 return JDWP::ERR_ILLEGAL_ARGUMENT;
3455 }
Elliott Hughes09201632013-04-15 15:50:07 -07003456
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003457 {
3458 StackHandleScope<3> hs(soa.Self());
3459 MethodHelper mh(hs.NewHandle(m));
3460 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3461 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3462 const DexFile::TypeList* types = m->GetParameterTypeList();
3463 for (size_t i = 0; i < arg_count; ++i) {
3464 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003465 return JDWP::ERR_ILLEGAL_ARGUMENT;
3466 }
3467
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003468 if (shorty[i + 1] == 'L') {
3469 // Did we really get an argument of an appropriate reference type?
3470 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
3471 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i]);
3472 if (argument == ObjectRegistry::kInvalidObject) {
3473 return JDWP::ERR_INVALID_OBJECT;
3474 }
3475 if (argument != NULL && !argument->InstanceOf(parameter_type)) {
3476 return JDWP::ERR_ILLEGAL_ARGUMENT;
3477 }
3478
3479 // Turn the on-the-wire ObjectId into a jobject.
3480 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3481 v.l = gRegistry->GetJObject(arg_values[i]);
3482 }
Elliott Hughes09201632013-04-15 15:50:07 -07003483 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003484 // Update in case it moved.
3485 m = mh.GetMethod();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003486 }
3487
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003488 req->receiver = receiver;
3489 req->thread = thread;
3490 req->klass = c;
3491 req->method = m;
3492 req->arg_count = arg_count;
3493 req->arg_values = arg_values;
3494 req->options = options;
3495 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003496 }
3497
3498 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3499 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3500 // call, and it's unwise to hold it during WaitForSuspend.
3501
3502 {
3503 /*
3504 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003505 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003506 * run out of memory. It's also a good idea to change it before locking
3507 * the invokeReq mutex, although that should never be held for long.
3508 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003509 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003510
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003511 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003512 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003513 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003514
3515 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003516 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003517 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003518 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003519 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003520 thread_list->Resume(targetThread, true);
3521 }
3522
3523 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003524 while (req->invoke_needed) {
3525 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003526 }
3527 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003528 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003529
3530 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003531 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003532 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003533 }
3534
3535 /*
3536 * Suspend the threads. We waited for the target thread to suspend
3537 * itself, so all we need to do is suspend the others.
3538 *
3539 * The suspendAllThreads() call will double-suspend the event thread,
3540 * so we want to resume the target thread once to keep the books straight.
3541 */
3542 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003543 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003544 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003545 thread_list->SuspendAllForDebugger();
3546 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003547 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003548 thread_list->Resume(targetThread, true);
3549 }
3550
3551 // Copy the result.
3552 *pResultTag = req->result_tag;
3553 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003554 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003555 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003556 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003557 }
3558 *pExceptionId = req->exception;
3559 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003560}
3561
3562void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003563 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003564
Elliott Hughes81ff3182012-03-23 20:35:56 -07003565 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003566 // to preserve that across the method invocation.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003567 StackHandleScope<4> hs(soa.Self());
3568 auto old_throw_this_object = hs.NewHandle<mirror::Object>(nullptr);
3569 auto old_throw_method = hs.NewHandle<mirror::ArtMethod>(nullptr);
3570 auto old_exception = hs.NewHandle<mirror::Throwable>(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003571 uint32_t old_throw_dex_pc;
Sebastien Hertz9f102032014-05-23 08:59:42 +02003572 bool old_exception_report_flag;
Ian Rogers62d6c772013-02-27 08:32:07 -08003573 {
3574 ThrowLocation old_throw_location;
3575 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003576 old_throw_this_object.Assign(old_throw_location.GetThis());
3577 old_throw_method.Assign(old_throw_location.GetMethod());
3578 old_exception.Assign(old_exception_obj);
Ian Rogers62d6c772013-02-27 08:32:07 -08003579 old_throw_dex_pc = old_throw_location.GetDexPc();
Sebastien Hertz9f102032014-05-23 08:59:42 +02003580 old_exception_report_flag = soa.Self()->IsExceptionReportedToInstrumentation();
Ian Rogers62d6c772013-02-27 08:32:07 -08003581 soa.Self()->ClearException();
3582 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003583
3584 // Translate the method through the vtable, unless the debugger wants to suppress it.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003585 Handle<mirror::ArtMethod> m(hs.NewHandle(pReq->method));
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003586 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != NULL) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003587 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.Get());
3588 if (actual_method != m.Get()) {
3589 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get()) << " to " << PrettyMethod(actual_method);
3590 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003591 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003592 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003593 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003594 << " receiver=" << pReq->receiver
3595 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003596 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003597
3598 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3599
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003600 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.Get()),
Ian Rogers53b8b092014-03-13 23:45:53 -07003601 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003602
Ian Rogers62d6c772013-02-27 08:32:07 -08003603 mirror::Throwable* exception = soa.Self()->GetException(NULL);
3604 soa.Self()->ClearException();
3605 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003606 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003607 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003608 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3609 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003610 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003611 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3612 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003613 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003614 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003615 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003616 pReq->result_tag = new_tag;
3617 }
3618
3619 /*
3620 * Register the object. We don't actually need an ObjectId yet,
3621 * but we do need to be sure that the GC won't move or discard the
3622 * object when we switch out of RUNNING. The ObjectId conversion
3623 * will add the object to the "do not touch" list.
3624 *
3625 * We can't use the "tracked allocation" mechanism here because
3626 * the object is going to be handed off to a different thread.
3627 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003628 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003629 }
3630
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003631 if (old_exception.Get() != NULL) {
3632 ThrowLocation gc_safe_throw_location(old_throw_this_object.Get(), old_throw_method.Get(),
Ian Rogers62d6c772013-02-27 08:32:07 -08003633 old_throw_dex_pc);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003634 soa.Self()->SetException(gc_safe_throw_location, old_exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +02003635 soa.Self()->SetExceptionReportedToInstrumentation(old_exception_report_flag);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003636 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003637}
3638
Elliott Hughesd07986f2011-12-06 18:27:45 -08003639/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003640 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003641 * need to process each, accumulate the replies, and ship the whole thing
3642 * back.
3643 *
3644 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3645 * and includes the chunk type/length, followed by the data.
3646 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003647 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003648 * chunk. If this becomes inconvenient we will need to adapt.
3649 */
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003650bool Dbg::DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003651 Thread* self = Thread::Current();
3652 JNIEnv* env = self->GetJniEnv();
3653
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003654 uint32_t type = request.ReadUnsigned32("type");
3655 uint32_t length = request.ReadUnsigned32("length");
3656
3657 // Create a byte[] corresponding to 'request'.
3658 size_t request_length = request.size();
3659 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003660 if (dataArray.get() == NULL) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003661 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003662 env->ExceptionClear();
3663 return false;
3664 }
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003665 env->SetByteArrayRegion(dataArray.get(), 0, request_length, reinterpret_cast<const jbyte*>(request.data()));
3666 request.Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003667
3668 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003669 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003670 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003671 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003672 return false;
3673 }
3674
3675 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003676 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3677 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003678 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003679 if (env->ExceptionCheck()) {
3680 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3681 env->ExceptionDescribe();
3682 env->ExceptionClear();
3683 return false;
3684 }
3685
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003686 if (chunk.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003687 return false;
3688 }
3689
3690 /*
3691 * Pull the pieces out of the chunk. We copy the results into a
3692 * newly-allocated buffer that the caller can free. We don't want to
3693 * continue using the Chunk object because nothing has a reference to it.
3694 *
3695 * We could avoid this by returning type/data/offset/length and having
3696 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003697 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003698 * if we have responses for multiple chunks.
3699 *
3700 * So we're pretty much stuck with copying data around multiple times.
3701 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003702 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 -08003703 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003704 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003705 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003706
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003707 VLOG(jdwp) << StringPrintf("DDM reply: type=0x%08x data=%p offset=%d length=%d", type, replyData.get(), offset, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003708 if (length == 0 || replyData.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003709 return false;
3710 }
3711
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003712 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003713 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
3714 if (reply == NULL) {
3715 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3716 return false;
3717 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003718 JDWP::Set4BE(reply + 0, type);
3719 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003720 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003721
3722 *pReplyBuf = reply;
3723 *pReplyLen = length + kChunkHdrLen;
3724
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003725 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003726 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003727}
3728
Elliott Hughesa2155262011-11-16 16:26:58 -08003729void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003730 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003731
3732 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003733 if (self->GetState() != kRunnable) {
3734 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3735 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003736 }
3737
3738 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003739 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003740 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3741 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3742 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003743 if (env->ExceptionCheck()) {
3744 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3745 env->ExceptionDescribe();
3746 env->ExceptionClear();
3747 }
3748}
3749
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003750void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003751 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003752}
3753
3754void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003755 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003756 gDdmThreadNotification = false;
3757}
3758
3759/*
Elliott Hughes82188472011-11-07 18:11:48 -08003760 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003761 *
3762 * Because we broadcast the full set of threads when the notifications are
3763 * first enabled, it's possible for "thread" to be actively executing.
3764 */
Elliott Hughes82188472011-11-07 18:11:48 -08003765void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003766 if (!gDdmThreadNotification) {
3767 return;
3768 }
3769
Elliott Hughes82188472011-11-07 18:11:48 -08003770 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003771 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003772 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003773 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003774 } else {
3775 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003776 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003777 StackHandleScope<1> hs(soa.Self());
3778 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
3779 size_t char_count = (name.Get() != NULL) ? name->GetLength() : 0;
3780 const jchar* chars = (name.Get() != NULL) ? name->GetCharArray()->GetData() : NULL;
Elliott Hughes82188472011-11-07 18:11:48 -08003781
Elliott Hughes21f32d72011-11-09 17:44:13 -08003782 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003783 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003784 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003785 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3786 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003787 }
3788}
3789
Elliott Hughes47fce012011-10-25 18:37:19 -07003790void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003791 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003792 gDdmThreadNotification = enable;
3793 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003794 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3795 // see a suspension in progress and block until that ends. They then post their own start
3796 // notification.
3797 SuspendVM();
3798 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003799 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003800 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003801 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003802 threads = Runtime::Current()->GetThreadList()->GetList();
3803 }
3804 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003805 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003806 for (Thread* thread : threads) {
3807 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003808 }
3809 }
3810 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003811 }
3812}
3813
Elliott Hughesa2155262011-11-16 16:26:58 -08003814void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003815 if (IsDebuggerActive()) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07003816 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08003817 JDWP::ObjectId id = gRegistry->Add(t->GetPeer());
Elliott Hughes82188472011-11-07 18:11:48 -08003818 gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003819 }
Elliott Hughes82188472011-11-07 18:11:48 -08003820 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003821}
3822
3823void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003824 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003825}
3826
3827void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003828 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003829}
3830
Elliott Hughes82188472011-11-07 18:11:48 -08003831void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003832 CHECK(buf != NULL);
3833 iovec vec[1];
3834 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3835 vec[0].iov_len = byte_count;
3836 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003837}
3838
Elliott Hughes21f32d72011-11-09 17:44:13 -08003839void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3840 DdmSendChunk(type, bytes.size(), &bytes[0]);
3841}
3842
Brian Carlstromf5293522013-07-19 00:24:00 -07003843void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003844 if (gJdwpState == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003845 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003846 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003847 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003848 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003849}
3850
Elliott Hughes767a1472011-10-26 18:49:02 -07003851int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3852 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003853 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003854 return true;
3855 }
3856
3857 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
3858 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
3859 return false;
3860 }
3861
3862 gDdmHpifWhen = when;
3863 return true;
3864}
3865
3866bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
3867 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
3868 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
3869 return false;
3870 }
3871
3872 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
3873 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
3874 return false;
3875 }
3876
3877 if (native) {
3878 gDdmNhsgWhen = when;
3879 gDdmNhsgWhat = what;
3880 } else {
3881 gDdmHpsgWhen = when;
3882 gDdmHpsgWhat = what;
3883 }
3884 return true;
3885}
3886
Elliott Hughes7162ad92011-10-27 14:08:42 -07003887void Dbg::DdmSendHeapInfo(HpifWhen reason) {
3888 // If there's a one-shot 'when', reset it.
3889 if (reason == gDdmHpifWhen) {
3890 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
3891 gDdmHpifWhen = HPIF_WHEN_NEVER;
3892 }
3893 }
3894
3895 /*
3896 * Chunk HPIF (client --> server)
3897 *
3898 * Heap Info. General information about the heap,
3899 * suitable for a summary display.
3900 *
3901 * [u4]: number of heaps
3902 *
3903 * For each heap:
3904 * [u4]: heap ID
3905 * [u8]: timestamp in ms since Unix epoch
3906 * [u1]: capture reason (same as 'when' value from server)
3907 * [u4]: max heap size in bytes (-Xmx)
3908 * [u4]: current heap size in bytes
3909 * [u4]: current number of bytes allocated
3910 * [u4]: current number of objects allocated
3911 */
3912 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07003913 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08003914 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08003915 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003916 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08003917 JDWP::Append8BE(bytes, MilliTime());
3918 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003919 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
3920 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003921 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
3922 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08003923 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
3924 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07003925}
3926
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003927enum HpsgSolidity {
3928 SOLIDITY_FREE = 0,
3929 SOLIDITY_HARD = 1,
3930 SOLIDITY_SOFT = 2,
3931 SOLIDITY_WEAK = 3,
3932 SOLIDITY_PHANTOM = 4,
3933 SOLIDITY_FINALIZABLE = 5,
3934 SOLIDITY_SWEEP = 6,
3935};
3936
3937enum HpsgKind {
3938 KIND_OBJECT = 0,
3939 KIND_CLASS_OBJECT = 1,
3940 KIND_ARRAY_1 = 2,
3941 KIND_ARRAY_2 = 3,
3942 KIND_ARRAY_4 = 4,
3943 KIND_ARRAY_8 = 5,
3944 KIND_UNKNOWN = 6,
3945 KIND_NATIVE = 7,
3946};
3947
3948#define HPSG_PARTIAL (1<<7)
3949#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
3950
Ian Rogers30fab402012-01-23 15:43:46 -08003951class HeapChunkContext {
3952 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003953 // Maximum chunk size. Obtain this from the formula:
3954 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
3955 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08003956 : buf_(16384 - 16),
3957 type_(0),
3958 merge_(merge) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003959 Reset();
3960 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08003961 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003962 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08003963 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003964 }
3965 }
3966
3967 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08003968 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003969 Flush();
3970 }
3971 }
3972
3973 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08003974 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003975 return;
3976 }
3977
3978 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003979 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
3980 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003981
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003982 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
3983 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003984 // [u4]: length of piece, in allocation units
3985 // 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 -08003986 pieceLenField_ = p_;
3987 JDWP::Write4BE(&p_, 0x55555555);
3988 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003989 }
3990
Ian Rogersb726dcb2012-09-05 08:57:23 -07003991 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd636b062013-01-18 17:51:18 -08003992 if (pieceLenField_ == NULL) {
3993 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
3994 CHECK(needHeader_);
3995 return;
3996 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003997 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08003998 CHECK_LE(&buf_[0], pieceLenField_);
3999 CHECK_LE(pieceLenField_, p_);
4000 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004001
Ian Rogers30fab402012-01-23 15:43:46 -08004002 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004003 Reset();
4004 }
4005
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004006 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004007 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4008 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004009 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004010 }
4011
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004012 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004013 enum { ALLOCATION_UNIT_SIZE = 8 };
4014
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004015 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004016 p_ = &buf_[0];
Ian Rogers15bf2d32012-08-28 17:33:04 -07004017 startOfNextMemoryChunk_ = NULL;
Ian Rogers30fab402012-01-23 15:43:46 -08004018 totalAllocationUnits_ = 0;
4019 needHeader_ = true;
4020 pieceLenField_ = NULL;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004021 }
4022
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004023 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004024 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4025 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004026 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4027 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004028 if (used_bytes == 0) {
4029 if (start == NULL) {
4030 // Reset for start of new heap.
4031 startOfNextMemoryChunk_ = NULL;
4032 Flush();
4033 }
4034 // Only process in use memory so that free region information
4035 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08004036 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08004037 }
4038
Ian Rogers15bf2d32012-08-28 17:33:04 -07004039 /* If we're looking at the native heap, we'll just return
4040 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
4041 */
4042 bool native = type_ == CHUNK_TYPE("NHSG");
4043
4044 if (startOfNextMemoryChunk_ != NULL) {
4045 // Transmit any pending free memory. Native free memory of
4046 // over kMaxFreeLen could be because of the use of mmaps, so
4047 // don't report. If not free memory then start a new segment.
4048 bool flush = true;
4049 if (start > startOfNextMemoryChunk_) {
4050 const size_t kMaxFreeLen = 2 * kPageSize;
4051 void* freeStart = startOfNextMemoryChunk_;
4052 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07004053 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07004054 if (!native || freeLen < kMaxFreeLen) {
4055 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
4056 flush = false;
4057 }
4058 }
4059 if (flush) {
4060 startOfNextMemoryChunk_ = NULL;
4061 Flush();
4062 }
4063 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08004064 mirror::Object* obj = reinterpret_cast<mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08004065
4066 // Determine the type of this chunk.
4067 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4068 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004069 uint8_t state = ExamineObject(obj, native);
4070 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4071 // allocation then the first sizeof(size_t) may belong to it.
4072 const size_t dlMallocOverhead = sizeof(size_t);
4073 AppendChunk(state, start, used_bytes + dlMallocOverhead);
Brian Carlstrom2d888622013-07-18 17:02:00 -07004074 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + dlMallocOverhead;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004075 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004076
Ian Rogers15bf2d32012-08-28 17:33:04 -07004077 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004078 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004079 // Make sure there's enough room left in the buffer.
4080 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4081 // 17 bytes for any header.
4082 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
4083 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4084 if (bytesLeft < needed) {
4085 Flush();
4086 }
4087
4088 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4089 if (bytesLeft < needed) {
4090 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4091 << needed << " bytes)";
4092 return;
4093 }
4094 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004095 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004096 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4097 totalAllocationUnits_ += length;
4098 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004099 *p_++ = state | HPSG_PARTIAL;
4100 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004101 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004102 }
Ian Rogers30fab402012-01-23 15:43:46 -08004103 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004104 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004105 }
4106
Ian Rogersef7d42f2014-01-06 12:55:46 -08004107 uint8_t ExamineObject(mirror::Object* o, bool is_native_heap)
4108 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004109 if (o == NULL) {
4110 return HPSG_STATE(SOLIDITY_FREE, 0);
4111 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004112
Elliott Hughesa2155262011-11-16 16:26:58 -08004113 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004114
Elliott Hughesa2155262011-11-16 16:26:58 -08004115 // If we're looking at the native heap, we'll just return
4116 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004117 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004118 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4119 }
4120
Ian Rogers5bfa60f2012-09-02 21:17:56 -07004121 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004122 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004123 }
4124
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004125 mirror::Class* c = o->GetClass();
Elliott Hughesa2155262011-11-16 16:26:58 -08004126 if (c == NULL) {
4127 // The object was probably just created but hasn't been initialized yet.
4128 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4129 }
4130
Mathieu Chartier590fee92013-09-13 13:46:47 -07004131 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004132 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004133 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4134 }
4135
4136 if (c->IsClassClass()) {
4137 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4138 }
4139
4140 if (c->IsArrayClass()) {
4141 if (o->IsObjectArray()) {
4142 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4143 }
4144 switch (c->GetComponentSize()) {
4145 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4146 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4147 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4148 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4149 }
4150 }
4151
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004152 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4153 }
4154
Ian Rogers30fab402012-01-23 15:43:46 -08004155 std::vector<uint8_t> buf_;
4156 uint8_t* p_;
4157 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004158 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004159 size_t totalAllocationUnits_;
4160 uint32_t type_;
4161 bool merge_;
4162 bool needHeader_;
4163
Elliott Hughesa2155262011-11-16 16:26:58 -08004164 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4165};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004166
4167void Dbg::DdmSendHeapSegments(bool native) {
4168 Dbg::HpsgWhen when;
4169 Dbg::HpsgWhat what;
4170 if (!native) {
4171 when = gDdmHpsgWhen;
4172 what = gDdmHpsgWhat;
4173 } else {
4174 when = gDdmNhsgWhen;
4175 what = gDdmNhsgWhat;
4176 }
4177 if (when == HPSG_WHEN_NEVER) {
4178 return;
4179 }
4180
4181 // Figure out what kind of chunks we'll be sending.
4182 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
4183
4184 // First, send a heap start chunk.
4185 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004186 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004187 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
4188
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004189 Thread* self = Thread::Current();
4190
4191 // To allow the Walk/InspectAll() below to exclusively-lock the
4192 // mutator lock, temporarily release the shared access to the
4193 // mutator lock here by transitioning to the suspended state.
4194 Locks::mutator_lock_->AssertSharedHeld(self);
4195 self->TransitionFromRunnableToSuspended(kSuspended);
4196
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004197 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08004198 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
4199 if (native) {
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004200#ifdef USE_DLMALLOC
Ian Rogers1d54e732013-05-02 21:10:01 -07004201 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004202#else
4203 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4204#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004205 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004206 gc::Heap* heap = Runtime::Current()->GetHeap();
4207 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers1d54e732013-05-02 21:10:01 -07004208 typedef std::vector<gc::space::ContinuousSpace*>::const_iterator It;
4209 for (It cur = spaces.begin(), end = spaces.end(); cur != end; ++cur) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004210 if ((*cur)->IsMallocSpace()) {
4211 (*cur)->AsMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004212 }
4213 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004214 // Walk the large objects, these are not in the AllocSpace.
4215 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004216 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004217
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004218 // Shared-lock the mutator lock back.
4219 self->TransitionFromSuspendedToRunnable();
4220 Locks::mutator_lock_->AssertSharedHeld(self);
4221
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004222 // Finally, send a heap end chunk.
4223 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004224}
4225
Elliott Hughesb1a58792013-07-11 18:10:58 -07004226static size_t GetAllocTrackerMax() {
4227#ifdef HAVE_ANDROID_OS
4228 // Check whether there's a system property overriding the number of records.
4229 const char* propertyName = "dalvik.vm.allocTrackerMax";
4230 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4231 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4232 char* end;
4233 size_t value = strtoul(allocRecordMaxString, &end, 10);
4234 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004235 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4236 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004237 return kDefaultNumAllocRecords;
4238 }
4239 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004240 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4241 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004242 return kDefaultNumAllocRecords;
4243 }
4244 return value;
4245 }
4246#endif
4247 return kDefaultNumAllocRecords;
4248}
4249
Elliott Hughes545a0642011-11-08 19:10:03 -08004250void Dbg::SetAllocTrackingEnabled(bool enabled) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004251 if (enabled) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004252 {
4253 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
4254 if (recent_allocation_records_ == NULL) {
4255 alloc_record_max_ = GetAllocTrackerMax();
4256 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4257 << kMaxAllocRecordStackDepth << " frames, taking "
4258 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4259 alloc_record_head_ = alloc_record_count_ = 0;
4260 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4261 CHECK(recent_allocation_records_ != NULL);
4262 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004263 }
Ian Rogersfa824272013-11-05 16:12:57 -08004264 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004265 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08004266 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004267 {
4268 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
Mathieu Chartier4345c462014-06-27 10:20:14 -07004269 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004270 delete[] recent_allocation_records_;
4271 recent_allocation_records_ = NULL;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004272 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004273 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004274 }
4275}
4276
Ian Rogers0399dde2012-06-06 17:09:28 -07004277struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08004278 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004279 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08004280 : StackVisitor(thread, NULL), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004281
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004282 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4283 // annotalysis.
4284 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004285 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004286 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004287 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004288 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004289 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004290 record->StackElement(depth)->SetMethod(m);
4291 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004292 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004293 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004294 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004295 }
4296
4297 ~AllocRecordStackVisitor() {
4298 // Clear out any unused stack trace elements.
4299 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004300 record->StackElement(depth)->SetMethod(nullptr);
4301 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004302 }
4303 }
4304
4305 AllocRecord* record;
4306 size_t depth;
4307};
4308
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004309void Dbg::RecordAllocation(mirror::Class* type, size_t byte_count) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004310 Thread* self = Thread::Current();
4311 CHECK(self != NULL);
4312
Ian Rogers719d1a32014-03-06 12:13:39 -08004313 MutexLock mu(self, *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08004314 if (recent_allocation_records_ == NULL) {
4315 return;
4316 }
4317
4318 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004319 if (++alloc_record_head_ == alloc_record_max_) {
4320 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004321 }
4322
4323 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004324 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004325 record->SetType(type);
4326 record->SetByteCount(byte_count);
4327 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004328
4329 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004330 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004331 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004332
Ian Rogers719d1a32014-03-06 12:13:39 -08004333 if (alloc_record_count_ < alloc_record_max_) {
4334 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004335 }
4336}
4337
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004338// Returns the index of the head element.
4339//
4340// We point at the most-recently-written record, so if gAllocRecordCount is 1
4341// we want to use the current element. Take "head+1" and subtract count
4342// from it.
4343//
4344// We need to handle underflow in our circular buffer, so we add
Elliott Hughesb1a58792013-07-11 18:10:58 -07004345// gAllocRecordMax and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004346size_t Dbg::HeadIndex() {
4347 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4348 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004349}
4350
4351void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004352 ScopedObjectAccess soa(Thread::Current());
Ian Rogers719d1a32014-03-06 12:13:39 -08004353 MutexLock mu(soa.Self(), *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08004354 if (recent_allocation_records_ == NULL) {
4355 LOG(INFO) << "Not recording tracked allocations";
4356 return;
4357 }
4358
4359 // "i" is the head of the list. We want to start at the end of the
4360 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004361 size_t i = HeadIndex();
Ian Rogers719d1a32014-03-06 12:13:39 -08004362 size_t count = alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004363
Ian Rogers719d1a32014-03-06 12:13:39 -08004364 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004365 while (count--) {
4366 AllocRecord* record = &recent_allocation_records_[i];
4367
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004368 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4369 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004370
4371 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004372 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4373 mirror::ArtMethod* m = stack_element->Method();
Elliott Hughes545a0642011-11-08 19:10:03 -08004374 if (m == NULL) {
4375 break;
4376 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004377 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004378 }
4379
4380 // pause periodically to help logcat catch up
4381 if ((count % 5) == 0) {
4382 usleep(40000);
4383 }
4384
Ian Rogers719d1a32014-03-06 12:13:39 -08004385 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004386 }
4387}
4388
4389class StringTable {
4390 public:
4391 StringTable() {
4392 }
4393
Mathieu Chartier4345c462014-06-27 10:20:14 -07004394 void Add(const std::string& str) {
4395 table_.insert(str);
4396 }
4397
4398 void Add(const char* str) {
4399 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004400 }
4401
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004402 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004403 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004404 if (it == table_.end()) {
4405 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4406 }
4407 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004408 }
4409
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004410 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004411 return table_.size();
4412 }
4413
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004414 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004415 for (const std::string& str : table_) {
4416 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004417 size_t s_len = CountModifiedUtf8Chars(s);
Ian Rogers700a4022014-05-19 16:49:03 -07004418 std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004419 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4420 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004421 }
4422 }
4423
4424 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004425 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004426 DISALLOW_COPY_AND_ASSIGN(StringTable);
4427};
4428
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004429static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004430 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004431 DCHECK(method != nullptr);
4432 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004433 return (source_file != nullptr) ? source_file : "";
4434}
4435
Elliott Hughes545a0642011-11-08 19:10:03 -08004436/*
4437 * The data we send to DDMS contains everything we have recorded.
4438 *
4439 * Message header (all values big-endian):
4440 * (1b) message header len (to allow future expansion); includes itself
4441 * (1b) entry header len
4442 * (1b) stack frame len
4443 * (2b) number of entries
4444 * (4b) offset to string table from start of message
4445 * (2b) number of class name strings
4446 * (2b) number of method name strings
4447 * (2b) number of source file name strings
4448 * For each entry:
4449 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004450 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004451 * (2b) allocated object's class name index
4452 * (1b) stack depth
4453 * For each stack frame:
4454 * (2b) method's class name
4455 * (2b) method name
4456 * (2b) method source file
4457 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4458 * (xb) class name strings
4459 * (xb) method name strings
4460 * (xb) source file strings
4461 *
4462 * As with other DDM traffic, strings are sent as a 4-byte length
4463 * followed by UTF-16 data.
4464 *
4465 * We send up 16-bit unsigned indexes into string tables. In theory there
Elliott Hughesb1a58792013-07-11 18:10:58 -07004466 * can be (kMaxAllocRecordStackDepth * gAllocRecordMax) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004467 * each table, but in practice there should be far fewer.
4468 *
4469 * The chief reason for using a string table here is to keep the size of
4470 * the DDMS message to a minimum. This is partly to make the protocol
4471 * efficient, but also because we have to form the whole thing up all at
4472 * once in a memory buffer.
4473 *
4474 * We use separate string tables for class names, method names, and source
4475 * files to keep the indexes small. There will generally be no overlap
4476 * between the contents of these tables.
4477 */
4478jbyteArray Dbg::GetRecentAllocations() {
4479 if (false) {
4480 DumpRecentAllocations();
4481 }
4482
Ian Rogers50b35e22012-10-04 10:09:15 -07004483 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004484 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004485 {
Ian Rogers719d1a32014-03-06 12:13:39 -08004486 MutexLock mu(self, *alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004487 //
4488 // Part 1: generate string tables.
4489 //
4490 StringTable class_names;
4491 StringTable method_names;
4492 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004493
Ian Rogers719d1a32014-03-06 12:13:39 -08004494 int count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004495 int idx = HeadIndex();
4496 while (count--) {
4497 AllocRecord* record = &recent_allocation_records_[idx];
Mathieu Chartier4345c462014-06-27 10:20:14 -07004498 class_names.Add(record->Type()->GetDescriptor());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004499 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004500 mirror::ArtMethod* m = record->StackElement(i)->Method();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004501 if (m != NULL) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004502 class_names.Add(m->GetDeclaringClassDescriptor());
4503 method_names.Add(m->GetName());
4504 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004505 }
4506 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004507
Ian Rogers719d1a32014-03-06 12:13:39 -08004508 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004509 }
4510
Ian Rogers719d1a32014-03-06 12:13:39 -08004511 LOG(INFO) << "allocation records: " << alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004512
4513 //
4514 // Part 2: Generate the output and store it in the buffer.
4515 //
4516
4517 // (1b) message header len (to allow future expansion); includes itself
4518 // (1b) entry header len
4519 // (1b) stack frame len
4520 const int kMessageHeaderLen = 15;
4521 const int kEntryHeaderLen = 9;
4522 const int kStackFrameLen = 8;
4523 JDWP::Append1BE(bytes, kMessageHeaderLen);
4524 JDWP::Append1BE(bytes, kEntryHeaderLen);
4525 JDWP::Append1BE(bytes, kStackFrameLen);
4526
4527 // (2b) number of entries
4528 // (4b) offset to string table from start of message
4529 // (2b) number of class name strings
4530 // (2b) number of method name strings
4531 // (2b) number of source file name strings
Ian Rogers719d1a32014-03-06 12:13:39 -08004532 JDWP::Append2BE(bytes, alloc_record_count_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004533 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004534 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004535 JDWP::Append2BE(bytes, class_names.Size());
4536 JDWP::Append2BE(bytes, method_names.Size());
4537 JDWP::Append2BE(bytes, filenames.Size());
4538
Ian Rogers719d1a32014-03-06 12:13:39 -08004539 count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004540 idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004541 while (count--) {
4542 // For each entry:
4543 // (4b) total allocation size
4544 // (2b) thread id
4545 // (2b) allocated object's class name index
4546 // (1b) stack depth
4547 AllocRecord* record = &recent_allocation_records_[idx];
4548 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004549 size_t allocated_object_class_name_index =
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004550 class_names.IndexOf(record->Type()->GetDescriptor().c_str());
4551 JDWP::Append4BE(bytes, record->ByteCount());
4552 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004553 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4554 JDWP::Append1BE(bytes, stack_depth);
4555
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004556 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4557 // For each stack frame:
4558 // (2b) method's class name
4559 // (2b) method name
4560 // (2b) method source file
4561 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004562 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004563 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4564 size_t method_name_index = method_names.IndexOf(m->GetName());
4565 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004566 JDWP::Append2BE(bytes, class_name_index);
4567 JDWP::Append2BE(bytes, method_name_index);
4568 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004569 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004570 }
4571
Ian Rogers719d1a32014-03-06 12:13:39 -08004572 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004573 }
4574
4575 // (xb) class name strings
4576 // (xb) method name strings
4577 // (xb) source file strings
4578 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4579 class_names.WriteTo(bytes);
4580 method_names.WriteTo(bytes);
4581 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004582 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004583 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004584 jbyteArray result = env->NewByteArray(bytes.size());
4585 if (result != NULL) {
4586 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4587 }
4588 return result;
4589}
4590
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07004591mirror::ArtMethod* DeoptimizationRequest::Method() const {
4592 ScopedObjectAccessUnchecked soa(Thread::Current());
4593 return soa.DecodeMethod(method_);
4594}
4595
4596void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
4597 ScopedObjectAccessUnchecked soa(Thread::Current());
4598 method_ = soa.EncodeMethod(m);
4599}
4600
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004601} // namespace art