blob: eb90696be727c67e265608a1079757a7bee13572 [file] [log] [blame]
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "debugger.h"
18
Elliott Hughes3bb81562011-10-21 18:52:59 -070019#include <sys/uio.h>
20
Elliott Hughes545a0642011-11-08 19:10:03 -080021#include <set>
22
Ian Rogers166db042013-07-26 12:05:57 -070023#include "arch/context.h"
Elliott Hughes545a0642011-11-08 19:10:03 -080024#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070026#include "dex_file-inl.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070027#include "dex_instruction.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070028#include "field_helper.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070029#include "gc/accounting/card_table-inl.h"
30#include "gc/space/large_object_space.h"
31#include "gc/space/space-inl.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070032#include "handle_scope.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080033#include "jdwp/object_registry.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070034#include "method_helper.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070035#include "mirror/art_field-inl.h"
36#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037#include "mirror/class.h"
38#include "mirror/class-inl.h"
39#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080040#include "mirror/object-inl.h"
41#include "mirror/object_array-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070042#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080043#include "mirror/throwable.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010044#include "quick/inline_method_analyser.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070045#include "reflection.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070046#include "safe_map.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080047#include "scoped_thread_state_change.h"
Elliott Hughes6a5bd492011-10-28 14:33:57 -070048#include "ScopedLocalRef.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070049#include "ScopedPrimitiveArray.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070050#include "handle_scope-inl.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070051#include "thread_list.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080052#include "throw_location.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080053#include "utf.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010054#include "verifier/method_verifier-inl.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070055#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070056
Brian Carlstrom3d92d522013-07-12 09:03:08 -070057#ifdef HAVE_ANDROID_OS
58#include "cutils/properties.h"
59#endif
60
Elliott Hughes872d4ec2011-10-21 17:07:15 -070061namespace art {
62
Brian Carlstrom7934ac22013-07-26 10:54:15 -070063static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
64static const size_t kDefaultNumAllocRecords = 64*1024; // Must be a power of 2.
Elliott Hughes475fc232011-10-25 15:00:35 -070065
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070066class AllocRecordStackTraceElement {
67 public:
68 AllocRecordStackTraceElement() : method_(nullptr), dex_pc_(0) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080069 }
70
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070071 int32_t LineNumber() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
72 mirror::ArtMethod* method = Method();
73 DCHECK(method != nullptr);
74 return method->GetLineNumFromDexPC(DexPc());
Elliott Hughes545a0642011-11-08 19:10:03 -080075 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070076
77 mirror::ArtMethod* Method() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -070078 ScopedObjectAccessUnchecked soa(Thread::Current());
79 return soa.DecodeMethod(method_);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070080 }
81
82 void SetMethod(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
83 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4345c462014-06-27 10:20:14 -070084 method_ = soa.EncodeMethod(m);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070085 }
86
87 uint32_t DexPc() const {
88 return dex_pc_;
89 }
90
91 void SetDexPc(uint32_t pc) {
92 dex_pc_ = pc;
93 }
94
95 private:
Mathieu Chartier4345c462014-06-27 10:20:14 -070096 jmethodID method_;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070097 uint32_t dex_pc_;
Elliott Hughes545a0642011-11-08 19:10:03 -080098};
99
Mathieu Chartier4345c462014-06-27 10:20:14 -0700100jobject Dbg::TypeCache::Add(mirror::Class* t) {
101 ScopedObjectAccessUnchecked soa(Thread::Current());
102 int32_t hash_code = t->IdentityHashCode();
103 auto range = objects_.equal_range(hash_code);
104 for (auto it = range.first; it != range.second; ++it) {
105 if (soa.Decode<mirror::Class*>(it->second) == t) {
106 // Found a matching weak global, return it.
107 return it->second;
108 }
109 }
110 JNIEnv* env = soa.Env();
111 const jobject local_ref = soa.AddLocalReference<jobject>(t);
112 const jobject weak_global = env->NewWeakGlobalRef(local_ref);
113 env->DeleteLocalRef(local_ref);
114 objects_.insert(std::make_pair(hash_code, weak_global));
115 return weak_global;
116}
117
118void Dbg::TypeCache::Clear() {
119 ScopedObjectAccess soa(Thread::Current());
120 for (const auto& p : objects_) {
121 soa.Vm()->DeleteWeakGlobalRef(soa.Self(), p.second);
122 }
123 objects_.clear();
124}
125
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700126class AllocRecord {
127 public:
128 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -0800129
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700130 mirror::Class* Type() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700131 return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700132 }
133
134 void SetType(mirror::Class* t) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700135 type_ = Dbg::GetTypeCache().Add(t);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700136 }
137
138 size_t GetDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800139 size_t depth = 0;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700140 while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != NULL) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800141 ++depth;
142 }
143 return depth;
144 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800145
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700146 size_t ByteCount() const {
147 return byte_count_;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800148 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700149
150 void SetByteCount(size_t count) {
151 byte_count_ = count;
152 }
153
154 uint16_t ThinLockId() const {
155 return thin_lock_id_;
156 }
157
158 void SetThinLockId(uint16_t id) {
159 thin_lock_id_ = id;
160 }
161
162 AllocRecordStackTraceElement* StackElement(size_t index) {
163 DCHECK_LT(index, kMaxAllocRecordStackDepth);
164 return &stack_[index];
165 }
166
167 private:
168 jobject type_; // This is a weak global.
169 size_t byte_count_;
170 uint16_t thin_lock_id_;
171 AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth]; // Unused entries have NULL method.
Elliott Hughes545a0642011-11-08 19:10:03 -0800172};
173
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700174class Breakpoint {
175 public:
176 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc, bool need_full_deoptimization)
177 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
178 : method_(nullptr), dex_pc_(dex_pc), need_full_deoptimization_(need_full_deoptimization) {
179 ScopedObjectAccessUnchecked soa(Thread::Current());
180 method_ = soa.EncodeMethod(method);
181 }
182
183 Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
184 : method_(nullptr), dex_pc_(other.dex_pc_),
185 need_full_deoptimization_(other.need_full_deoptimization_) {
186 ScopedObjectAccessUnchecked soa(Thread::Current());
187 method_ = soa.EncodeMethod(other.Method());
188 }
189
190 mirror::ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
191 ScopedObjectAccessUnchecked soa(Thread::Current());
192 return soa.DecodeMethod(method_);
193 }
194
195 uint32_t DexPc() const {
196 return dex_pc_;
197 }
198
199 bool NeedFullDeoptimization() const {
200 return need_full_deoptimization_;
201 }
202
203 private:
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100204 // The location of this breakpoint.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700205 jmethodID method_;
206 uint32_t dex_pc_;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100207
208 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700209 bool need_full_deoptimization_;
Elliott Hughes86964332012-02-15 19:37:42 -0800210};
211
Sebastien Hertzed2be172014-08-19 15:33:43 +0200212static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700213 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700214 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
Elliott Hughes86964332012-02-15 19:37:42 -0800215 return os;
216}
217
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200218class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800219 public:
220 DebugInstrumentationListener() {}
221 virtual ~DebugInstrumentationListener() {}
222
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200223 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
224 uint32_t dex_pc)
225 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800226 if (method->IsNative()) {
227 // TODO: post location events is a suspension point and native method entry stubs aren't.
228 return;
229 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100230 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800231 }
232
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200233 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
234 uint32_t dex_pc, const JValue& return_value)
235 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800236 if (method->IsNative()) {
237 // TODO: post location events is a suspension point and native method entry stubs aren't.
238 return;
239 }
Sebastien Hertz8379b222014-02-24 17:38:15 +0100240 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800241 }
242
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200243 void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
244 uint32_t dex_pc)
245 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800246 // We're not recorded to listen to this kind of event, so complain.
247 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100248 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800249 }
250
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200251 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
252 uint32_t new_dex_pc)
253 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz8379b222014-02-24 17:38:15 +0100254 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800255 }
256
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200257 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
258 uint32_t dex_pc, mirror::ArtField* field)
259 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
260 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800261 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200262
263 void FieldWritten(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
264 uint32_t dex_pc, mirror::ArtField* field, const JValue& field_value)
265 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
266 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
267 }
268
269 void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
270 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
271 mirror::Throwable* exception_object)
272 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
273 Dbg::PostException(throw_location, catch_method, catch_dex_pc, exception_object);
274 }
275
276 private:
277 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800278} gDebugInstrumentationListener;
279
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700280// JDWP is allowed unless the Zygote forbids it.
281static bool gJdwpAllowed = true;
282
Elliott Hughesc0f09332012-03-26 13:27:06 -0700283// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700284static bool gJdwpConfigured = false;
285
Elliott Hughesc0f09332012-03-26 13:27:06 -0700286// Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.)
Elliott Hughes376a7a02011-10-24 18:35:55 -0700287static JDWP::JdwpOptions gJdwpOptions;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700288
289// Runtime JDWP state.
290static JDWP::JdwpState* gJdwpState = NULL;
291static bool gDebuggerConnected; // debugger or DDMS is connected.
292static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800293static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700294
Elliott Hughes47fce012011-10-25 18:37:19 -0700295static bool gDdmThreadNotification = false;
296
Elliott Hughes767a1472011-10-26 18:49:02 -0700297// DDMS GC-related settings.
298static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
299static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
300static Dbg::HpsgWhat gDdmHpsgWhat;
301static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
302static Dbg::HpsgWhat gDdmNhsgWhat;
303
Ian Rogers719d1a32014-03-06 12:13:39 -0800304static ObjectRegistry* gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700305
Elliott Hughes545a0642011-11-08 19:10:03 -0800306// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800307Mutex* Dbg::alloc_tracker_lock_ = nullptr;
308AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
309size_t Dbg::alloc_record_max_ = 0;
310size_t Dbg::alloc_record_head_ = 0;
311size_t Dbg::alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -0700312Dbg::TypeCache Dbg::type_cache_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800313
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100314// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100315Mutex* Dbg::deoptimization_lock_ = nullptr;
316std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
317size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100318size_t Dbg::delayed_full_undeoptimization_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100319
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200320// Instrumentation event reference counters.
321size_t Dbg::dex_pc_change_event_ref_count_ = 0;
322size_t Dbg::method_enter_event_ref_count_ = 0;
323size_t Dbg::method_exit_event_ref_count_ = 0;
324size_t Dbg::field_read_event_ref_count_ = 0;
325size_t Dbg::field_write_event_ref_count_ = 0;
326size_t Dbg::exception_catch_event_ref_count_ = 0;
327uint32_t Dbg::instrumentation_events_ = 0;
328
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100329// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800330static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800331
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700332void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
333 RootType root_type) {
334 if (receiver != nullptr) {
335 callback(&receiver, arg, tid, root_type);
336 }
337 if (thread != nullptr) {
338 callback(&thread, arg, tid, root_type);
339 }
340 if (klass != nullptr) {
341 callback(reinterpret_cast<mirror::Object**>(&klass), arg, tid, root_type);
342 }
343 if (method != nullptr) {
344 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
345 }
346}
347
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200348void DebugInvokeReq::Clear() {
349 invoke_needed = false;
350 receiver = nullptr;
351 thread = nullptr;
352 klass = nullptr;
353 method = nullptr;
354}
355
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700356void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
357 RootType root_type) {
358 if (method != nullptr) {
359 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
360 }
361}
362
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200363bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
364 return dex_pcs.find(dex_pc) == dex_pcs.end();
365}
366
367void SingleStepControl::Clear() {
368 is_active = false;
369 method = nullptr;
370 dex_pcs.clear();
371}
372
Brian Carlstromea46f952013-07-30 01:26:50 -0700373static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800374 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700375 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzed2be172014-08-19 15:33:43 +0200376 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100377 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700378 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
Elliott Hughes86964332012-02-15 19:37:42 -0800379 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
380 return true;
381 }
382 }
383 return false;
384}
385
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100386static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
387 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800388 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
389 // A thread may be suspended for GC; in this code, we really want to know whether
390 // there's a debugger suspension active.
391 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
392}
393
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800394static mirror::Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700395 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800396 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800397 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800398 status = JDWP::ERR_INVALID_OBJECT;
399 return NULL;
400 }
401 if (!o->IsArrayInstance()) {
402 status = JDWP::ERR_INVALID_ARRAY;
403 return NULL;
404 }
405 status = JDWP::ERR_NONE;
406 return o->AsArray();
407}
408
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800409static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700410 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800411 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800412 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800413 status = JDWP::ERR_INVALID_OBJECT;
414 return NULL;
415 }
416 if (!o->IsClass()) {
417 status = JDWP::ERR_INVALID_CLASS;
418 return NULL;
419 }
420 status = JDWP::ERR_NONE;
421 return o->AsClass();
422}
423
Elliott Hughes221229c2013-01-08 18:17:50 -0800424static JDWP::JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thread*& thread)
jeffhaoa77f0f62012-12-05 17:19:31 -0800425 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700426 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
427 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800428 mirror::Object* thread_peer = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800429 if (thread_peer == NULL || thread_peer == ObjectRegistry::kInvalidObject) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800430 // This isn't even an object.
431 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes436e3722012-02-17 20:01:47 -0800432 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800433
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800434 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800435 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
436 // This isn't a thread.
437 return JDWP::ERR_INVALID_THREAD;
438 }
439
440 thread = Thread::FromManagedThread(soa, thread_peer);
441 if (thread == NULL) {
442 // This is a java.lang.Thread without a Thread*. Must be a zombie.
443 return JDWP::ERR_THREAD_NOT_ALIVE;
444 }
445 return JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800446}
447
Elliott Hughes24437992011-11-30 14:49:33 -0800448static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
449 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
450 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
451 return static_cast<JDWP::JdwpTag>(descriptor[0]);
452}
453
Ian Rogers1ff3c982014-08-12 02:30:58 -0700454static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
455 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
456 std::string temp;
457 const char* descriptor = klass->GetDescriptor(&temp);
458 return BasicTagFromDescriptor(descriptor);
459}
460
Ian Rogers98379392014-02-24 16:53:16 -0800461static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700462 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes86b00102011-12-05 17:54:26 -0800463 CHECK(c != NULL);
Elliott Hughes24437992011-11-30 14:49:33 -0800464 if (c->IsArrayClass()) {
465 return JDWP::JT_ARRAY;
466 }
Elliott Hughes24437992011-11-30 14:49:33 -0800467 if (c->IsStringClass()) {
468 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800469 }
Ian Rogers98379392014-02-24 16:53:16 -0800470 if (c->IsClassClass()) {
471 return JDWP::JT_CLASS_OBJECT;
472 }
473 {
474 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
475 if (thread_class->IsAssignableFrom(c)) {
476 return JDWP::JT_THREAD;
477 }
478 }
479 {
480 mirror::Class* thread_group_class =
481 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
482 if (thread_group_class->IsAssignableFrom(c)) {
483 return JDWP::JT_THREAD_GROUP;
484 }
485 }
486 {
487 mirror::Class* class_loader_class =
488 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
489 if (class_loader_class->IsAssignableFrom(c)) {
490 return JDWP::JT_CLASS_LOADER;
491 }
492 }
493 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800494}
495
496/*
497 * Objects declared to hold Object might actually hold a more specific
498 * type. The debugger may take a special interest in these (e.g. it
499 * wants to display the contents of Strings), so we want to return an
500 * appropriate tag.
501 *
502 * Null objects are tagged JT_OBJECT.
503 */
Ian Rogers98379392014-02-24 16:53:16 -0800504static JDWP::JdwpTag TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700505 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers98379392014-02-24 16:53:16 -0800506 return (o == NULL) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800507}
508
509static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
510 switch (tag) {
511 case JDWP::JT_BOOLEAN:
512 case JDWP::JT_BYTE:
513 case JDWP::JT_CHAR:
514 case JDWP::JT_FLOAT:
515 case JDWP::JT_DOUBLE:
516 case JDWP::JT_INT:
517 case JDWP::JT_LONG:
518 case JDWP::JT_SHORT:
519 case JDWP::JT_VOID:
520 return true;
521 default:
522 return false;
523 }
524}
525
Elliott Hughes3bb81562011-10-21 18:52:59 -0700526/*
527 * Handle one of the JDWP name/value pairs.
528 *
529 * JDWP options are:
530 * help: if specified, show help message and bail
531 * transport: may be dt_socket or dt_shmem
532 * address: for dt_socket, "host:port", or just "port" when listening
533 * server: if "y", wait for debugger to attach; if "n", attach to debugger
534 * timeout: how long to wait for debugger to connect / listen
535 *
536 * Useful with server=n (these aren't supported yet):
537 * onthrow=<exception-name>: connect to debugger when exception thrown
538 * onuncaught=y|n: connect to debugger when uncaught exception thrown
539 * launch=<command-line>: launch the debugger itself
540 *
541 * The "transport" option is required, as is "address" if server=n.
542 */
543static bool ParseJdwpOption(const std::string& name, const std::string& value) {
544 if (name == "transport") {
545 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700546 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700547 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700548 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700549 } else {
550 LOG(ERROR) << "JDWP transport not supported: " << value;
551 return false;
552 }
553 } else if (name == "server") {
554 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700555 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700556 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700557 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700558 } else {
559 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
560 return false;
561 }
562 } else if (name == "suspend") {
563 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700564 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700565 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700566 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700567 } else {
568 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
569 return false;
570 }
571 } else if (name == "address") {
572 /* this is either <port> or <host>:<port> */
573 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700574 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700575 std::string::size_type colon = value.find(':');
576 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700577 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700578 port_string = value.substr(colon + 1);
579 } else {
580 port_string = value;
581 }
582 if (port_string.empty()) {
583 LOG(ERROR) << "JDWP address missing port: " << value;
584 return false;
585 }
586 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800587 uint64_t port = strtoul(port_string.c_str(), &end, 10);
588 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700589 LOG(ERROR) << "JDWP address has junk in port field: " << value;
590 return false;
591 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700592 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700593 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
594 /* valid but unsupported */
595 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
596 } else {
597 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
598 }
599
600 return true;
601}
602
603/*
604 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
605 * "transport=dt_socket,address=8000,server=y,suspend=n"
606 */
607bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800608 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700609
Elliott Hughes3bb81562011-10-21 18:52:59 -0700610 std::vector<std::string> pairs;
611 Split(options, ',', pairs);
612
613 for (size_t i = 0; i < pairs.size(); ++i) {
614 std::string::size_type equals = pairs[i].find('=');
615 if (equals == std::string::npos) {
616 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
617 return false;
618 }
619 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
620 }
621
Elliott Hughes376a7a02011-10-24 18:35:55 -0700622 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700623 LOG(ERROR) << "Must specify JDWP transport: " << options;
624 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700625 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700626 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
627 return false;
628 }
629
630 gJdwpConfigured = true;
631 return true;
632}
633
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700634void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700635 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700636 // No JDWP for you!
637 return;
638 }
639
Ian Rogers719d1a32014-03-06 12:13:39 -0800640 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700641 gRegistry = new ObjectRegistry;
642
Ian Rogers719d1a32014-03-06 12:13:39 -0800643 alloc_tracker_lock_ = new Mutex("AllocTracker lock");
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100644 deoptimization_lock_ = new Mutex("deoptimization lock", kDeoptimizationLock);
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700645 // Init JDWP if the debugger is enabled. This may connect out to a
646 // debugger, passively listen for a debugger, or block waiting for a
647 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700648 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
649 if (gJdwpState == NULL) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800650 // We probably failed because some other process has the port already, which means that
651 // if we don't abort the user is likely to think they're talking to us when they're actually
652 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800653 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700654 }
655
656 // If a debugger has already attached, send the "welcome" message.
657 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700658 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700659 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes376a7a02011-10-24 18:35:55 -0700660 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800661 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700662 }
663 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700664}
665
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700666void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200667 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
668 // destruction of gJdwpState).
669 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
670 gJdwpState->PostVMDeath();
671 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100672 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
673 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700674 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800675 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700676 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800677 gRegistry = nullptr;
678 delete alloc_tracker_lock_;
679 alloc_tracker_lock_ = nullptr;
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100680 delete deoptimization_lock_;
681 deoptimization_lock_ = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700682}
683
Elliott Hughes767a1472011-10-26 18:49:02 -0700684void Dbg::GcDidFinish() {
685 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700686 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700687 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700688 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700689 }
690 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700691 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700692 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700693 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700694 }
695 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700696 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700697 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700698 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700699 }
700}
701
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700702void Dbg::SetJdwpAllowed(bool allowed) {
703 gJdwpAllowed = allowed;
704}
705
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700706DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700707 return Thread::Current()->GetInvokeReq();
708}
709
710Thread* Dbg::GetDebugThread() {
711 return (gJdwpState != NULL) ? gJdwpState->GetDebugThread() : NULL;
712}
713
714void Dbg::ClearWaitForEventThread() {
715 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700716}
717
718void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700719 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800720 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700721 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800722 gDisposed = false;
723}
724
725void Dbg::Disposed() {
726 gDisposed = true;
727}
728
729bool Dbg::IsDisposed() {
730 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700731}
732
Elliott Hughesa2155262011-11-16 16:26:58 -0800733void Dbg::GoActive() {
734 // Enable all debugging features, including scans for breakpoints.
735 // This is a no-op if we're already active.
736 // Only called from the JDWP handler thread.
737 if (gDebuggerActive) {
738 return;
739 }
740
Elliott Hughesc0f09332012-03-26 13:27:06 -0700741 {
742 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Sebastien Hertzed2be172014-08-19 15:33:43 +0200743 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700744 CHECK_EQ(gBreakpoints.size(), 0U);
745 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800746
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100747 {
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100748 MutexLock mu(Thread::Current(), *deoptimization_lock_);
749 CHECK_EQ(deoptimization_requests_.size(), 0U);
750 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100751 CHECK_EQ(delayed_full_undeoptimization_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200752 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
753 CHECK_EQ(method_enter_event_ref_count_, 0U);
754 CHECK_EQ(method_exit_event_ref_count_, 0U);
755 CHECK_EQ(field_read_event_ref_count_, 0U);
756 CHECK_EQ(field_write_event_ref_count_, 0U);
757 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100758 }
759
Ian Rogers62d6c772013-02-27 08:32:07 -0800760 Runtime* runtime = Runtime::Current();
761 runtime->GetThreadList()->SuspendAll();
762 Thread* self = Thread::Current();
763 ThreadState old_state = self->SetStateUnsafe(kRunnable);
764 CHECK_NE(old_state, kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100765 runtime->GetInstrumentation()->EnableDeoptimization();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200766 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800767 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800768 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
769 runtime->GetThreadList()->ResumeAll();
770
771 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700772}
773
774void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700775 CHECK(gDebuggerConnected);
776
Elliott Hughesc0f09332012-03-26 13:27:06 -0700777 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700778
Ian Rogers62d6c772013-02-27 08:32:07 -0800779 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
780 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
781 // and clear the object registry.
782 Runtime* runtime = Runtime::Current();
783 runtime->GetThreadList()->SuspendAll();
784 Thread* self = Thread::Current();
785 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100786
787 // Debugger may not be active at this point.
788 if (gDebuggerActive) {
789 {
790 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
791 // This prevents us from having any pending deoptimization request when the debugger attaches
792 // to us again while no event has been requested yet.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100793 MutexLock mu(Thread::Current(), *deoptimization_lock_);
794 deoptimization_requests_.clear();
795 full_deoptimization_event_count_ = 0U;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100796 delayed_full_undeoptimization_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100797 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200798 if (instrumentation_events_ != 0) {
799 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
800 instrumentation_events_);
801 instrumentation_events_ = 0;
802 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100803 runtime->GetInstrumentation()->DisableDeoptimization();
804 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100805 }
Elliott Hughes234ab152011-10-26 14:02:26 -0700806 gRegistry->Clear();
807 gDebuggerConnected = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800808 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
809 runtime->GetThreadList()->ResumeAll();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700810}
811
Elliott Hughesc0f09332012-03-26 13:27:06 -0700812bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700813 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700814}
815
Elliott Hughesc0f09332012-03-26 13:27:06 -0700816bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700817 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700818}
819
820int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800821 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700822}
823
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700824void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700825 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700826}
827
Elliott Hughes88d63092013-01-09 09:55:54 -0800828std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800829 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800830 if (o == NULL) {
831 return "NULL";
832 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800833 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes88d63092013-01-09 09:55:54 -0800834 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
Elliott Hughes436e3722012-02-17 20:01:47 -0800835 }
836 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700837 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800838 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700839 std::string temp;
840 return DescriptorToName(o->AsClass()->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700841}
842
Elliott Hughes88d63092013-01-09 09:55:54 -0800843JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800844 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800845 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800846 if (c == NULL) {
847 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800848 }
Elliott Hughes88d63092013-01-09 09:55:54 -0800849 class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800850 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800851}
852
Elliott Hughes88d63092013-01-09 09:55:54 -0800853JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800854 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800855 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800856 if (c == NULL) {
857 return status;
858 }
859 if (c->IsInterface()) {
860 // http://code.google.com/p/android/issues/detail?id=20856
Elliott Hughes88d63092013-01-09 09:55:54 -0800861 superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800862 } else {
Elliott Hughes88d63092013-01-09 09:55:54 -0800863 superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800864 }
865 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700866}
867
Elliott Hughes436e3722012-02-17 20:01:47 -0800868JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800869 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800870 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800871 return JDWP::ERR_INVALID_OBJECT;
872 }
873 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
874 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700875}
876
Elliott Hughes436e3722012-02-17 20:01:47 -0800877JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
878 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800879 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800880 if (c == NULL) {
881 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800882 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800883
884 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
885
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700886 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
887 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800888 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700889 if ((access_flags & kAccInterface) == 0) {
890 access_flags |= kAccSuper;
891 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800892
893 expandBufAdd4BE(pReply, access_flags);
894
895 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700896}
897
Elliott Hughesf327e072013-01-09 16:01:26 -0800898JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
899 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800900 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800901 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800902 return JDWP::ERR_INVALID_OBJECT;
903 }
904
905 // Ensure all threads are suspended while we read objects' lock words.
906 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100907 CHECK_EQ(self->GetState(), kRunnable);
908 self->TransitionFromRunnableToSuspended(kSuspended);
909 Runtime::Current()->GetThreadList()->SuspendAll();
Elliott Hughesf327e072013-01-09 16:01:26 -0800910
911 MonitorInfo monitor_info(o);
912
Sebastien Hertz54263242014-03-19 18:16:50 +0100913 Runtime::Current()->GetThreadList()->ResumeAll();
914 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800915
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700916 if (monitor_info.owner_ != NULL) {
917 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800918 } else {
919 expandBufAddObjectId(reply, gRegistry->Add(NULL));
920 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700921 expandBufAdd4BE(reply, monitor_info.entry_count_);
922 expandBufAdd4BE(reply, monitor_info.waiters_.size());
923 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
924 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800925 }
926 return JDWP::ERR_NONE;
927}
928
Elliott Hughes734b8c62013-01-11 15:32:45 -0800929JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
930 std::vector<JDWP::ObjectId>& monitors,
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100931 std::vector<uint32_t>& stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800932 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700933 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700934 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700935 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800936 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700937 : StackVisitor(thread, context), current_stack_depth(0),
938 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800939
940 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
941 // annotalysis.
942 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
943 if (!GetMethod()->IsRuntimeMethod()) {
944 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800945 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800946 }
947 return true;
948 }
949
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700950 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
951 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800952 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700953 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700954 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800955 }
956
Elliott Hughes734b8c62013-01-11 15:32:45 -0800957 size_t current_stack_depth;
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700958 std::vector<JDWP::ObjectId>* monitors;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700959 std::vector<uint32_t>* stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800960 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800961
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700962 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700963 Thread* thread;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700964 {
965 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700966 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
967 if (error != JDWP::ERR_NONE) {
968 return error;
969 }
970 if (!IsSuspendedForDebugger(soa, thread)) {
971 return JDWP::ERR_THREAD_NOT_SUSPENDED;
972 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700973 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700974 std::unique_ptr<Context> context(Context::Create());
975 OwnedMonitorVisitor visitor(thread, context.get(), &monitors, &stack_depths);
976 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800977 return JDWP::ERR_NONE;
978}
979
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100980JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
981 JDWP::ObjectId& contended_monitor) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700982 mirror::Object* contended_monitor_obj;
Elliott Hughesf9501702013-01-11 11:22:27 -0800983 ScopedObjectAccessUnchecked soa(Thread::Current());
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700984 {
985 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
986 Thread* thread;
987 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
988 if (error != JDWP::ERR_NONE) {
989 return error;
990 }
991 if (!IsSuspendedForDebugger(soa, thread)) {
992 return JDWP::ERR_THREAD_NOT_SUSPENDED;
993 }
994 contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Elliott Hughesf9501702013-01-11 11:22:27 -0800995 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700996 // Add() requires the thread_list_lock_ not held to avoid the lock
997 // level violation.
998 contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -0800999 return JDWP::ERR_NONE;
1000}
1001
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001002JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
1003 std::vector<uint64_t>& counts)
1004 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001005 gc::Heap* heap = Runtime::Current()->GetHeap();
1006 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001007 std::vector<mirror::Class*> classes;
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001008 counts.clear();
1009 for (size_t i = 0; i < class_ids.size(); ++i) {
1010 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001011 mirror::Class* c = DecodeClass(class_ids[i], status);
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001012 if (c == NULL) {
1013 return status;
1014 }
1015 classes.push_back(c);
1016 counts.push_back(0);
1017 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001018 heap->CountInstances(classes, false, &counts[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001019 return JDWP::ERR_NONE;
1020}
1021
Elliott Hughes3b78c942013-01-15 17:35:41 -08001022JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::ObjectId>& instances)
1023 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001024 gc::Heap* heap = Runtime::Current()->GetHeap();
1025 // We only want reachable instances, so do a GC.
1026 heap->CollectGarbage(false);
Elliott Hughes3b78c942013-01-15 17:35:41 -08001027 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001028 mirror::Class* c = DecodeClass(class_id, status);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001029 if (c == nullptr) {
Elliott Hughes3b78c942013-01-15 17:35:41 -08001030 return status;
1031 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001032 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -08001033 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
1034 for (size_t i = 0; i < raw_instances.size(); ++i) {
1035 instances.push_back(gRegistry->Add(raw_instances[i]));
1036 }
1037 return JDWP::ERR_NONE;
1038}
1039
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001040JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
1041 std::vector<JDWP::ObjectId>& referring_objects)
1042 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001043 gc::Heap* heap = Runtime::Current()->GetHeap();
1044 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001045 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001046 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001047 return JDWP::ERR_INVALID_OBJECT;
1048 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001049 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001050 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001051 for (size_t i = 0; i < raw_instances.size(); ++i) {
1052 referring_objects.push_back(gRegistry->Add(raw_instances[i]));
1053 }
1054 return JDWP::ERR_NONE;
1055}
1056
Elliott Hughes64f574f2013-02-20 14:57:12 -08001057JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id)
1058 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001059 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
1060 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
1061 return JDWP::ERR_INVALID_OBJECT;
1062 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001063 gRegistry->DisableCollection(object_id);
1064 return JDWP::ERR_NONE;
1065}
1066
1067JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id)
1068 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001069 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
1070 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
1071 // also ignores these cases and never return an error. However it's not obvious why this command
1072 // should behave differently from DisableCollection and IsCollected commands. So let's be more
1073 // strict and return an error if this happens.
1074 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
1075 return JDWP::ERR_INVALID_OBJECT;
1076 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001077 gRegistry->EnableCollection(object_id);
1078 return JDWP::ERR_NONE;
1079}
1080
1081JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool& is_collected)
1082 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001083 if (object_id == 0) {
1084 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +01001085 return JDWP::ERR_INVALID_OBJECT;
1086 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001087 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1088 // the RI seems to ignore this and assume object has been collected.
1089 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
1090 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
1091 is_collected = true;
1092 } else {
1093 is_collected = gRegistry->IsCollected(object_id);
1094 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001095 return JDWP::ERR_NONE;
1096}
1097
1098void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
1099 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1100 gRegistry->DisposeObject(object_id, reference_count);
1101}
1102
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001103static JDWP::JdwpTypeTag GetTypeTag(mirror::Class* klass)
1104 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1105 DCHECK(klass != nullptr);
1106 if (klass->IsArrayClass()) {
1107 return JDWP::TT_ARRAY;
1108 } else if (klass->IsInterface()) {
1109 return JDWP::TT_INTERFACE;
1110 } else {
1111 return JDWP::TT_CLASS;
1112 }
1113}
1114
Elliott Hughes88d63092013-01-09 09:55:54 -08001115JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001116 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001117 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001118 if (c == NULL) {
1119 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001120 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001121
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001122 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1123 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001124 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001125 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001126}
1127
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001128void Dbg::GetClassList(std::vector<JDWP::RefTypeId>& classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001129 // Get the complete list of reference classes (i.e. all classes except
1130 // the primitive types).
1131 // Returns a newly-allocated buffer full of RefTypeId values.
1132 struct ClassListCreator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001133 explicit ClassListCreator(std::vector<JDWP::RefTypeId>& classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001134 }
1135
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001136 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001137 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1138 }
1139
Elliott Hughes64f574f2013-02-20 14:57:12 -08001140 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1141 // annotalysis.
1142 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001143 if (!c->IsPrimitive()) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001144 classes.push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001145 }
1146 return true;
1147 }
1148
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001149 std::vector<JDWP::RefTypeId>& classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001150 };
1151
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001152 ClassListCreator clc(classes);
Elliott Hughesa2155262011-11-16 16:26:58 -08001153 Runtime::Current()->GetClassLinker()->VisitClasses(ClassListCreator::Visit, &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001154}
1155
Ian Rogers1ff3c982014-08-12 02:30:58 -07001156JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1157 uint32_t* pStatus, std::string* pDescriptor) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001158 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001159 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001160 if (c == NULL) {
1161 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001162 }
1163
Elliott Hughesa2155262011-11-16 16:26:58 -08001164 if (c->IsArrayClass()) {
1165 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1166 *pTypeTag = JDWP::TT_ARRAY;
1167 } else {
1168 if (c->IsErroneous()) {
1169 *pStatus = JDWP::CS_ERROR;
1170 } else {
1171 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1172 }
1173 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1174 }
1175
1176 if (pDescriptor != NULL) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001177 std::string temp;
1178 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001179 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001180 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001181}
1182
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001183void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001184 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001185 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
1186 ids.clear();
1187 for (size_t i = 0; i < classes.size(); ++i) {
1188 ids.push_back(gRegistry->Add(classes[i]));
1189 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001190}
1191
Elliott Hughes64f574f2013-02-20 14:57:12 -08001192JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
1193 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001194 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001195 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001196 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001197 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001198
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001199 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001200 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001201
1202 expandBufAdd1(pReply, type_tag);
1203 expandBufAddRefTypeId(pReply, type_id);
1204
1205 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001206}
1207
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001208JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001209 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001210 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001211 if (c == NULL) {
1212 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001213 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001214 std::string temp;
1215 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001216 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001217}
1218
Elliott Hughes88d63092013-01-09 09:55:54 -08001219JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string& result) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001220 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001221 mirror::Class* c = DecodeClass(class_id, status);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001222 if (c == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001223 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001224 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001225 const char* source_file = c->GetSourceFile();
1226 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001227 return JDWP::ERR_ABSENT_INFORMATION;
1228 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001229 result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001230 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001231}
1232
Elliott Hughes88d63092013-01-09 09:55:54 -08001233JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t& tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001234 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001235 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001236 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes546b9862012-06-20 16:06:13 -07001237 return JDWP::ERR_INVALID_OBJECT;
1238 }
Ian Rogers98379392014-02-24 16:53:16 -08001239 tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001240 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001241}
1242
Elliott Hughesaed4be92011-12-02 16:16:23 -08001243size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001244 switch (tag) {
1245 case JDWP::JT_VOID:
1246 return 0;
1247 case JDWP::JT_BYTE:
1248 case JDWP::JT_BOOLEAN:
1249 return 1;
1250 case JDWP::JT_CHAR:
1251 case JDWP::JT_SHORT:
1252 return 2;
1253 case JDWP::JT_FLOAT:
1254 case JDWP::JT_INT:
1255 return 4;
1256 case JDWP::JT_ARRAY:
1257 case JDWP::JT_OBJECT:
1258 case JDWP::JT_STRING:
1259 case JDWP::JT_THREAD:
1260 case JDWP::JT_THREAD_GROUP:
1261 case JDWP::JT_CLASS_LOADER:
1262 case JDWP::JT_CLASS_OBJECT:
1263 return sizeof(JDWP::ObjectId);
1264 case JDWP::JT_DOUBLE:
1265 case JDWP::JT_LONG:
1266 return 8;
1267 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001268 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001269 return -1;
1270 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001271}
1272
Elliott Hughes88d63092013-01-09 09:55:54 -08001273JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int& length) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001274 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001275 mirror::Array* a = DecodeArray(array_id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001276 if (a == NULL) {
1277 return status;
Elliott Hughes24437992011-11-30 14:49:33 -08001278 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001279 length = a->GetLength();
1280 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001281}
1282
Elliott Hughes88d63092013-01-09 09:55:54 -08001283JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001284 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001285 mirror::Array* a = DecodeArray(array_id, status);
Ian Rogers98379392014-02-24 16:53:16 -08001286 if (a == nullptr) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001287 return status;
1288 }
Elliott Hughes24437992011-11-30 14:49:33 -08001289
1290 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1291 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001292 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001293 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001294 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1295 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001296 expandBufAdd4BE(pReply, count);
1297
Ian Rogers1ff3c982014-08-12 02:30:58 -07001298 if (IsPrimitiveTag(element_tag)) {
1299 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001300 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1301 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001302 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001303 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1304 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001305 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001306 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1307 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001308 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001309 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1310 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001311 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001312 memcpy(dst, &src[offset * width], count * width);
1313 }
1314 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001315 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001316 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001317 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001318 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001319 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001320 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001321 expandBufAdd1(pReply, specific_tag);
1322 expandBufAddObjectId(pReply, gRegistry->Add(element));
1323 }
1324 }
1325
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001326 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001327}
1328
Ian Rogersef7d42f2014-01-06 12:55:46 -08001329template <typename T>
1330static void CopyArrayData(mirror::Array* a, JDWP::Request& src, int offset, int count)
1331 NO_THREAD_SAFETY_ANALYSIS {
1332 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001333 DCHECK(a->GetClass()->IsPrimitiveArray());
1334
Ian Rogersef7d42f2014-01-06 12:55:46 -08001335 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001336 for (int i = 0; i < count; ++i) {
1337 *dst++ = src.ReadValue(sizeof(T));
1338 }
1339}
1340
Elliott Hughes88d63092013-01-09 09:55:54 -08001341JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001342 JDWP::Request& request)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001343 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001344 JDWP::JdwpError status;
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001345 mirror::Array* dst = DecodeArray(array_id, status);
1346 if (dst == NULL) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001347 return status;
1348 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001349
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001350 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001351 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001352 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001353 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001354 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001355
Ian Rogers1ff3c982014-08-12 02:30:58 -07001356 if (IsPrimitiveTag(element_tag)) {
1357 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001358 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001359 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001360 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001361 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001362 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001363 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001364 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001365 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001366 }
1367 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001368 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001369 for (int i = 0; i < count; ++i) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001370 JDWP::ObjectId id = request.ReadObjectId();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001371 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001372 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001373 return JDWP::ERR_INVALID_OBJECT;
1374 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001375 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001376 }
1377 }
1378
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001379 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001380}
1381
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001382JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001383 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001384}
1385
Elliott Hughes88d63092013-01-09 09:55:54 -08001386JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001387 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001388 mirror::Class* c = DecodeClass(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 Rogers50b35e22012-10-04 10:09:15 -07001392 new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001393 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001394}
1395
Elliott Hughesbf13d362011-12-08 15:51:37 -08001396/*
1397 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1398 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001399JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001400 JDWP::ObjectId& new_array) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001401 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001402 mirror::Class* c = DecodeClass(array_class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001403 if (c == NULL) {
1404 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001405 }
Ian Rogers6fac4472014-02-25 17:01:10 -08001406 new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
1407 c->GetComponentSize(),
1408 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001409 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001410}
1411
Elliott Hughes88d63092013-01-09 09:55:54 -08001412bool Dbg::MatchType(JDWP::RefTypeId instance_class_id, JDWP::RefTypeId class_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001413 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001414 mirror::Class* c1 = DecodeClass(instance_class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001415 CHECK(c1 != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001416 mirror::Class* c2 = DecodeClass(class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001417 CHECK(c2 != NULL);
Sebastien Hertz123756a2013-11-27 15:49:42 +01001418 return c2->IsAssignableFrom(c1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001419}
1420
Brian Carlstromea46f952013-07-30 01:26:50 -07001421static JDWP::FieldId ToFieldId(const mirror::ArtField* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001422 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001423 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001424 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001425}
1426
Brian Carlstromea46f952013-07-30 01:26:50 -07001427static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001428 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001429 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001430 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001431}
1432
Brian Carlstromea46f952013-07-30 01:26:50 -07001433static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001434 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001435 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001436 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001437}
1438
Brian Carlstromea46f952013-07-30 01:26:50 -07001439static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001440 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001441 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001442 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001443}
1444
Brian Carlstromea46f952013-07-30 01:26:50 -07001445static void SetLocation(JDWP::JdwpLocation& location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001446 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001447 if (m == NULL) {
1448 memset(&location, 0, sizeof(location));
1449 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001450 mirror::Class* c = m->GetDeclaringClass();
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001451 location.type_tag = GetTypeTag(c);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001452 location.class_id = gRegistry->AddRefType(c);
Elliott Hughes74847412012-06-20 18:10:21 -07001453 location.method_id = ToMethodId(m);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001454 location.dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001455 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001456}
1457
Elliott Hughesa96836a2013-01-17 12:27:49 -08001458std::string Dbg::GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001459 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001460 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001461 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001462}
1463
Elliott Hughesa96836a2013-01-17 12:27:49 -08001464std::string Dbg::GetFieldName(JDWP::FieldId field_id)
1465 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001466 return FromFieldId(field_id)->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001467}
1468
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001469/*
1470 * Augment the access flags for synthetic methods and fields by setting
1471 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1472 * flags not specified by the Java programming language.
1473 */
1474static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1475 accessFlags &= kAccJavaFlagsMask;
1476 if ((accessFlags & kAccSynthetic) != 0) {
1477 accessFlags |= 0xf0000000;
1478 }
1479 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001480}
1481
Elliott Hughesdbb40792011-11-18 17:05:22 -08001482/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001483 * Circularly shifts registers so that arguments come first. Debuggers
1484 * expect slots to begin with arguments, but dex code places them at
1485 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001486 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001487static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1488 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001489 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001490 if (code_item == nullptr) {
1491 // We should not get here for a method without code (native, proxy or abstract). Log it and
1492 // return the slot as is since all registers are arguments.
1493 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1494 return slot;
1495 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001496 uint16_t ins_size = code_item->ins_size_;
1497 uint16_t locals_size = code_item->registers_size_ - ins_size;
1498 if (slot >= locals_size) {
1499 return slot - locals_size;
1500 } else {
1501 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001502 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001503}
1504
Jeff Haob7cefc72013-11-14 14:51:09 -08001505/*
1506 * Circularly shifts registers so that arguments come last. Reverts
1507 * slots to dex style argument placement.
1508 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001509static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001510 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001511 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001512 if (code_item == nullptr) {
1513 // We should not get here for a method without code (native, proxy or abstract). Log it and
1514 // return the slot as is since all registers are arguments.
1515 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1516 return slot;
1517 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001518 uint16_t ins_size = code_item->ins_size_;
1519 uint16_t locals_size = code_item->registers_size_ - ins_size;
1520 if (slot < ins_size) {
1521 return slot + locals_size;
1522 } else {
1523 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001524 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001525}
1526
Elliott Hughes88d63092013-01-09 09:55:54 -08001527JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001528 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001529 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001530 if (c == NULL) {
1531 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001532 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001533
1534 size_t instance_field_count = c->NumInstanceFields();
1535 size_t static_field_count = c->NumStaticFields();
1536
1537 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1538
1539 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001540 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001541 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001542 expandBufAddUtf8String(pReply, f->GetName());
1543 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001544 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001545 static const char genericSignature[1] = "";
1546 expandBufAddUtf8String(pReply, genericSignature);
1547 }
1548 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1549 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001550 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001551}
1552
Elliott Hughes88d63092013-01-09 09:55:54 -08001553JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001554 JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001555 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001556 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001557 if (c == NULL) {
1558 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001559 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001560
1561 size_t direct_method_count = c->NumDirectMethods();
1562 size_t virtual_method_count = c->NumVirtualMethods();
1563
1564 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1565
1566 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001567 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001568 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001569 expandBufAddUtf8String(pReply, m->GetName());
1570 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001571 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001572 static const char genericSignature[1] = "";
1573 expandBufAddUtf8String(pReply, genericSignature);
1574 }
1575 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1576 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001577 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001578}
1579
Elliott Hughes88d63092013-01-09 09:55:54 -08001580JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001581 JDWP::JdwpError status;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001582 Thread* self = Thread::Current();
1583 StackHandleScope<1> hs(self);
1584 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, status)));
1585 if (c.Get() == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001586 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001587 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001588 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001589 expandBufAdd4BE(pReply, interface_count);
1590 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001591 expandBufAddRefTypeId(pReply,
1592 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001593 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001594 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001595}
1596
Elliott Hughes88d63092013-01-09 09:55:54 -08001597void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001598 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001599 struct DebugCallbackContext {
1600 int numItems;
1601 JDWP::ExpandBuf* pReply;
1602
Elliott Hughes2435a572012-02-17 16:07:41 -08001603 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001604 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1605 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001606 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001607 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001608 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001609 }
1610 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001611 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001612 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001613 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001614 if (code_item == nullptr) {
1615 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001616 start = -1;
1617 end = -1;
1618 } else {
1619 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001620 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001621 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001622 }
1623
1624 expandBufAdd8BE(pReply, start);
1625 expandBufAdd8BE(pReply, end);
1626
1627 // Add numLines later
1628 size_t numLinesOffset = expandBufGetLength(pReply);
1629 expandBufAdd4BE(pReply, 0);
1630
1631 DebugCallbackContext context;
1632 context.numItems = 0;
1633 context.pReply = pReply;
1634
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001635 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001636 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
1637 DebugCallbackContext::Callback, NULL, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001638 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001639
1640 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001641}
1642
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001643void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1644 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001645 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001646 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001647 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001648 size_t variable_count;
1649 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001650
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001651 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1652 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001653 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001654 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1655
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001656 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1657 pContext->variable_count, startAddress, endAddress - startAddress,
1658 name, descriptor, signature, slot,
1659 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001660
Jeff Haob7cefc72013-11-14 14:51:09 -08001661 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001662
Elliott Hughesdbb40792011-11-18 17:05:22 -08001663 expandBufAdd8BE(pContext->pReply, startAddress);
1664 expandBufAddUtf8String(pContext->pReply, name);
1665 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001666 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001667 expandBufAddUtf8String(pContext->pReply, signature);
1668 }
1669 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1670 expandBufAdd4BE(pContext->pReply, slot);
1671
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001672 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001673 }
1674 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001675 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001676
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001677 // arg_count considers doubles and longs to take 2 units.
1678 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001679 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001680 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001681
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001682 // We don't know the total number of variables yet, so leave a blank and update it later.
1683 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001684 expandBufAdd4BE(pReply, 0);
1685
1686 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001687 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001688 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001689 context.variable_count = 0;
1690 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001691
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001692 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001693 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001694 m->GetDexFile()->DecodeDebugInfo(
1695 code_item, m->IsStatic(), m->GetDexMethodIndex(), NULL, DebugCallbackContext::Callback,
1696 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001697 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001698
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001699 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001700}
1701
Jeff Hao579b0242013-11-18 13:16:49 -08001702void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1703 JDWP::ExpandBuf* pReply) {
1704 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001705 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001706 OutputJValue(tag, return_value, pReply);
1707}
1708
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001709void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1710 JDWP::ExpandBuf* pReply) {
1711 mirror::ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001712 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001713 OutputJValue(tag, field_value, pReply);
1714}
1715
Elliott Hughes9777ba22013-01-17 09:04:19 -08001716JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
1717 std::vector<uint8_t>& bytecodes)
1718 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001719 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001720 if (m == NULL) {
1721 return JDWP::ERR_INVALID_METHODID;
1722 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001723 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001724 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1725 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1726 const uint8_t* end = begin + byte_count;
1727 for (const uint8_t* p = begin; p != end; ++p) {
1728 bytecodes.push_back(*p);
1729 }
1730 return JDWP::ERR_NONE;
1731}
1732
Elliott Hughes88d63092013-01-09 09:55:54 -08001733JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001734 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001735}
1736
Elliott Hughes88d63092013-01-09 09:55:54 -08001737JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001738 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001739}
1740
Elliott Hughes88d63092013-01-09 09:55:54 -08001741static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1742 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001743 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001744 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001745 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001746 mirror::Class* c = DecodeClass(ref_type_id, status);
Elliott Hughes88d63092013-01-09 09:55:54 -08001747 if (ref_type_id != 0 && c == NULL) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001748 return status;
1749 }
1750
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001751 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001752 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001753 return JDWP::ERR_INVALID_OBJECT;
1754 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001755 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001756
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001757 mirror::Class* receiver_class = c;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001758 if (receiver_class == NULL && o != NULL) {
1759 receiver_class = o->GetClass();
1760 }
1761 // TODO: should we give up now if receiver_class is NULL?
1762 if (receiver_class != NULL && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
1763 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001764 return JDWP::ERR_INVALID_FIELDID;
1765 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001766
Elliott Hughes0cf74332012-02-23 23:14:00 -08001767 // The RI only enforces the static/non-static mismatch in one direction.
1768 // TODO: should we change the tests and check both?
1769 if (is_static) {
1770 if (!f->IsStatic()) {
1771 return JDWP::ERR_INVALID_FIELDID;
1772 }
1773 } else {
1774 if (f->IsStatic()) {
1775 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001776 }
1777 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001778 if (f->IsStatic()) {
1779 o = f->GetDeclaringClass();
1780 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001781
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001782 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001783 JValue field_value;
1784 if (tag == JDWP::JT_VOID) {
1785 LOG(FATAL) << "Unknown tag: " << tag;
1786 } else if (!IsPrimitiveTag(tag)) {
1787 field_value.SetL(f->GetObject(o));
1788 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1789 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001790 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001791 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001792 }
Jeff Hao579b0242013-11-18 13:16:49 -08001793 Dbg::OutputJValue(tag, &field_value, pReply);
1794
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001795 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001796}
1797
Elliott Hughes88d63092013-01-09 09:55:54 -08001798JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001799 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001800 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001801}
1802
Elliott Hughes88d63092013-01-09 09:55:54 -08001803JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) {
1804 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001805}
1806
Elliott Hughes88d63092013-01-09 09:55:54 -08001807static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001808 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001809 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001810 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001811 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001812 return JDWP::ERR_INVALID_OBJECT;
1813 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001814 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001815
1816 // The RI only enforces the static/non-static mismatch in one direction.
1817 // TODO: should we change the tests and check both?
1818 if (is_static) {
1819 if (!f->IsStatic()) {
1820 return JDWP::ERR_INVALID_FIELDID;
1821 }
1822 } else {
1823 if (f->IsStatic()) {
1824 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001825 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001826 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001827 if (f->IsStatic()) {
1828 o = f->GetDeclaringClass();
1829 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001830
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001831 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001832
1833 if (IsPrimitiveTag(tag)) {
1834 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001835 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001836 // Debugging can't use transactional mode (runtime only).
1837 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001838 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001839 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001840 // Debugging can't use transactional mode (runtime only).
1841 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001842 }
1843 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001844 mirror::Object* v = gRegistry->Get<mirror::Object*>(value);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001845 if (v == ObjectRegistry::kInvalidObject) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001846 return JDWP::ERR_INVALID_OBJECT;
1847 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001848 if (v != NULL) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001849 mirror::Class* field_type;
1850 {
1851 StackHandleScope<3> hs(Thread::Current());
1852 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1853 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
1854 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
1855 field_type = FieldHelper(h_f).GetType();
1856 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001857 if (!field_type->IsAssignableFrom(v->GetClass())) {
1858 return JDWP::ERR_INVALID_OBJECT;
1859 }
1860 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001861 // Debugging can't use transactional mode (runtime only).
1862 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001863 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001864
1865 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001866}
1867
Elliott Hughes88d63092013-01-09 09:55:54 -08001868JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001869 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001870 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001871}
1872
Elliott Hughes88d63092013-01-09 09:55:54 -08001873JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1874 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001875}
1876
Elliott Hughes88d63092013-01-09 09:55:54 -08001877std::string Dbg::StringToUtf8(JDWP::ObjectId string_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001878 mirror::String* s = gRegistry->Get<mirror::String*>(string_id);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001879 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001880}
1881
Jeff Hao579b0242013-11-18 13:16:49 -08001882void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1883 if (IsPrimitiveTag(tag)) {
1884 expandBufAdd1(pReply, tag);
1885 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1886 expandBufAdd1(pReply, return_value->GetI());
1887 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1888 expandBufAdd2BE(pReply, return_value->GetI());
1889 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1890 expandBufAdd4BE(pReply, return_value->GetI());
1891 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1892 expandBufAdd8BE(pReply, return_value->GetJ());
1893 } else {
1894 CHECK_EQ(tag, JDWP::JT_VOID);
1895 }
1896 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001897 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001898 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001899 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001900 expandBufAddObjectId(pReply, gRegistry->Add(value));
1901 }
1902}
1903
Elliott Hughes221229c2013-01-08 18:17:50 -08001904JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string& name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001905 ScopedObjectAccessUnchecked soa(Thread::Current());
1906 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001907 Thread* thread;
1908 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1909 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1910 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001911 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001912
1913 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001914 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Brian Carlstromea46f952013-07-30 01:26:50 -07001915 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001916 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1917 mirror::String* s =
1918 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Elliott Hughes221229c2013-01-08 18:17:50 -08001919 if (s != NULL) {
1920 name = s->ToModifiedUtf8();
1921 }
1922 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001923}
1924
Elliott Hughes221229c2013-01-08 18:17:50 -08001925JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001926 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001927 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001928 if (thread_object == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001929 return JDWP::ERR_INVALID_OBJECT;
1930 }
Ian Rogers98379392014-02-24 16:53:16 -08001931 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001932 // Okay, so it's an object, but is it actually a thread?
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001933 JDWP::JdwpError error;
1934 {
1935 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
1936 Thread* thread;
1937 error = DecodeThread(soa, thread_id, thread);
1938 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001939 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1940 // Zombie threads are in the null group.
1941 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001942 error = JDWP::ERR_NONE;
1943 } else if (error == JDWP::ERR_NONE) {
1944 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1945 CHECK(c != nullptr);
1946 mirror::ArtField* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001947 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001948 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001949 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001950 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1951 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001952 }
Ian Rogers98379392014-02-24 16:53:16 -08001953 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001954 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001955}
1956
Elliott Hughes88d63092013-01-09 09:55:54 -08001957std::string Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001958 ScopedObjectAccess 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: GetThreadGroupName");
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("name", "Ljava/lang/String;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001965 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001966 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Ian Rogers98379392014-02-24 16:53:16 -08001967 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes499c5132011-11-17 14:55:11 -08001968 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001969}
1970
Elliott Hughes88d63092013-01-09 09:55:54 -08001971JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id) {
Ian Rogers98379392014-02-24 16:53:16 -08001972 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001973 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001974 CHECK(thread_group != nullptr);
1975 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupParent");
1976 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1977 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001978 mirror::ArtField* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
Elliott Hughes4e235312011-12-02 11:34:15 -08001979 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001980 mirror::Object* parent = f->GetObject(thread_group);
Ian Rogers98379392014-02-24 16:53:16 -08001981 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes4e235312011-12-02 11:34:15 -08001982 return gRegistry->Add(parent);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001983}
1984
1985JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001986 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001987 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001988 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001989 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001990}
1991
1992JDWP::ObjectId Dbg::GetMainThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001993 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001994 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001995 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001996 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001997}
1998
Jeff Hao920af3e2013-08-28 15:46:38 -07001999JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2000 switch (state) {
2001 case kBlocked:
2002 return JDWP::TS_MONITOR;
2003 case kNative:
2004 case kRunnable:
2005 case kSuspended:
2006 return JDWP::TS_RUNNING;
2007 case kSleeping:
2008 return JDWP::TS_SLEEPING;
2009 case kStarting:
2010 case kTerminated:
2011 return JDWP::TS_ZOMBIE;
2012 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002013 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002014 case kWaitingForDebuggerSend:
2015 case kWaitingForDebuggerSuspension:
2016 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002017 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002018 case kWaitingForGcToComplete:
Jeff Hao920af3e2013-08-28 15:46:38 -07002019 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002020 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002021 case kWaitingForSignalCatcherOutput:
2022 case kWaitingInMainDebuggerLoop:
2023 case kWaitingInMainSignalCatcherLoop:
2024 case kWaitingPerformingGc:
2025 case kWaiting:
2026 return JDWP::TS_WAIT;
2027 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2028 }
2029 LOG(FATAL) << "Unknown thread state: " << state;
2030 return JDWP::TS_ZOMBIE;
2031}
2032
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002033JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2034 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002035 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002036
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002037 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2038
Ian Rogers50b35e22012-10-04 10:09:15 -07002039 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002040 Thread* thread;
2041 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2042 if (error != JDWP::ERR_NONE) {
2043 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2044 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002045 return JDWP::ERR_NONE;
2046 }
2047 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002048 }
2049
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002050 if (IsSuspendedForDebugger(soa, thread)) {
2051 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002052 }
2053
Jeff Hao920af3e2013-08-28 15:46:38 -07002054 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002055 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002056}
2057
Elliott Hughes221229c2013-01-08 18:17:50 -08002058JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002059 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07002060 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002061 Thread* thread;
2062 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2063 if (error != JDWP::ERR_NONE) {
2064 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002065 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002066 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002067 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002068 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002069}
2070
Elliott Hughesf9501702013-01-11 11:22:27 -08002071JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2072 ScopedObjectAccess soa(Thread::Current());
2073 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2074 Thread* thread;
2075 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2076 if (error != JDWP::ERR_NONE) {
2077 return error;
2078 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002079 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002080 return JDWP::ERR_NONE;
2081}
2082
Elliott Hughescaf76542012-06-28 16:08:22 -07002083void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids) {
Ian Rogers365c1022012-06-22 15:05:28 -07002084 class ThreadListVisitor {
2085 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002086 ThreadListVisitor(const ScopedObjectAccessUnchecked& soa, mirror::Object* desired_thread_group,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002087 std::vector<JDWP::ObjectId>& thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002088 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
jeffhao0dfbb7e2012-11-28 15:26:03 -08002089 : soa_(soa), desired_thread_group_(desired_thread_group), thread_ids_(thread_ids) {}
Ian Rogers365c1022012-06-22 15:05:28 -07002090
Elliott Hughesa2155262011-11-16 16:26:58 -08002091 static void Visit(Thread* t, void* arg) {
2092 reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t);
2093 }
2094
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002095 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2096 // annotalysis.
2097 void Visit(Thread* t) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08002098 if (t == Dbg::GetDebugThread()) {
2099 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2100 // query all threads, so it's easier if we just don't tell them about this thread.
2101 return;
2102 }
Sebastien Hertz9ac56022014-08-12 09:09:37 +02002103 if (t->IsStillStarting()) {
2104 // This thread is being started (and has been registered in the thread list). However, it is
2105 // not completely started yet so we must ignore it.
2106 return;
2107 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002108 mirror::Object* peer = t->GetPeer();
jeffhao0dfbb7e2012-11-28 15:26:03 -08002109 if (IsInDesiredThreadGroup(peer)) {
Ian Rogers120f1c72012-09-28 17:17:10 -07002110 thread_ids_.push_back(gRegistry->Add(peer));
Elliott Hughesa2155262011-11-16 16:26:58 -08002111 }
2112 }
2113
Ian Rogers365c1022012-06-22 15:05:28 -07002114 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002115 bool IsInDesiredThreadGroup(mirror::Object* peer)
jeffhao0dfbb7e2012-11-28 15:26:03 -08002116 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao0dfbb7e2012-11-28 15:26:03 -08002117 // peer might be NULL if the thread is still starting up.
2118 if (peer == NULL) {
2119 // We can't tell the debugger about this thread yet.
2120 // TODO: if we identified threads to the debugger by their Thread*
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002121 // rather than their peer's mirror::Object*, we could fix this.
jeffhao0dfbb7e2012-11-28 15:26:03 -08002122 // Doing so might help us report ZOMBIE threads too.
2123 return false;
2124 }
jeffhaoc1e04902012-12-13 12:41:10 -08002125 // Do we want threads from all thread groups?
2126 if (desired_thread_group_ == NULL) {
2127 return true;
2128 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002129 mirror::Object* group = soa_.DecodeField(WellKnownClasses::java_lang_Thread_group)->GetObject(peer);
jeffhao0dfbb7e2012-11-28 15:26:03 -08002130 return (group == desired_thread_group_);
2131 }
2132
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002133 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002134 mirror::Object* const desired_thread_group_;
Elliott Hughescaf76542012-06-28 16:08:22 -07002135 std::vector<JDWP::ObjectId>& thread_ids_;
Elliott Hughesa2155262011-11-16 16:26:58 -08002136 };
2137
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002138 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002139 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002140 ThreadListVisitor tlv(soa, thread_group, thread_ids);
Ian Rogers50b35e22012-10-04 10:09:15 -07002141 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -07002142 Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv);
Elliott Hughescaf76542012-06-28 16:08:22 -07002143}
Elliott Hughesa2155262011-11-16 16:26:58 -08002144
Elliott Hughescaf76542012-06-28 16:08:22 -07002145void Dbg::GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002146 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002147 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughescaf76542012-06-28 16:08:22 -07002148
2149 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Brian Carlstromea46f952013-07-30 01:26:50 -07002150 mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002151 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Elliott Hughescaf76542012-06-28 16:08:22 -07002152
2153 // Get the array and size out of the ArrayList<ThreadGroup>...
Brian Carlstromea46f952013-07-30 01:26:50 -07002154 mirror::ArtField* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;");
2155 mirror::ArtField* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002156 mirror::ObjectArray<mirror::Object>* groups_array =
2157 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
Elliott Hughescaf76542012-06-28 16:08:22 -07002158 const int32_t size = size_field->GetInt(groups_array_list);
2159
2160 // Copy the first 'size' elements out of the array into the result.
2161 for (int32_t i = 0; i < size; ++i) {
2162 child_thread_group_ids.push_back(gRegistry->Add(groups_array->Get(i)));
Elliott Hughesa2155262011-11-16 16:26:58 -08002163 }
2164}
2165
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002166static int GetStackDepth(Thread* thread)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002167 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002168 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07002169 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002170 : StackVisitor(thread, NULL), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002171
Elliott Hughes64f574f2013-02-20 14:57:12 -08002172 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2173 // annotalysis.
2174 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002175 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002176 ++depth;
2177 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002178 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002179 }
2180 size_t depth;
2181 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002182
Ian Rogers7a22fa62013-01-23 12:16:16 -08002183 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002184 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002185 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002186}
2187
Elliott Hughes221229c2013-01-08 18:17:50 -08002188JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002189 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002190 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002191 Thread* thread;
2192 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2193 if (error != JDWP::ERR_NONE) {
2194 return error;
2195 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002196 if (!IsSuspendedForDebugger(soa, thread)) {
2197 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2198 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002199 result = GetStackDepth(thread);
2200 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002201}
2202
Ian Rogers306057f2012-11-26 12:45:53 -08002203JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2204 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002205 class GetFrameVisitor : public StackVisitor {
2206 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08002207 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002208 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002209 : StackVisitor(thread, NULL), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002210 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
2211 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002212 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002213
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002214 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2215 // annotalysis.
2216 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002217 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002218 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002219 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002220 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002221 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002222 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002223 if (depth_ >= start_frame_) {
2224 JDWP::FrameId frame_id(GetFrameId());
2225 JDWP::JdwpLocation location;
2226 SetLocation(location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002227 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002228 expandBufAdd8BE(buf_, frame_id);
2229 expandBufAddLocation(buf_, location);
2230 }
2231 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002232 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002233 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002234
2235 private:
2236 size_t depth_;
2237 const size_t start_frame_;
2238 const size_t frame_count_;
2239 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002240 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002241
2242 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002243 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002244 Thread* thread;
2245 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2246 if (error != JDWP::ERR_NONE) {
2247 return error;
2248 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002249 if (!IsSuspendedForDebugger(soa, thread)) {
2250 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2251 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002252 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002253 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002254 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002255}
2256
2257JDWP::ObjectId Dbg::GetThreadSelfId() {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002258 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08002259 return gRegistry->Add(soa.Self()->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002260}
2261
Elliott Hughes475fc232011-10-25 15:00:35 -07002262void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002263 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002264}
2265
2266void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07002267 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002268}
2269
Elliott Hughes221229c2013-01-08 18:17:50 -08002270JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002271 Thread* self = Thread::Current();
2272 ScopedLocalRef<jobject> peer(self->GetJniEnv(), NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002273 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002274 ScopedObjectAccess soa(self);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002275 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002276 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002277 if (peer.get() == NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002278 return JDWP::ERR_THREAD_NOT_ALIVE;
2279 }
Ian Rogersf3d874c2014-07-17 18:52:42 -07002280 // Suspend thread to build stack trace. Take suspend thread lock to avoid races with threads
2281 // trying to suspend this one.
2282 MutexLock mu(self, *Locks::thread_list_suspend_thread_lock_);
Elliott Hughesf327e072013-01-09 16:01:26 -08002283 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002284 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2285 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2286 &timed_out);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002287 if (thread != NULL) {
2288 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002289 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002290 return JDWP::ERR_INTERNAL;
2291 } else {
2292 return JDWP::ERR_THREAD_NOT_ALIVE;
2293 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002294}
2295
Elliott Hughes221229c2013-01-08 18:17:50 -08002296void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002297 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002298 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
jeffhaoa77f0f62012-12-05 17:19:31 -08002299 Thread* thread;
2300 {
2301 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2302 thread = Thread::FromManagedThread(soa, peer);
2303 }
Elliott Hughes4e235312011-12-02 11:34:15 -08002304 if (thread == NULL) {
2305 LOG(WARNING) << "No such thread for resume: " << peer;
2306 return;
2307 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002308 bool needs_resume;
2309 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002310 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002311 needs_resume = thread->GetSuspendCount() > 0;
2312 }
2313 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002314 Runtime::Current()->GetThreadList()->Resume(thread, true);
2315 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002316}
2317
2318void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002319 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002320}
2321
Ian Rogers0399dde2012-06-06 17:09:28 -07002322struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002323 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002324 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002325 : StackVisitor(thread, context), this_object(NULL), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002326
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002327 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2328 // annotalysis.
2329 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002330 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002331 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002332 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002333 this_object = GetThisObject();
2334 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002335 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002336 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002337
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002338 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002339 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002340};
2341
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002342JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2343 JDWP::ObjectId* result) {
2344 ScopedObjectAccessUnchecked soa(Thread::Current());
2345 Thread* thread;
2346 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002347 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002348 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2349 if (error != JDWP::ERR_NONE) {
2350 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002351 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002352 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002353 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2354 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002355 }
Ian Rogers700a4022014-05-19 16:49:03 -07002356 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002357 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002358 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002359 *result = gRegistry->Add(visitor.this_object);
2360 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002361}
2362
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002363JDWP::JdwpError Dbg::GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2364 JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002365 struct GetLocalVisitor : public StackVisitor {
Ian Rogers98379392014-02-24 16:53:16 -08002366 GetLocalVisitor(const ScopedObjectAccessUnchecked& soa, Thread* thread, Context* context,
2367 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002368 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers98379392014-02-24 16:53:16 -08002369 : StackVisitor(thread, context), soa_(soa), frame_id_(frame_id), slot_(slot), tag_(tag),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002370 buf_(buf), width_(width), error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002371
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002372 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2373 // annotalysis.
2374 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002375 if (GetFrameId() != frame_id_) {
2376 return true; // Not our frame, carry on.
Elliott Hughesdbb40792011-11-18 17:05:22 -08002377 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002378 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002379 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002380 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002381 if (m->IsNative()) {
2382 // We can't read local value from native method.
2383 error_ = JDWP::ERR_OPAQUE_FRAME;
2384 return false;
2385 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002386 uint16_t reg = DemangleSlot(slot_, m);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002387 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
Ian Rogers0399dde2012-06-06 17:09:28 -07002388 switch (tag_) {
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002389 case JDWP::JT_BOOLEAN: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002390 CHECK_EQ(width_, 1U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002391 uint32_t intVal;
2392 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2393 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2394 JDWP::Set1(buf_+1, intVal != 0);
2395 } else {
2396 VLOG(jdwp) << "failed to get boolean local " << reg;
2397 error_ = kFailureErrorCode;
2398 }
2399 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002400 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002401 case JDWP::JT_BYTE: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002402 CHECK_EQ(width_, 1U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002403 uint32_t intVal;
2404 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2405 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2406 JDWP::Set1(buf_+1, intVal);
2407 } else {
2408 VLOG(jdwp) << "failed to get byte local " << reg;
2409 error_ = kFailureErrorCode;
2410 }
2411 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002412 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002413 case JDWP::JT_SHORT:
2414 case JDWP::JT_CHAR: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002415 CHECK_EQ(width_, 2U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002416 uint32_t intVal;
2417 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2418 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2419 JDWP::Set2BE(buf_+1, intVal);
2420 } else {
2421 VLOG(jdwp) << "failed to get short/char local " << reg;
2422 error_ = kFailureErrorCode;
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002423 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002424 break;
Sebastien Hertzaa9b3ae2014-06-13 14:49:27 +02002425 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002426 case JDWP::JT_INT: {
2427 CHECK_EQ(width_, 4U);
2428 uint32_t intVal;
2429 if (GetVReg(m, reg, kIntVReg, &intVal)) {
2430 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2431 JDWP::Set4BE(buf_+1, intVal);
2432 } else {
2433 VLOG(jdwp) << "failed to get int local " << reg;
2434 error_ = kFailureErrorCode;
Sebastien Hertz8ebd94a2014-06-17 09:49:21 +00002435 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002436 break;
Sebastien Hertz8ebd94a2014-06-17 09:49:21 +00002437 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002438 case JDWP::JT_FLOAT: {
2439 CHECK_EQ(width_, 4U);
2440 uint32_t intVal;
2441 if (GetVReg(m, reg, kFloatVReg, &intVal)) {
2442 VLOG(jdwp) << "get float local " << reg << " = " << intVal;
2443 JDWP::Set4BE(buf_+1, intVal);
2444 } else {
2445 VLOG(jdwp) << "failed to get float local " << reg;
2446 error_ = kFailureErrorCode;
2447 }
2448 break;
2449 }
2450 case JDWP::JT_ARRAY:
2451 case JDWP::JT_CLASS_LOADER:
2452 case JDWP::JT_CLASS_OBJECT:
2453 case JDWP::JT_OBJECT:
2454 case JDWP::JT_STRING:
2455 case JDWP::JT_THREAD:
2456 case JDWP::JT_THREAD_GROUP: {
2457 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
2458 uint32_t intVal;
2459 if (GetVReg(m, reg, kReferenceVReg, &intVal)) {
2460 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2461 VLOG(jdwp) << "get " << tag_ << " object local " << reg << " = " << o;
2462 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2463 LOG(FATAL) << "Register " << reg << " expected to hold " << tag_ << " object: " << o;
2464 }
2465 tag_ = TagFromObject(soa_, o);
2466 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2467 } else {
2468 VLOG(jdwp) << "failed to get " << tag_ << " object local " << reg;
2469 error_ = kFailureErrorCode;
2470 }
2471 break;
2472 }
2473 case JDWP::JT_DOUBLE: {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002474 CHECK_EQ(width_, 8U);
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002475 uint64_t longVal;
2476 if (GetVRegPair(m, reg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2477 VLOG(jdwp) << "get double local " << reg << " = " << longVal;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002478 JDWP::Set8BE(buf_+1, longVal);
2479 } else {
2480 VLOG(jdwp) << "failed to get double local " << reg;
2481 error_ = kFailureErrorCode;
2482 }
2483 break;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002484 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002485 case JDWP::JT_LONG: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002486 CHECK_EQ(width_, 8U);
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002487 uint64_t longVal;
2488 if (GetVRegPair(m, reg, kLongLoVReg, kLongHiVReg, &longVal)) {
2489 VLOG(jdwp) << "get long local " << reg << " = " << longVal;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002490 JDWP::Set8BE(buf_+1, longVal);
2491 } else {
2492 VLOG(jdwp) << "failed to get long local " << reg;
2493 error_ = kFailureErrorCode;
2494 }
2495 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002496 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002497 default:
2498 LOG(FATAL) << "Unknown tag " << tag_;
2499 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002500 }
2501
2502 // Prepend tag, which may have been updated.
2503 JDWP::Set1(buf_, tag_);
2504 return false;
2505 }
Ian Rogers98379392014-02-24 16:53:16 -08002506 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002507 const JDWP::FrameId frame_id_;
2508 const int slot_;
2509 JDWP::JdwpTag tag_;
2510 uint8_t* const buf_;
2511 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002512 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002513 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002514
2515 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002516 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002517 Thread* thread;
2518 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2519 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002520 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002521 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002522 // TODO check thread is suspended by the debugger ?
Ian Rogers700a4022014-05-19 16:49:03 -07002523 std::unique_ptr<Context> context(Context::Create());
Ian Rogers98379392014-02-24 16:53:16 -08002524 GetLocalVisitor visitor(soa, thread, context.get(), frame_id, slot, tag, buf, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002525 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002526 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002527}
2528
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002529JDWP::JdwpError Dbg::SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2530 JDWP::JdwpTag tag, uint64_t value, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002531 struct SetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002532 SetLocalVisitor(Thread* thread, Context* context,
Ian Rogers0399dde2012-06-06 17:09:28 -07002533 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
Ian Rogersca190662012-06-26 15:45:57 -07002534 size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002535 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002536 : StackVisitor(thread, context),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002537 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width),
2538 error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002539
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002540 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2541 // annotalysis.
2542 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002543 if (GetFrameId() != frame_id_) {
2544 return true; // Not our frame, carry on.
2545 }
2546 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002547 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002548 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002549 if (m->IsNative()) {
2550 // We can't read local value from native method.
2551 error_ = JDWP::ERR_OPAQUE_FRAME;
2552 return false;
2553 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002554 uint16_t reg = DemangleSlot(slot_, m);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002555 constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION;
Ian Rogers0399dde2012-06-06 17:09:28 -07002556 switch (tag_) {
2557 case JDWP::JT_BOOLEAN:
2558 case JDWP::JT_BYTE:
2559 CHECK_EQ(width_, 1U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002560 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2561 VLOG(jdwp) << "failed to set boolean/byte local " << reg << " = "
2562 << static_cast<uint32_t>(value_);
2563 error_ = kFailureErrorCode;
2564 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002565 break;
2566 case JDWP::JT_SHORT:
2567 case JDWP::JT_CHAR:
2568 CHECK_EQ(width_, 2U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002569 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2570 VLOG(jdwp) << "failed to set short/char local " << reg << " = "
2571 << static_cast<uint32_t>(value_);
2572 error_ = kFailureErrorCode;
2573 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002574 break;
2575 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002576 CHECK_EQ(width_, 4U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002577 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg)) {
2578 VLOG(jdwp) << "failed to set int local " << reg << " = "
2579 << static_cast<uint32_t>(value_);
2580 error_ = kFailureErrorCode;
2581 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002582 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002583 case JDWP::JT_FLOAT:
2584 CHECK_EQ(width_, 4U);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002585 if (!SetVReg(m, reg, static_cast<uint32_t>(value_), kFloatVReg)) {
2586 VLOG(jdwp) << "failed to set float local " << reg << " = "
2587 << static_cast<uint32_t>(value_);
2588 error_ = kFailureErrorCode;
2589 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002590 break;
2591 case JDWP::JT_ARRAY:
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002592 case JDWP::JT_CLASS_LOADER:
2593 case JDWP::JT_CLASS_OBJECT:
Ian Rogers0399dde2012-06-06 17:09:28 -07002594 case JDWP::JT_OBJECT:
2595 case JDWP::JT_STRING:
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002596 case JDWP::JT_THREAD:
2597 case JDWP::JT_THREAD_GROUP: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002598 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002599 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value_));
Elliott Hughes64f574f2013-02-20 14:57:12 -08002600 if (o == ObjectRegistry::kInvalidObject) {
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002601 VLOG(jdwp) << tag_ << " object " << o << " is an invalid object";
2602 error_ = JDWP::ERR_INVALID_OBJECT;
2603 } else if (!SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2604 kReferenceVReg)) {
2605 VLOG(jdwp) << "failed to set " << tag_ << " object local " << reg << " = " << o;
2606 error_ = kFailureErrorCode;
Ian Rogers0399dde2012-06-06 17:09:28 -07002607 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002608 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002609 }
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002610 case JDWP::JT_DOUBLE: {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002611 CHECK_EQ(width_, 8U);
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002612 bool success = SetVRegPair(m, reg, value_, kDoubleLoVReg, kDoubleHiVReg);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002613 if (!success) {
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002614 VLOG(jdwp) << "failed to set double local " << reg << " = " << value_;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002615 error_ = kFailureErrorCode;
2616 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002617 break;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002618 }
2619 case JDWP::JT_LONG: {
Ian Rogers0399dde2012-06-06 17:09:28 -07002620 CHECK_EQ(width_, 8U);
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002621 bool success = SetVRegPair(m, reg, value_, kLongLoVReg, kLongHiVReg);
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002622 if (!success) {
Sebastien Hertzc901dd72014-07-16 11:56:07 +02002623 VLOG(jdwp) << "failed to set double local " << reg << " = " << value_;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002624 error_ = kFailureErrorCode;
2625 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002626 break;
Sebastien Hertz0bcb2902014-06-17 15:52:45 +02002627 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002628 default:
2629 LOG(FATAL) << "Unknown tag " << tag_;
2630 break;
2631 }
2632 return false;
2633 }
2634
2635 const JDWP::FrameId frame_id_;
2636 const int slot_;
2637 const JDWP::JdwpTag tag_;
2638 const uint64_t value_;
2639 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002640 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002641 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002642
2643 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002644 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002645 Thread* thread;
2646 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2647 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002648 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002649 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002650 // TODO check thread is suspended by the debugger ?
Ian Rogers700a4022014-05-19 16:49:03 -07002651 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002652 SetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, value, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002653 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002654 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002655}
2656
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002657JDWP::ObjectId Dbg::GetThisObjectIdForEvent(mirror::Object* this_object) {
2658 // If 'this_object' isn't already in the registry, we know that we're not looking for it, so
2659 // there's no point adding it to the registry and burning through ids.
2660 // When registering an event request with an instance filter, we've been given an existing object
2661 // id so it must already be present in the registry when the event fires.
2662 JDWP::ObjectId this_id = 0;
2663 if (this_object != nullptr && gRegistry->Contains(this_object)) {
2664 this_id = gRegistry->Add(this_object);
2665 }
2666 return this_id;
2667}
2668
Ian Rogersef7d42f2014-01-06 12:55:46 -08002669void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002670 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002671 if (!IsDebuggerActive()) {
2672 return;
2673 }
2674 DCHECK(m != nullptr);
2675 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002676 JDWP::JdwpLocation location;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002677 SetLocation(location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002678
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002679 // We need 'this' for InstanceOnly filters only.
2680 JDWP::ObjectId this_id = GetThisObjectIdForEvent(this_object);
Jeff Hao579b0242013-11-18 13:16:49 -08002681 gJdwpState->PostLocationEvent(&location, this_id, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002682}
2683
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002684void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
2685 mirror::Object* this_object, mirror::ArtField* f) {
2686 if (!IsDebuggerActive()) {
2687 return;
2688 }
2689 DCHECK(m != nullptr);
2690 DCHECK(f != nullptr);
2691 JDWP::JdwpLocation location;
2692 SetLocation(location, m, dex_pc);
2693
2694 JDWP::RefTypeId type_id = gRegistry->AddRefType(f->GetDeclaringClass());
2695 JDWP::FieldId field_id = ToFieldId(f);
2696 JDWP::ObjectId this_id = gRegistry->Add(this_object);
2697
2698 gJdwpState->PostFieldEvent(&location, type_id, field_id, this_id, nullptr, false);
2699}
2700
2701void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
2702 mirror::Object* this_object, mirror::ArtField* f,
2703 const JValue* field_value) {
2704 if (!IsDebuggerActive()) {
2705 return;
2706 }
2707 DCHECK(m != nullptr);
2708 DCHECK(f != nullptr);
2709 DCHECK(field_value != nullptr);
2710 JDWP::JdwpLocation location;
2711 SetLocation(location, m, dex_pc);
2712
2713 JDWP::RefTypeId type_id = gRegistry->AddRefType(f->GetDeclaringClass());
2714 JDWP::FieldId field_id = ToFieldId(f);
2715 JDWP::ObjectId this_id = gRegistry->Add(this_object);
2716
2717 gJdwpState->PostFieldEvent(&location, type_id, field_id, this_id, field_value, true);
2718}
2719
2720void Dbg::PostException(const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002721 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002722 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002723 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002724 return;
2725 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002726
Ian Rogers62d6c772013-02-27 08:32:07 -08002727 JDWP::JdwpLocation jdwp_throw_location;
2728 SetLocation(jdwp_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002729 JDWP::JdwpLocation catch_location;
Elliott Hughescaf76542012-06-28 16:08:22 -07002730 SetLocation(catch_location, catch_method, catch_dex_pc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002731
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002732 // We need 'this' for InstanceOnly filters only.
2733 JDWP::ObjectId this_id = GetThisObjectIdForEvent(throw_location.GetThis());
Elliott Hughes64f574f2013-02-20 14:57:12 -08002734 JDWP::ObjectId exception_id = gRegistry->Add(exception_object);
2735 JDWP::RefTypeId exception_class_id = gRegistry->AddRefType(exception_object->GetClass());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002736
Ian Rogers62d6c772013-02-27 08:32:07 -08002737 gJdwpState->PostException(&jdwp_throw_location, exception_id, exception_class_id, &catch_location,
2738 this_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002739}
2740
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002741void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002742 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002743 return;
2744 }
2745
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002746 // OLD-TODO - we currently always send both "verified" and "prepared" since
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002747 // debuggers seem to like that. There might be some advantage to honesty,
2748 // since the class may not yet be verified.
2749 int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01002750 JDWP::JdwpTypeTag tag = GetTypeTag(c);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002751 std::string temp;
2752 gJdwpState->PostClassPrepare(tag, gRegistry->Add(c), c->GetDescriptor(&temp), state);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002753}
2754
Ian Rogers62d6c772013-02-27 08:32:07 -08002755void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002756 mirror::ArtMethod* m, uint32_t dex_pc,
2757 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002758 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002759 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002760 }
2761
Elliott Hughes86964332012-02-15 19:37:42 -08002762 if (IsBreakpoint(m, dex_pc)) {
2763 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002764 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002765
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002766 // If the debugger is single-stepping one of our threads, check to
2767 // see if we're that thread and we've reached a step point.
2768 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2769 DCHECK(single_step_control != nullptr);
2770 if (single_step_control->is_active) {
2771 CHECK(!m->IsNative());
2772 if (single_step_control->step_depth == JDWP::SD_INTO) {
2773 // Step into method calls. We break when the line number
2774 // or method pointer changes. If we're in SS_MIN mode, we
2775 // always stop.
2776 if (single_step_control->method != m) {
2777 event_flags |= kSingleStep;
2778 VLOG(jdwp) << "SS new method";
2779 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2780 event_flags |= kSingleStep;
2781 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002782 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002783 event_flags |= kSingleStep;
2784 VLOG(jdwp) << "SS new line";
2785 }
2786 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2787 // Step over method calls. We break when the line number is
2788 // different and the frame depth is <= the original frame
2789 // depth. (We can't just compare on the method, because we
2790 // might get unrolled past it by an exception, and it's tricky
2791 // to identify recursion.)
2792
2793 int stack_depth = GetStackDepth(thread);
2794
2795 if (stack_depth < single_step_control->stack_depth) {
2796 // Popped up one or more frames, always trigger.
2797 event_flags |= kSingleStep;
2798 VLOG(jdwp) << "SS method pop";
2799 } else if (stack_depth == single_step_control->stack_depth) {
2800 // Same depth, see if we moved.
2801 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002802 event_flags |= kSingleStep;
2803 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002804 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002805 event_flags |= kSingleStep;
2806 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002807 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002808 }
2809 } else {
2810 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2811 // Return from the current method. We break when the frame
2812 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002813
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002814 // This differs from the "method exit" break in that it stops
2815 // with the PC at the next instruction in the returned-to
2816 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002817
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002818 int stack_depth = GetStackDepth(thread);
2819 if (stack_depth < single_step_control->stack_depth) {
2820 event_flags |= kSingleStep;
2821 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002822 }
2823 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002824 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002825
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002826 // If there's something interesting going on, see if it matches one
2827 // of the debugger filters.
2828 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01002829 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002830 }
2831}
2832
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002833size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
2834 switch (instrumentation_event) {
2835 case instrumentation::Instrumentation::kMethodEntered:
2836 return &method_enter_event_ref_count_;
2837 case instrumentation::Instrumentation::kMethodExited:
2838 return &method_exit_event_ref_count_;
2839 case instrumentation::Instrumentation::kDexPcMoved:
2840 return &dex_pc_change_event_ref_count_;
2841 case instrumentation::Instrumentation::kFieldRead:
2842 return &field_read_event_ref_count_;
2843 case instrumentation::Instrumentation::kFieldWritten:
2844 return &field_write_event_ref_count_;
2845 case instrumentation::Instrumentation::kExceptionCaught:
2846 return &exception_catch_event_ref_count_;
2847 default:
2848 return nullptr;
2849 }
2850}
2851
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002852// Process request while all mutator threads are suspended.
2853void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002854 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002855 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002856 case DeoptimizationRequest::kNothing:
2857 LOG(WARNING) << "Ignoring empty deoptimization request.";
2858 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002859 case DeoptimizationRequest::kRegisterForEvent:
2860 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002861 request.InstrumentationEvent());
2862 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
2863 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002864 break;
2865 case DeoptimizationRequest::kUnregisterForEvent:
2866 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002867 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002868 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002869 request.InstrumentationEvent());
2870 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002871 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002872 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002873 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002874 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002875 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002876 break;
2877 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002878 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002879 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002880 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002881 break;
2882 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002883 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
2884 instrumentation->Deoptimize(request.Method());
2885 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002886 break;
2887 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002888 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
2889 instrumentation->Undeoptimize(request.Method());
2890 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002891 break;
2892 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002893 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002894 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002895 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002896}
2897
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002898void Dbg::DelayFullUndeoptimization() {
2899 MutexLock mu(Thread::Current(), *deoptimization_lock_);
2900 ++delayed_full_undeoptimization_count_;
2901 DCHECK_LE(delayed_full_undeoptimization_count_, full_deoptimization_event_count_);
2902}
2903
2904void Dbg::ProcessDelayedFullUndeoptimizations() {
2905 // TODO: avoid taking the lock twice (once here and once in ManageDeoptimization).
2906 {
2907 MutexLock mu(Thread::Current(), *deoptimization_lock_);
2908 while (delayed_full_undeoptimization_count_ > 0) {
2909 DeoptimizationRequest req;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002910 req.SetKind(DeoptimizationRequest::kFullUndeoptimization);
2911 req.SetMethod(nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002912 RequestDeoptimizationLocked(req);
2913 --delayed_full_undeoptimization_count_;
2914 }
2915 }
2916 ManageDeoptimization();
2917}
2918
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002919void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002920 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002921 // Nothing to do.
2922 return;
2923 }
2924 MutexLock mu(Thread::Current(), *deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002925 RequestDeoptimizationLocked(req);
2926}
2927
2928void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002929 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002930 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002931 DCHECK_NE(req.InstrumentationEvent(), 0u);
2932 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002933 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002934 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002935 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02002936 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002937 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002938 deoptimization_requests_.push_back(req);
2939 }
2940 *counter = *counter + 1;
2941 break;
2942 }
2943 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002944 DCHECK_NE(req.InstrumentationEvent(), 0u);
2945 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002946 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002947 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002948 *counter = *counter - 1;
2949 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02002950 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002951 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02002952 deoptimization_requests_.push_back(req);
2953 }
2954 break;
2955 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002956 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002957 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002958 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002959 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2960 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002961 deoptimization_requests_.push_back(req);
2962 }
2963 ++full_deoptimization_event_count_;
2964 break;
2965 }
2966 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002967 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02002968 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002969 --full_deoptimization_event_count_;
2970 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002971 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
2972 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002973 deoptimization_requests_.push_back(req);
2974 }
2975 break;
2976 }
2977 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002978 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002979 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002980 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002981 deoptimization_requests_.push_back(req);
2982 break;
2983 }
2984 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002985 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01002986 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002987 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002988 deoptimization_requests_.push_back(req);
2989 break;
2990 }
2991 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07002992 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002993 break;
2994 }
2995 }
2996}
2997
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002998void Dbg::ManageDeoptimization() {
2999 Thread* const self = Thread::Current();
3000 {
3001 // Avoid suspend/resume if there is no pending request.
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003002 MutexLock mu(self, *deoptimization_lock_);
3003 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003004 return;
3005 }
3006 }
3007 CHECK_EQ(self->GetState(), kRunnable);
3008 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3009 // We need to suspend mutator threads first.
3010 Runtime* const runtime = Runtime::Current();
3011 runtime->GetThreadList()->SuspendAll();
3012 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003013 {
3014 MutexLock mu(self, *deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003015 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003016 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003017 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003018 ProcessDeoptimizationRequest(request);
3019 }
3020 deoptimization_requests_.clear();
3021 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003022 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3023 runtime->GetThreadList()->ResumeAll();
3024 self->TransitionFromSuspendedToRunnable();
3025}
3026
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003027static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3028 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003029 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003030 if (code_item == nullptr) {
3031 // TODO We should not be asked to watch location in a native or abstract method so the code item
3032 // should never be null. We could just check we never encounter this case.
3033 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003034 }
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003035 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003036 mirror::Class* declaring_class = m->GetDeclaringClass();
3037 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3038 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003039 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Mathieu Chartierbf99f772014-08-23 16:37:27 -07003040 verifier::MethodVerifier verifier(dex_cache->GetDexFile(), dex_cache, class_loader,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003041 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method,
Ian Rogers46960fe2014-05-23 10:43:43 -07003042 m->GetAccessFlags(), false, true, false);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003043 // Note: we don't need to verify the method.
3044 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3045}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003046
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003047static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003048 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003049 for (Breakpoint& breakpoint : gBreakpoints) {
3050 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003051 return &breakpoint;
3052 }
3053 }
3054 return nullptr;
3055}
3056
3057// Sanity checks all existing breakpoints on the same method.
3058static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m, bool need_full_deoptimization)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003059 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003060 if (kIsDebugBuild) {
3061 for (const Breakpoint& breakpoint : gBreakpoints) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003062 CHECK_EQ(need_full_deoptimization, breakpoint.NeedFullDeoptimization());
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003063 }
3064 if (need_full_deoptimization) {
3065 // We should have deoptimized everything but not "selectively" deoptimized this method.
3066 CHECK(Runtime::Current()->GetInstrumentation()->AreAllMethodsDeoptimized());
3067 CHECK(!Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3068 } else {
3069 // We should have "selectively" deoptimized this method.
3070 // Note: while we have not deoptimized everything for this method, we may have done it for
3071 // another event.
3072 CHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3073 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003074 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003075}
3076
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003077// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3078// request if we need to deoptimize.
3079void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3080 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003081 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003082 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003083
Sebastien Hertzed2be172014-08-19 15:33:43 +02003084 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003085 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3086 bool need_full_deoptimization;
3087 if (existing_breakpoint == nullptr) {
3088 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3089 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3090 need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3091 if (need_full_deoptimization) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003092 req->SetKind(DeoptimizationRequest::kFullDeoptimization);
3093 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003094 } else {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003095 req->SetKind(DeoptimizationRequest::kSelectiveDeoptimization);
3096 req->SetMethod(m);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003097 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003098 } else {
3099 // There is at least one breakpoint for this method: we don't need to deoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003100 req->SetKind(DeoptimizationRequest::kNothing);
3101 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003102
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003103 need_full_deoptimization = existing_breakpoint->NeedFullDeoptimization();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003104 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003105 }
3106
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003107 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, need_full_deoptimization));
3108 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3109 << gBreakpoints[gBreakpoints.size() - 1];
3110}
3111
3112// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3113// request if we need to undeoptimize.
3114void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003115 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003116 mirror::ArtMethod* m = FromMethodId(location->method_id);
3117 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003118 bool need_full_deoptimization = false;
3119 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003120 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003121 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003122 need_full_deoptimization = gBreakpoints[i].NeedFullDeoptimization();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003123 DCHECK_NE(need_full_deoptimization, Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
3124 gBreakpoints.erase(gBreakpoints.begin() + i);
3125 break;
3126 }
3127 }
3128 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3129 if (existing_breakpoint == nullptr) {
3130 // There is no more breakpoint on this method: we need to undeoptimize.
3131 if (need_full_deoptimization) {
3132 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003133 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3134 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003135 } else {
3136 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003137 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3138 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003139 }
3140 } else {
3141 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003142 req->SetKind(DeoptimizationRequest::kNothing);
3143 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003144 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
Elliott Hughes86964332012-02-15 19:37:42 -08003145 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003146}
3147
Jeff Hao449db332013-04-12 18:30:52 -07003148// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3149// cause suspension if the thread is the current thread.
3150class ScopedThreadSuspension {
3151 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003152 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003153 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003154 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003155 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003156 error_(JDWP::ERR_NONE),
3157 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003158 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003159 ScopedObjectAccessUnchecked soa(self);
3160 {
3161 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
3162 error_ = DecodeThread(soa, thread_id, thread_);
3163 }
3164 if (error_ == JDWP::ERR_NONE) {
3165 if (thread_ == soa.Self()) {
3166 self_suspend_ = true;
3167 } else {
3168 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
3169 jobject thread_peer = gRegistry->GetJObject(thread_id);
3170 bool timed_out;
Ian Rogersf3d874c2014-07-17 18:52:42 -07003171 Thread* suspended_thread;
3172 {
3173 // Take suspend thread lock to avoid races with threads trying to suspend this one.
3174 MutexLock mu(soa.Self(), *Locks::thread_list_suspend_thread_lock_);
Brian Carlstromba32de42014-08-27 23:43:46 -07003175 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3176 suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true, &timed_out);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003177 }
Jeff Hao449db332013-04-12 18:30:52 -07003178 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003179 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003180 // Thread terminated from under us while suspending.
3181 error_ = JDWP::ERR_INVALID_THREAD;
3182 } else {
3183 CHECK_EQ(suspended_thread, thread_);
3184 other_suspend_ = true;
3185 }
3186 }
3187 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003188 }
Elliott Hughes86964332012-02-15 19:37:42 -08003189
Jeff Hao449db332013-04-12 18:30:52 -07003190 Thread* GetThread() const {
3191 return thread_;
3192 }
3193
3194 JDWP::JdwpError GetError() const {
3195 return error_;
3196 }
3197
3198 ~ScopedThreadSuspension() {
3199 if (other_suspend_) {
3200 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3201 }
3202 }
3203
3204 private:
3205 Thread* thread_;
3206 JDWP::JdwpError error_;
3207 bool self_suspend_;
3208 bool other_suspend_;
3209};
3210
3211JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3212 JDWP::JdwpStepDepth step_depth) {
3213 Thread* self = Thread::Current();
3214 ScopedThreadSuspension sts(self, thread_id);
3215 if (sts.GetError() != JDWP::ERR_NONE) {
3216 return sts.GetError();
3217 }
3218
Elliott Hughes2435a572012-02-17 16:07:41 -08003219 //
3220 // Work out what Method* we're in, the current line number, and how deep the stack currently
3221 // is for step-out.
3222 //
3223
Ian Rogers0399dde2012-06-06 17:09:28 -07003224 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003225 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
3226 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003227 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003228 : StackVisitor(thread, NULL), single_step_control_(single_step_control),
3229 line_number_(line_number) {
3230 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
3231 single_step_control_->method = NULL;
3232 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08003233 }
Ian Rogersca190662012-06-26 15:45:57 -07003234
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003235 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3236 // annotalysis.
3237 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003238 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003239 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003240 ++single_step_control_->stack_depth;
3241 if (single_step_control_->method == NULL) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003242 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003243 single_step_control_->method = m;
3244 *line_number_ = -1;
Elliott Hughes2435a572012-02-17 16:07:41 -08003245 if (dex_cache != NULL) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003246 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003247 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003248 }
Elliott Hughes86964332012-02-15 19:37:42 -08003249 }
3250 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003251 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003252 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003253
3254 SingleStepControl* const single_step_control_;
3255 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08003256 };
Jeff Hao449db332013-04-12 18:30:52 -07003257
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003258 Thread* const thread = sts.GetThread();
3259 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
3260 DCHECK(single_step_control != nullptr);
3261 int32_t line_number = -1;
3262 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07003263 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003264
Elliott Hughes2435a572012-02-17 16:07:41 -08003265 //
3266 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
3267 //
3268
3269 struct DebugCallbackContext {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003270 explicit DebugCallbackContext(SingleStepControl* single_step_control, int32_t line_number,
3271 const DexFile::CodeItem* code_item)
3272 : single_step_control_(single_step_control), line_number_(line_number), code_item_(code_item),
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003273 last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003274 }
3275
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003276 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003277 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003278 if (static_cast<int32_t>(line_number) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003279 if (!context->last_pc_valid) {
3280 // Everything from this address until the next line change is ours.
3281 context->last_pc = address;
3282 context->last_pc_valid = true;
3283 }
3284 // Otherwise, if we're already in a valid range for this line,
3285 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003286 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003287 // Add everything from the last entry up until here to the set
3288 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003289 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003290 }
3291 context->last_pc_valid = false;
3292 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003293 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003294 }
3295
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003296 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003297 // If the line number was the last in the position table...
3298 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003299 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003300 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003301 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003302 }
3303 }
3304 }
3305
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003306 SingleStepControl* const single_step_control_;
3307 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003308 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003309 bool last_pc_valid;
3310 uint32_t last_pc;
3311 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003312 single_step_control->dex_pcs.clear();
Ian Rogersef7d42f2014-01-06 12:55:46 -08003313 mirror::ArtMethod* m = single_step_control->method;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003314 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003315 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003316 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003317 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
3318 DebugCallbackContext::Callback, NULL, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003319 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003320
3321 //
3322 // Everything else...
3323 //
3324
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003325 single_step_control->step_size = step_size;
3326 single_step_control->step_depth = step_depth;
3327 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08003328
Elliott Hughes2435a572012-02-17 16:07:41 -08003329 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003330 VLOG(jdwp) << "Single-step thread: " << *thread;
3331 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
3332 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
3333 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
3334 VLOG(jdwp) << "Single-step current line: " << line_number;
3335 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08003336 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003337 for (uint32_t dex_pc : single_step_control->dex_pcs) {
3338 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003339 }
3340 }
3341
3342 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003343}
3344
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003345void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3346 ScopedObjectAccessUnchecked soa(Thread::Current());
3347 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
3348 Thread* thread;
3349 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003350 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003351 SingleStepControl* single_step_control = thread->GetSingleStepControl();
3352 DCHECK(single_step_control != nullptr);
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003353 single_step_control->Clear();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003354 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003355}
3356
Elliott Hughes45651fd2012-02-21 15:48:20 -08003357static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3358 switch (tag) {
3359 default:
3360 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
3361
3362 // Primitives.
3363 case JDWP::JT_BYTE: return 'B';
3364 case JDWP::JT_CHAR: return 'C';
3365 case JDWP::JT_FLOAT: return 'F';
3366 case JDWP::JT_DOUBLE: return 'D';
3367 case JDWP::JT_INT: return 'I';
3368 case JDWP::JT_LONG: return 'J';
3369 case JDWP::JT_SHORT: return 'S';
3370 case JDWP::JT_VOID: return 'V';
3371 case JDWP::JT_BOOLEAN: return 'Z';
3372
3373 // Reference types.
3374 case JDWP::JT_ARRAY:
3375 case JDWP::JT_OBJECT:
3376 case JDWP::JT_STRING:
3377 case JDWP::JT_THREAD:
3378 case JDWP::JT_THREAD_GROUP:
3379 case JDWP::JT_CLASS_LOADER:
3380 case JDWP::JT_CLASS_OBJECT:
3381 return 'L';
3382 }
3383}
3384
Elliott Hughes88d63092013-01-09 09:55:54 -08003385JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3386 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003387 uint32_t arg_count, uint64_t* arg_values,
3388 JDWP::JdwpTag* arg_types, uint32_t options,
3389 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3390 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003391 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3392
3393 Thread* targetThread = NULL;
3394 DebugInvokeReq* req = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003395 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003396 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003397 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003398 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08003399 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread);
3400 if (error != JDWP::ERR_NONE) {
3401 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3402 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003403 }
3404 req = targetThread->GetInvokeReq();
3405 if (!req->ready) {
3406 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3407 return JDWP::ERR_INVALID_THREAD;
3408 }
3409
3410 /*
3411 * We currently have a bug where we don't successfully resume the
3412 * target thread if the suspend count is too deep. We're expected to
3413 * require one "resume" for each "suspend", but when asked to execute
3414 * a method we have to resume fully and then re-suspend it back to the
3415 * same level. (The easiest way to cause this is to type "suspend"
3416 * multiple times in jdb.)
3417 *
3418 * It's unclear what this means when the event specifies "resume all"
3419 * and some threads are suspended more deeply than others. This is
3420 * a rare problem, so for now we just prevent it from hanging forever
3421 * by rejecting the method invocation request. Without this, we will
3422 * be stuck waiting on a suspended thread.
3423 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003424 int suspend_count;
3425 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003426 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003427 suspend_count = targetThread->GetSuspendCount();
3428 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003429 if (suspend_count > 1) {
3430 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003431 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003432 }
3433
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003434 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003435 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08003436 if (receiver == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003437 return JDWP::ERR_INVALID_OBJECT;
3438 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003439
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003440 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08003441 if (thread == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003442 return JDWP::ERR_INVALID_OBJECT;
3443 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003444 // TODO: check that 'thread' is actually a java.lang.Thread!
3445
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003446 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003447 if (c == NULL) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003448 return status;
3449 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003450
Brian Carlstromea46f952013-07-30 01:26:50 -07003451 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003452 if (m->IsStatic() != (receiver == NULL)) {
3453 return JDWP::ERR_INVALID_METHODID;
3454 }
3455 if (m->IsStatic()) {
3456 if (m->GetDeclaringClass() != c) {
3457 return JDWP::ERR_INVALID_METHODID;
3458 }
3459 } else {
3460 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3461 return JDWP::ERR_INVALID_METHODID;
3462 }
3463 }
3464
3465 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003466 uint32_t shorty_len = 0;
3467 const char* shorty = m->GetShorty(&shorty_len);
3468 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003469 return JDWP::ERR_ILLEGAL_ARGUMENT;
3470 }
Elliott Hughes09201632013-04-15 15:50:07 -07003471
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003472 {
3473 StackHandleScope<3> hs(soa.Self());
3474 MethodHelper mh(hs.NewHandle(m));
3475 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3476 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3477 const DexFile::TypeList* types = m->GetParameterTypeList();
3478 for (size_t i = 0; i < arg_count; ++i) {
3479 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003480 return JDWP::ERR_ILLEGAL_ARGUMENT;
3481 }
3482
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003483 if (shorty[i + 1] == 'L') {
3484 // Did we really get an argument of an appropriate reference type?
3485 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
3486 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i]);
3487 if (argument == ObjectRegistry::kInvalidObject) {
3488 return JDWP::ERR_INVALID_OBJECT;
3489 }
3490 if (argument != NULL && !argument->InstanceOf(parameter_type)) {
3491 return JDWP::ERR_ILLEGAL_ARGUMENT;
3492 }
3493
3494 // Turn the on-the-wire ObjectId into a jobject.
3495 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3496 v.l = gRegistry->GetJObject(arg_values[i]);
3497 }
Elliott Hughes09201632013-04-15 15:50:07 -07003498 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003499 // Update in case it moved.
3500 m = mh.GetMethod();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003501 }
3502
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003503 req->receiver = receiver;
3504 req->thread = thread;
3505 req->klass = c;
3506 req->method = m;
3507 req->arg_count = arg_count;
3508 req->arg_values = arg_values;
3509 req->options = options;
3510 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003511 }
3512
3513 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3514 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3515 // call, and it's unwise to hold it during WaitForSuspend.
3516
3517 {
3518 /*
3519 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003520 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003521 * run out of memory. It's also a good idea to change it before locking
3522 * the invokeReq mutex, although that should never be held for long.
3523 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003524 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003525
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003526 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003527 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003528 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003529
3530 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003531 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003532 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003533 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003534 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003535 thread_list->Resume(targetThread, true);
3536 }
3537
3538 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003539 while (req->invoke_needed) {
3540 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003541 }
3542 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003543 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003544
3545 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003546 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003547 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003548 }
3549
3550 /*
3551 * Suspend the threads. We waited for the target thread to suspend
3552 * itself, so all we need to do is suspend the others.
3553 *
3554 * The suspendAllThreads() call will double-suspend the event thread,
3555 * so we want to resume the target thread once to keep the books straight.
3556 */
3557 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003558 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003559 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003560 thread_list->SuspendAllForDebugger();
3561 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003562 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003563 thread_list->Resume(targetThread, true);
3564 }
3565
3566 // Copy the result.
3567 *pResultTag = req->result_tag;
3568 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003569 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003570 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003571 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003572 }
3573 *pExceptionId = req->exception;
3574 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003575}
3576
3577void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003578 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003579
Elliott Hughes81ff3182012-03-23 20:35:56 -07003580 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003581 // to preserve that across the method invocation.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003582 StackHandleScope<4> hs(soa.Self());
3583 auto old_throw_this_object = hs.NewHandle<mirror::Object>(nullptr);
3584 auto old_throw_method = hs.NewHandle<mirror::ArtMethod>(nullptr);
3585 auto old_exception = hs.NewHandle<mirror::Throwable>(nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08003586 uint32_t old_throw_dex_pc;
Sebastien Hertz9f102032014-05-23 08:59:42 +02003587 bool old_exception_report_flag;
Ian Rogers62d6c772013-02-27 08:32:07 -08003588 {
3589 ThrowLocation old_throw_location;
3590 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003591 old_throw_this_object.Assign(old_throw_location.GetThis());
3592 old_throw_method.Assign(old_throw_location.GetMethod());
3593 old_exception.Assign(old_exception_obj);
Ian Rogers62d6c772013-02-27 08:32:07 -08003594 old_throw_dex_pc = old_throw_location.GetDexPc();
Sebastien Hertz9f102032014-05-23 08:59:42 +02003595 old_exception_report_flag = soa.Self()->IsExceptionReportedToInstrumentation();
Ian Rogers62d6c772013-02-27 08:32:07 -08003596 soa.Self()->ClearException();
3597 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003598
3599 // Translate the method through the vtable, unless the debugger wants to suppress it.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003600 Handle<mirror::ArtMethod> m(hs.NewHandle(pReq->method));
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003601 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != NULL) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003602 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.Get());
3603 if (actual_method != m.Get()) {
3604 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get()) << " to " << PrettyMethod(actual_method);
3605 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003606 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003607 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003608 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003609 << " receiver=" << pReq->receiver
3610 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003611 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003612
3613 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3614
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003615 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.Get()),
Ian Rogers53b8b092014-03-13 23:45:53 -07003616 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003617
Ian Rogers62d6c772013-02-27 08:32:07 -08003618 mirror::Throwable* exception = soa.Self()->GetException(NULL);
3619 soa.Self()->ClearException();
3620 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003621 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003622 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003623 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3624 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003625 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003626 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3627 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003628 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003629 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003630 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003631 pReq->result_tag = new_tag;
3632 }
3633
3634 /*
3635 * Register the object. We don't actually need an ObjectId yet,
3636 * but we do need to be sure that the GC won't move or discard the
3637 * object when we switch out of RUNNING. The ObjectId conversion
3638 * will add the object to the "do not touch" list.
3639 *
3640 * We can't use the "tracked allocation" mechanism here because
3641 * the object is going to be handed off to a different thread.
3642 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003643 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003644 }
3645
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003646 if (old_exception.Get() != NULL) {
3647 ThrowLocation gc_safe_throw_location(old_throw_this_object.Get(), old_throw_method.Get(),
Ian Rogers62d6c772013-02-27 08:32:07 -08003648 old_throw_dex_pc);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003649 soa.Self()->SetException(gc_safe_throw_location, old_exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +02003650 soa.Self()->SetExceptionReportedToInstrumentation(old_exception_report_flag);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003651 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003652}
3653
Elliott Hughesd07986f2011-12-06 18:27:45 -08003654/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003655 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003656 * need to process each, accumulate the replies, and ship the whole thing
3657 * back.
3658 *
3659 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3660 * and includes the chunk type/length, followed by the data.
3661 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003662 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003663 * chunk. If this becomes inconvenient we will need to adapt.
3664 */
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003665bool Dbg::DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003666 Thread* self = Thread::Current();
3667 JNIEnv* env = self->GetJniEnv();
3668
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003669 uint32_t type = request.ReadUnsigned32("type");
3670 uint32_t length = request.ReadUnsigned32("length");
3671
3672 // Create a byte[] corresponding to 'request'.
3673 size_t request_length = request.size();
3674 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003675 if (dataArray.get() == NULL) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003676 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003677 env->ExceptionClear();
3678 return false;
3679 }
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003680 env->SetByteArrayRegion(dataArray.get(), 0, request_length, reinterpret_cast<const jbyte*>(request.data()));
3681 request.Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003682
3683 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003684 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003685 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003686 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003687 return false;
3688 }
3689
3690 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003691 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3692 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003693 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003694 if (env->ExceptionCheck()) {
3695 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3696 env->ExceptionDescribe();
3697 env->ExceptionClear();
3698 return false;
3699 }
3700
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003701 if (chunk.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003702 return false;
3703 }
3704
3705 /*
3706 * Pull the pieces out of the chunk. We copy the results into a
3707 * newly-allocated buffer that the caller can free. We don't want to
3708 * continue using the Chunk object because nothing has a reference to it.
3709 *
3710 * We could avoid this by returning type/data/offset/length and having
3711 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003712 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003713 * if we have responses for multiple chunks.
3714 *
3715 * So we're pretty much stuck with copying data around multiple times.
3716 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003717 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 -08003718 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003719 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003720 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003721
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003722 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 -07003723 if (length == 0 || replyData.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003724 return false;
3725 }
3726
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003727 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003728 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
3729 if (reply == NULL) {
3730 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3731 return false;
3732 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003733 JDWP::Set4BE(reply + 0, type);
3734 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003735 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003736
3737 *pReplyBuf = reply;
3738 *pReplyLen = length + kChunkHdrLen;
3739
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003740 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003741 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003742}
3743
Elliott Hughesa2155262011-11-16 16:26:58 -08003744void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003745 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003746
3747 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003748 if (self->GetState() != kRunnable) {
3749 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3750 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003751 }
3752
3753 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003754 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003755 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3756 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3757 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003758 if (env->ExceptionCheck()) {
3759 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3760 env->ExceptionDescribe();
3761 env->ExceptionClear();
3762 }
3763}
3764
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003765void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003766 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003767}
3768
3769void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003770 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003771 gDdmThreadNotification = false;
3772}
3773
3774/*
Elliott Hughes82188472011-11-07 18:11:48 -08003775 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003776 *
3777 * Because we broadcast the full set of threads when the notifications are
3778 * first enabled, it's possible for "thread" to be actively executing.
3779 */
Elliott Hughes82188472011-11-07 18:11:48 -08003780void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003781 if (!gDdmThreadNotification) {
3782 return;
3783 }
3784
Elliott Hughes82188472011-11-07 18:11:48 -08003785 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003786 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003787 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003788 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003789 } else {
3790 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003791 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003792 StackHandleScope<1> hs(soa.Self());
3793 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
3794 size_t char_count = (name.Get() != NULL) ? name->GetLength() : 0;
3795 const jchar* chars = (name.Get() != NULL) ? name->GetCharArray()->GetData() : NULL;
Elliott Hughes82188472011-11-07 18:11:48 -08003796
Elliott Hughes21f32d72011-11-09 17:44:13 -08003797 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003798 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003799 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003800 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3801 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003802 }
3803}
3804
Elliott Hughes47fce012011-10-25 18:37:19 -07003805void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003806 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003807 gDdmThreadNotification = enable;
3808 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003809 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3810 // see a suspension in progress and block until that ends. They then post their own start
3811 // notification.
3812 SuspendVM();
3813 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003814 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003815 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003816 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003817 threads = Runtime::Current()->GetThreadList()->GetList();
3818 }
3819 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003820 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003821 for (Thread* thread : threads) {
3822 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003823 }
3824 }
3825 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003826 }
3827}
3828
Elliott Hughesa2155262011-11-16 16:26:58 -08003829void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003830 if (IsDebuggerActive()) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07003831 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08003832 JDWP::ObjectId id = gRegistry->Add(t->GetPeer());
Elliott Hughes82188472011-11-07 18:11:48 -08003833 gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003834 }
Elliott Hughes82188472011-11-07 18:11:48 -08003835 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003836}
3837
3838void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003839 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003840}
3841
3842void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003843 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003844}
3845
Elliott Hughes82188472011-11-07 18:11:48 -08003846void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003847 CHECK(buf != NULL);
3848 iovec vec[1];
3849 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3850 vec[0].iov_len = byte_count;
3851 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003852}
3853
Elliott Hughes21f32d72011-11-09 17:44:13 -08003854void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3855 DdmSendChunk(type, bytes.size(), &bytes[0]);
3856}
3857
Brian Carlstromf5293522013-07-19 00:24:00 -07003858void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003859 if (gJdwpState == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003860 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003861 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003862 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003863 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003864}
3865
Elliott Hughes767a1472011-10-26 18:49:02 -07003866int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3867 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003868 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003869 return true;
3870 }
3871
3872 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
3873 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
3874 return false;
3875 }
3876
3877 gDdmHpifWhen = when;
3878 return true;
3879}
3880
3881bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
3882 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
3883 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
3884 return false;
3885 }
3886
3887 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
3888 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
3889 return false;
3890 }
3891
3892 if (native) {
3893 gDdmNhsgWhen = when;
3894 gDdmNhsgWhat = what;
3895 } else {
3896 gDdmHpsgWhen = when;
3897 gDdmHpsgWhat = what;
3898 }
3899 return true;
3900}
3901
Elliott Hughes7162ad92011-10-27 14:08:42 -07003902void Dbg::DdmSendHeapInfo(HpifWhen reason) {
3903 // If there's a one-shot 'when', reset it.
3904 if (reason == gDdmHpifWhen) {
3905 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
3906 gDdmHpifWhen = HPIF_WHEN_NEVER;
3907 }
3908 }
3909
3910 /*
3911 * Chunk HPIF (client --> server)
3912 *
3913 * Heap Info. General information about the heap,
3914 * suitable for a summary display.
3915 *
3916 * [u4]: number of heaps
3917 *
3918 * For each heap:
3919 * [u4]: heap ID
3920 * [u8]: timestamp in ms since Unix epoch
3921 * [u1]: capture reason (same as 'when' value from server)
3922 * [u4]: max heap size in bytes (-Xmx)
3923 * [u4]: current heap size in bytes
3924 * [u4]: current number of bytes allocated
3925 * [u4]: current number of objects allocated
3926 */
3927 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07003928 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08003929 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08003930 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003931 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08003932 JDWP::Append8BE(bytes, MilliTime());
3933 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003934 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
3935 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003936 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
3937 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08003938 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
3939 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07003940}
3941
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003942enum HpsgSolidity {
3943 SOLIDITY_FREE = 0,
3944 SOLIDITY_HARD = 1,
3945 SOLIDITY_SOFT = 2,
3946 SOLIDITY_WEAK = 3,
3947 SOLIDITY_PHANTOM = 4,
3948 SOLIDITY_FINALIZABLE = 5,
3949 SOLIDITY_SWEEP = 6,
3950};
3951
3952enum HpsgKind {
3953 KIND_OBJECT = 0,
3954 KIND_CLASS_OBJECT = 1,
3955 KIND_ARRAY_1 = 2,
3956 KIND_ARRAY_2 = 3,
3957 KIND_ARRAY_4 = 4,
3958 KIND_ARRAY_8 = 5,
3959 KIND_UNKNOWN = 6,
3960 KIND_NATIVE = 7,
3961};
3962
3963#define HPSG_PARTIAL (1<<7)
3964#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
3965
Ian Rogers30fab402012-01-23 15:43:46 -08003966class HeapChunkContext {
3967 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003968 // Maximum chunk size. Obtain this from the formula:
3969 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
3970 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08003971 : buf_(16384 - 16),
3972 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07003973 merge_(merge),
3974 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003975 Reset();
3976 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08003977 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003978 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08003979 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003980 }
3981 }
3982
3983 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08003984 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003985 Flush();
3986 }
3987 }
3988
Mathieu Chartier36dab362014-07-30 14:59:56 -07003989 void SetChunkOverhead(size_t chunk_overhead) {
3990 chunk_overhead_ = chunk_overhead;
3991 }
3992
3993 void ResetStartOfNextChunk() {
3994 startOfNextMemoryChunk_ = nullptr;
3995 }
3996
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003997 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08003998 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003999 return;
4000 }
4001
4002 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004003 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4004 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004005
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004006 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4007 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004008 // [u4]: length of piece, in allocation units
4009 // 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 -08004010 pieceLenField_ = p_;
4011 JDWP::Write4BE(&p_, 0x55555555);
4012 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004013 }
4014
Ian Rogersb726dcb2012-09-05 08:57:23 -07004015 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd636b062013-01-18 17:51:18 -08004016 if (pieceLenField_ == NULL) {
4017 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4018 CHECK(needHeader_);
4019 return;
4020 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004021 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004022 CHECK_LE(&buf_[0], pieceLenField_);
4023 CHECK_LE(pieceLenField_, p_);
4024 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004025
Ian Rogers30fab402012-01-23 15:43:46 -08004026 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004027 Reset();
4028 }
4029
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004030 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004031 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4032 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004033 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004034 }
4035
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004036 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004037 enum { ALLOCATION_UNIT_SIZE = 8 };
4038
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004039 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004040 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004041 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004042 totalAllocationUnits_ = 0;
4043 needHeader_ = true;
4044 pieceLenField_ = NULL;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004045 }
4046
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004047 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004048 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4049 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004050 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4051 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004052 if (used_bytes == 0) {
4053 if (start == NULL) {
4054 // Reset for start of new heap.
4055 startOfNextMemoryChunk_ = NULL;
4056 Flush();
4057 }
4058 // Only process in use memory so that free region information
4059 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08004060 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08004061 }
4062
Ian Rogers15bf2d32012-08-28 17:33:04 -07004063 /* If we're looking at the native heap, we'll just return
4064 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
4065 */
4066 bool native = type_ == CHUNK_TYPE("NHSG");
4067
Mathieu Chartier36dab362014-07-30 14:59:56 -07004068 // TODO: I'm not sure using start of next chunk works well with multiple spaces. We shouldn't
4069 // count gaps inbetween spaces as free memory.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004070 if (startOfNextMemoryChunk_ != NULL) {
4071 // Transmit any pending free memory. Native free memory of
4072 // over kMaxFreeLen could be because of the use of mmaps, so
4073 // don't report. If not free memory then start a new segment.
4074 bool flush = true;
4075 if (start > startOfNextMemoryChunk_) {
4076 const size_t kMaxFreeLen = 2 * kPageSize;
4077 void* freeStart = startOfNextMemoryChunk_;
4078 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07004079 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07004080 if (!native || freeLen < kMaxFreeLen) {
4081 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
4082 flush = false;
4083 }
4084 }
4085 if (flush) {
4086 startOfNextMemoryChunk_ = NULL;
4087 Flush();
4088 }
4089 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08004090 mirror::Object* obj = reinterpret_cast<mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08004091
4092 // Determine the type of this chunk.
4093 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4094 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004095 uint8_t state = ExamineObject(obj, native);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004096 AppendChunk(state, start, used_bytes + chunk_overhead_);
4097 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004098 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004099
Ian Rogers15bf2d32012-08-28 17:33:04 -07004100 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004101 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004102 // Make sure there's enough room left in the buffer.
4103 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4104 // 17 bytes for any header.
4105 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
4106 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4107 if (bytesLeft < needed) {
4108 Flush();
4109 }
4110
4111 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
4112 if (bytesLeft < needed) {
4113 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4114 << needed << " bytes)";
4115 return;
4116 }
4117 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004118 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004119 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4120 totalAllocationUnits_ += length;
4121 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004122 *p_++ = state | HPSG_PARTIAL;
4123 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004124 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004125 }
Ian Rogers30fab402012-01-23 15:43:46 -08004126 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004127 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004128 }
4129
Ian Rogersef7d42f2014-01-06 12:55:46 -08004130 uint8_t ExamineObject(mirror::Object* o, bool is_native_heap)
4131 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004132 if (o == NULL) {
4133 return HPSG_STATE(SOLIDITY_FREE, 0);
4134 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004135
Elliott Hughesa2155262011-11-16 16:26:58 -08004136 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004137
Elliott Hughesa2155262011-11-16 16:26:58 -08004138 // If we're looking at the native heap, we'll just return
4139 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004140 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004141 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4142 }
4143
Ian Rogers5bfa60f2012-09-02 21:17:56 -07004144 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004145 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004146 }
4147
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004148 mirror::Class* c = o->GetClass();
Elliott Hughesa2155262011-11-16 16:26:58 -08004149 if (c == NULL) {
4150 // The object was probably just created but hasn't been initialized yet.
4151 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4152 }
4153
Mathieu Chartier590fee92013-09-13 13:46:47 -07004154 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004155 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004156 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4157 }
4158
4159 if (c->IsClassClass()) {
4160 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4161 }
4162
4163 if (c->IsArrayClass()) {
4164 if (o->IsObjectArray()) {
4165 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4166 }
4167 switch (c->GetComponentSize()) {
4168 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4169 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4170 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4171 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4172 }
4173 }
4174
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004175 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4176 }
4177
Ian Rogers30fab402012-01-23 15:43:46 -08004178 std::vector<uint8_t> buf_;
4179 uint8_t* p_;
4180 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004181 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004182 size_t totalAllocationUnits_;
4183 uint32_t type_;
4184 bool merge_;
4185 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004186 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004187
Elliott Hughesa2155262011-11-16 16:26:58 -08004188 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4189};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004190
Mathieu Chartier36dab362014-07-30 14:59:56 -07004191static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
4192 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
4193 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
4194 HeapChunkContext::HeapChunkCallback(
4195 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4196}
4197
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004198void Dbg::DdmSendHeapSegments(bool native) {
4199 Dbg::HpsgWhen when;
4200 Dbg::HpsgWhat what;
4201 if (!native) {
4202 when = gDdmHpsgWhen;
4203 what = gDdmHpsgWhat;
4204 } else {
4205 when = gDdmNhsgWhen;
4206 what = gDdmNhsgWhat;
4207 }
4208 if (when == HPSG_WHEN_NEVER) {
4209 return;
4210 }
4211
4212 // Figure out what kind of chunks we'll be sending.
4213 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
4214
4215 // First, send a heap start chunk.
4216 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004217 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004218 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
4219
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004220 Thread* self = Thread::Current();
4221
4222 // To allow the Walk/InspectAll() below to exclusively-lock the
4223 // mutator lock, temporarily release the shared access to the
4224 // mutator lock here by transitioning to the suspended state.
4225 Locks::mutator_lock_->AssertSharedHeld(self);
4226 self->TransitionFromRunnableToSuspended(kSuspended);
4227
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004228 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08004229 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
4230 if (native) {
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004231#ifdef USE_DLMALLOC
Ian Rogers1d54e732013-05-02 21:10:01 -07004232 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004233#else
4234 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4235#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004236 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004237 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004238 for (const auto& space : heap->GetContinuousSpaces()) {
4239 if (space->IsDlMallocSpace()) {
4240 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4241 // allocation then the first sizeof(size_t) may belong to it.
4242 context.SetChunkOverhead(sizeof(size_t));
4243 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
4244 } else if (space->IsRosAllocSpace()) {
4245 context.SetChunkOverhead(0);
4246 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
4247 } else if (space->IsBumpPointerSpace()) {
4248 context.SetChunkOverhead(0);
4249 ReaderMutexLock mu(self, *Locks::mutator_lock_);
4250 WriterMutexLock mu2(self, *Locks::heap_bitmap_lock_);
4251 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
4252 } else {
4253 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004254 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004255 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004256 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004257 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004258 context.SetChunkOverhead(0);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004259 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004260 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004261
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004262 // Shared-lock the mutator lock back.
4263 self->TransitionFromSuspendedToRunnable();
4264 Locks::mutator_lock_->AssertSharedHeld(self);
4265
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004266 // Finally, send a heap end chunk.
4267 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004268}
4269
Elliott Hughesb1a58792013-07-11 18:10:58 -07004270static size_t GetAllocTrackerMax() {
4271#ifdef HAVE_ANDROID_OS
4272 // Check whether there's a system property overriding the number of records.
4273 const char* propertyName = "dalvik.vm.allocTrackerMax";
4274 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4275 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4276 char* end;
4277 size_t value = strtoul(allocRecordMaxString, &end, 10);
4278 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004279 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4280 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004281 return kDefaultNumAllocRecords;
4282 }
4283 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004284 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4285 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004286 return kDefaultNumAllocRecords;
4287 }
4288 return value;
4289 }
4290#endif
4291 return kDefaultNumAllocRecords;
4292}
4293
Elliott Hughes545a0642011-11-08 19:10:03 -08004294void Dbg::SetAllocTrackingEnabled(bool enabled) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004295 if (enabled) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004296 {
4297 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
4298 if (recent_allocation_records_ == NULL) {
4299 alloc_record_max_ = GetAllocTrackerMax();
4300 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4301 << kMaxAllocRecordStackDepth << " frames, taking "
4302 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4303 alloc_record_head_ = alloc_record_count_ = 0;
4304 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4305 CHECK(recent_allocation_records_ != NULL);
4306 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004307 }
Ian Rogersfa824272013-11-05 16:12:57 -08004308 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004309 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08004310 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004311 {
4312 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
Mathieu Chartier4345c462014-06-27 10:20:14 -07004313 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004314 delete[] recent_allocation_records_;
4315 recent_allocation_records_ = NULL;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004316 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004317 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004318 }
4319}
4320
Ian Rogers0399dde2012-06-06 17:09:28 -07004321struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08004322 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004323 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08004324 : StackVisitor(thread, NULL), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004325
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004326 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4327 // annotalysis.
4328 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004329 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004330 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004331 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004332 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004333 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004334 record->StackElement(depth)->SetMethod(m);
4335 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004336 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004337 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004338 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004339 }
4340
4341 ~AllocRecordStackVisitor() {
4342 // Clear out any unused stack trace elements.
4343 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004344 record->StackElement(depth)->SetMethod(nullptr);
4345 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004346 }
4347 }
4348
4349 AllocRecord* record;
4350 size_t depth;
4351};
4352
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004353void Dbg::RecordAllocation(mirror::Class* type, size_t byte_count) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004354 Thread* self = Thread::Current();
4355 CHECK(self != NULL);
4356
Ian Rogers719d1a32014-03-06 12:13:39 -08004357 MutexLock mu(self, *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08004358 if (recent_allocation_records_ == NULL) {
4359 return;
4360 }
4361
4362 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004363 if (++alloc_record_head_ == alloc_record_max_) {
4364 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004365 }
4366
4367 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004368 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004369 record->SetType(type);
4370 record->SetByteCount(byte_count);
4371 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004372
4373 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004374 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004375 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004376
Ian Rogers719d1a32014-03-06 12:13:39 -08004377 if (alloc_record_count_ < alloc_record_max_) {
4378 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004379 }
4380}
4381
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004382// Returns the index of the head element.
4383//
4384// We point at the most-recently-written record, so if gAllocRecordCount is 1
4385// we want to use the current element. Take "head+1" and subtract count
4386// from it.
4387//
4388// We need to handle underflow in our circular buffer, so we add
Elliott Hughesb1a58792013-07-11 18:10:58 -07004389// gAllocRecordMax and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004390size_t Dbg::HeadIndex() {
4391 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4392 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004393}
4394
4395void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004396 ScopedObjectAccess soa(Thread::Current());
Ian Rogers719d1a32014-03-06 12:13:39 -08004397 MutexLock mu(soa.Self(), *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08004398 if (recent_allocation_records_ == NULL) {
4399 LOG(INFO) << "Not recording tracked allocations";
4400 return;
4401 }
4402
4403 // "i" is the head of the list. We want to start at the end of the
4404 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004405 size_t i = HeadIndex();
Ian Rogers719d1a32014-03-06 12:13:39 -08004406 size_t count = alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004407
Ian Rogers719d1a32014-03-06 12:13:39 -08004408 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004409 while (count--) {
4410 AllocRecord* record = &recent_allocation_records_[i];
4411
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004412 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4413 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004414
4415 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004416 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4417 mirror::ArtMethod* m = stack_element->Method();
Elliott Hughes545a0642011-11-08 19:10:03 -08004418 if (m == NULL) {
4419 break;
4420 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004421 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004422 }
4423
4424 // pause periodically to help logcat catch up
4425 if ((count % 5) == 0) {
4426 usleep(40000);
4427 }
4428
Ian Rogers719d1a32014-03-06 12:13:39 -08004429 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004430 }
4431}
4432
4433class StringTable {
4434 public:
4435 StringTable() {
4436 }
4437
Mathieu Chartier4345c462014-06-27 10:20:14 -07004438 void Add(const std::string& str) {
4439 table_.insert(str);
4440 }
4441
4442 void Add(const char* str) {
4443 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004444 }
4445
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004446 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004447 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004448 if (it == table_.end()) {
4449 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4450 }
4451 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004452 }
4453
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004454 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004455 return table_.size();
4456 }
4457
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004458 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004459 for (const std::string& str : table_) {
4460 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004461 size_t s_len = CountModifiedUtf8Chars(s);
Ian Rogers700a4022014-05-19 16:49:03 -07004462 std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004463 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4464 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004465 }
4466 }
4467
4468 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004469 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004470 DISALLOW_COPY_AND_ASSIGN(StringTable);
4471};
4472
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004473static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004474 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004475 DCHECK(method != nullptr);
4476 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004477 return (source_file != nullptr) ? source_file : "";
4478}
4479
Elliott Hughes545a0642011-11-08 19:10:03 -08004480/*
4481 * The data we send to DDMS contains everything we have recorded.
4482 *
4483 * Message header (all values big-endian):
4484 * (1b) message header len (to allow future expansion); includes itself
4485 * (1b) entry header len
4486 * (1b) stack frame len
4487 * (2b) number of entries
4488 * (4b) offset to string table from start of message
4489 * (2b) number of class name strings
4490 * (2b) number of method name strings
4491 * (2b) number of source file name strings
4492 * For each entry:
4493 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004494 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004495 * (2b) allocated object's class name index
4496 * (1b) stack depth
4497 * For each stack frame:
4498 * (2b) method's class name
4499 * (2b) method name
4500 * (2b) method source file
4501 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4502 * (xb) class name strings
4503 * (xb) method name strings
4504 * (xb) source file strings
4505 *
4506 * As with other DDM traffic, strings are sent as a 4-byte length
4507 * followed by UTF-16 data.
4508 *
4509 * We send up 16-bit unsigned indexes into string tables. In theory there
Elliott Hughesb1a58792013-07-11 18:10:58 -07004510 * can be (kMaxAllocRecordStackDepth * gAllocRecordMax) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004511 * each table, but in practice there should be far fewer.
4512 *
4513 * The chief reason for using a string table here is to keep the size of
4514 * the DDMS message to a minimum. This is partly to make the protocol
4515 * efficient, but also because we have to form the whole thing up all at
4516 * once in a memory buffer.
4517 *
4518 * We use separate string tables for class names, method names, and source
4519 * files to keep the indexes small. There will generally be no overlap
4520 * between the contents of these tables.
4521 */
4522jbyteArray Dbg::GetRecentAllocations() {
4523 if (false) {
4524 DumpRecentAllocations();
4525 }
4526
Ian Rogers50b35e22012-10-04 10:09:15 -07004527 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004528 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004529 {
Ian Rogers719d1a32014-03-06 12:13:39 -08004530 MutexLock mu(self, *alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004531 //
4532 // Part 1: generate string tables.
4533 //
4534 StringTable class_names;
4535 StringTable method_names;
4536 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004537
Ian Rogers719d1a32014-03-06 12:13:39 -08004538 int count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004539 int idx = HeadIndex();
4540 while (count--) {
4541 AllocRecord* record = &recent_allocation_records_[idx];
Ian Rogers1ff3c982014-08-12 02:30:58 -07004542 std::string temp;
4543 class_names.Add(record->Type()->GetDescriptor(&temp));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004544 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004545 mirror::ArtMethod* m = record->StackElement(i)->Method();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004546 if (m != NULL) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004547 class_names.Add(m->GetDeclaringClassDescriptor());
4548 method_names.Add(m->GetName());
4549 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004550 }
4551 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004552
Ian Rogers719d1a32014-03-06 12:13:39 -08004553 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004554 }
4555
Ian Rogers719d1a32014-03-06 12:13:39 -08004556 LOG(INFO) << "allocation records: " << alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004557
4558 //
4559 // Part 2: Generate the output and store it in the buffer.
4560 //
4561
4562 // (1b) message header len (to allow future expansion); includes itself
4563 // (1b) entry header len
4564 // (1b) stack frame len
4565 const int kMessageHeaderLen = 15;
4566 const int kEntryHeaderLen = 9;
4567 const int kStackFrameLen = 8;
4568 JDWP::Append1BE(bytes, kMessageHeaderLen);
4569 JDWP::Append1BE(bytes, kEntryHeaderLen);
4570 JDWP::Append1BE(bytes, kStackFrameLen);
4571
4572 // (2b) number of entries
4573 // (4b) offset to string table from start of message
4574 // (2b) number of class name strings
4575 // (2b) number of method name strings
4576 // (2b) number of source file name strings
Ian Rogers719d1a32014-03-06 12:13:39 -08004577 JDWP::Append2BE(bytes, alloc_record_count_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004578 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004579 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004580 JDWP::Append2BE(bytes, class_names.Size());
4581 JDWP::Append2BE(bytes, method_names.Size());
4582 JDWP::Append2BE(bytes, filenames.Size());
4583
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004584 idx = HeadIndex();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004585 std::string temp;
4586 for (count = alloc_record_count_; count != 0; --count) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004587 // For each entry:
4588 // (4b) total allocation size
4589 // (2b) thread id
4590 // (2b) allocated object's class name index
4591 // (1b) stack depth
4592 AllocRecord* record = &recent_allocation_records_[idx];
4593 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004594 size_t allocated_object_class_name_index =
Ian Rogers1ff3c982014-08-12 02:30:58 -07004595 class_names.IndexOf(record->Type()->GetDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004596 JDWP::Append4BE(bytes, record->ByteCount());
4597 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004598 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4599 JDWP::Append1BE(bytes, stack_depth);
4600
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004601 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4602 // For each stack frame:
4603 // (2b) method's class name
4604 // (2b) method name
4605 // (2b) method source file
4606 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004607 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004608 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4609 size_t method_name_index = method_names.IndexOf(m->GetName());
4610 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004611 JDWP::Append2BE(bytes, class_name_index);
4612 JDWP::Append2BE(bytes, method_name_index);
4613 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004614 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004615 }
Ian Rogers719d1a32014-03-06 12:13:39 -08004616 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004617 }
4618
4619 // (xb) class name strings
4620 // (xb) method name strings
4621 // (xb) source file strings
4622 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4623 class_names.WriteTo(bytes);
4624 method_names.WriteTo(bytes);
4625 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004626 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004627 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004628 jbyteArray result = env->NewByteArray(bytes.size());
4629 if (result != NULL) {
4630 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4631 }
4632 return result;
4633}
4634
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07004635mirror::ArtMethod* DeoptimizationRequest::Method() const {
4636 ScopedObjectAccessUnchecked soa(Thread::Current());
4637 return soa.DecodeMethod(method_);
4638}
4639
4640void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
4641 ScopedObjectAccessUnchecked soa(Thread::Current());
4642 method_ = soa.EncodeMethod(m);
4643}
4644
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004645} // namespace art