blob: c3c0395f5be62865ece3f4aa13f15fb114880f67 [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"
Mathieu Chartierc7853442015-03-27 14:35:38 -070024#include "art_field-inl.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010025#include "base/time_utils.h"
Elliott Hughes545a0642011-11-08 19:10:03 -080026#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070028#include "dex_file-inl.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070029#include "dex_instruction.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070030#include "gc/accounting/card_table-inl.h"
31#include "gc/space/large_object_space.h"
32#include "gc/space/space-inl.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070033#include "handle_scope.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080034#include "jdwp/object_registry.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070035#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036#include "mirror/class.h"
37#include "mirror/class-inl.h"
38#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039#include "mirror/object-inl.h"
40#include "mirror/object_array-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070041#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080042#include "mirror/throwable.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010043#include "quick/inline_method_analyser.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070044#include "reflection.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070045#include "safe_map.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080046#include "scoped_thread_state_change.h"
Elliott Hughes6a5bd492011-10-28 14:33:57 -070047#include "ScopedLocalRef.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070048#include "ScopedPrimitiveArray.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070049#include "handle_scope-inl.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070050#include "thread_list.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051#include "utf.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010052#include "verifier/method_verifier-inl.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070053#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070054
Brian Carlstrom3d92d522013-07-12 09:03:08 -070055#ifdef HAVE_ANDROID_OS
56#include "cutils/properties.h"
57#endif
58
Elliott Hughes872d4ec2011-10-21 17:07:15 -070059namespace art {
60
Sebastien Hertz0462c4c2015-04-01 16:34:17 +020061// The key identifying the debugger to update instrumentation.
62static constexpr const char* kDbgInstrumentationKey = "Debugger";
63
Brian Carlstrom7934ac22013-07-26 10:54:15 -070064static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
Brian Carlstrom306db812014-09-05 13:01:41 -070065static const size_t kDefaultNumAllocRecords = 64*1024; // Must be a power of 2. 2BE can hold 64k-1.
66
67// Limit alloc_record_count to the 2BE value that is the limit of the current protocol.
68static uint16_t CappedAllocRecordCount(size_t alloc_record_count) {
69 if (alloc_record_count > 0xffff) {
70 return 0xffff;
71 }
72 return alloc_record_count;
73}
Elliott Hughes475fc232011-10-25 15:00:35 -070074
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070075class AllocRecordStackTraceElement {
76 public:
77 AllocRecordStackTraceElement() : method_(nullptr), dex_pc_(0) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080078 }
79
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070080 int32_t LineNumber() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
81 mirror::ArtMethod* method = Method();
82 DCHECK(method != nullptr);
83 return method->GetLineNumFromDexPC(DexPc());
Elliott Hughes545a0642011-11-08 19:10:03 -080084 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070085
86 mirror::ArtMethod* Method() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -070087 ScopedObjectAccessUnchecked soa(Thread::Current());
88 return soa.DecodeMethod(method_);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070089 }
90
91 void SetMethod(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
92 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4345c462014-06-27 10:20:14 -070093 method_ = soa.EncodeMethod(m);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070094 }
95
96 uint32_t DexPc() const {
97 return dex_pc_;
98 }
99
100 void SetDexPc(uint32_t pc) {
101 dex_pc_ = pc;
102 }
103
104 private:
Mathieu Chartier4345c462014-06-27 10:20:14 -0700105 jmethodID method_;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700106 uint32_t dex_pc_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800107};
108
Mathieu Chartier4345c462014-06-27 10:20:14 -0700109jobject Dbg::TypeCache::Add(mirror::Class* t) {
110 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800111 JNIEnv* const env = soa.Env();
112 ScopedLocalRef<jobject> local_ref(soa.Env(), soa.AddLocalReference<jobject>(t));
113 const int32_t hash_code = soa.Decode<mirror::Class*>(local_ref.get())->IdentityHashCode();
Mathieu Chartier4345c462014-06-27 10:20:14 -0700114 auto range = objects_.equal_range(hash_code);
115 for (auto it = range.first; it != range.second; ++it) {
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800116 if (soa.Decode<mirror::Class*>(it->second) == soa.Decode<mirror::Class*>(local_ref.get())) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700117 // Found a matching weak global, return it.
118 return it->second;
119 }
120 }
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800121 const jobject weak_global = env->NewWeakGlobalRef(local_ref.get());
Mathieu Chartier4345c462014-06-27 10:20:14 -0700122 objects_.insert(std::make_pair(hash_code, weak_global));
123 return weak_global;
124}
125
126void Dbg::TypeCache::Clear() {
Brian Carlstrom306db812014-09-05 13:01:41 -0700127 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
128 Thread* self = Thread::Current();
Mathieu Chartier4345c462014-06-27 10:20:14 -0700129 for (const auto& p : objects_) {
Brian Carlstrom306db812014-09-05 13:01:41 -0700130 vm->DeleteWeakGlobalRef(self, p.second);
Mathieu Chartier4345c462014-06-27 10:20:14 -0700131 }
132 objects_.clear();
133}
134
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700135class AllocRecord {
136 public:
137 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -0800138
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700139 mirror::Class* Type() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700140 return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700141 }
142
Brian Carlstrom306db812014-09-05 13:01:41 -0700143 void SetType(mirror::Class* t) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
144 Locks::alloc_tracker_lock_) {
145 type_ = Dbg::type_cache_.Add(t);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700146 }
147
148 size_t GetDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800149 size_t depth = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -0700150 while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800151 ++depth;
152 }
153 return depth;
154 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800155
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700156 size_t ByteCount() const {
157 return byte_count_;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800158 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700159
160 void SetByteCount(size_t count) {
161 byte_count_ = count;
162 }
163
164 uint16_t ThinLockId() const {
165 return thin_lock_id_;
166 }
167
168 void SetThinLockId(uint16_t id) {
169 thin_lock_id_ = id;
170 }
171
172 AllocRecordStackTraceElement* StackElement(size_t index) {
173 DCHECK_LT(index, kMaxAllocRecordStackDepth);
174 return &stack_[index];
175 }
176
177 private:
178 jobject type_; // This is a weak global.
179 size_t byte_count_;
180 uint16_t thin_lock_id_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700181 // Unused entries have null method.
182 AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth];
Elliott Hughes545a0642011-11-08 19:10:03 -0800183};
184
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700185class Breakpoint {
186 public:
Sebastien Hertzf3928792014-11-17 19:00:37 +0100187 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc,
188 DeoptimizationRequest::Kind deoptimization_kind)
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700189 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertzf3928792014-11-17 19:00:37 +0100190 : method_(nullptr), dex_pc_(dex_pc), deoptimization_kind_(deoptimization_kind) {
191 CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing ||
192 deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization ||
193 deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700194 ScopedObjectAccessUnchecked soa(Thread::Current());
195 method_ = soa.EncodeMethod(method);
196 }
197
198 Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
199 : method_(nullptr), dex_pc_(other.dex_pc_),
Sebastien Hertzf3928792014-11-17 19:00:37 +0100200 deoptimization_kind_(other.deoptimization_kind_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700201 ScopedObjectAccessUnchecked soa(Thread::Current());
202 method_ = soa.EncodeMethod(other.Method());
203 }
204
205 mirror::ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
206 ScopedObjectAccessUnchecked soa(Thread::Current());
207 return soa.DecodeMethod(method_);
208 }
209
210 uint32_t DexPc() const {
211 return dex_pc_;
212 }
213
Sebastien Hertzf3928792014-11-17 19:00:37 +0100214 DeoptimizationRequest::Kind GetDeoptimizationKind() const {
215 return deoptimization_kind_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700216 }
217
218 private:
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100219 // The location of this breakpoint.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700220 jmethodID method_;
221 uint32_t dex_pc_;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100222
223 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
Sebastien Hertzf3928792014-11-17 19:00:37 +0100224 DeoptimizationRequest::Kind deoptimization_kind_;
Elliott Hughes86964332012-02-15 19:37:42 -0800225};
226
Sebastien Hertzed2be172014-08-19 15:33:43 +0200227static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700228 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700229 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
Elliott Hughes86964332012-02-15 19:37:42 -0800230 return os;
231}
232
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200233class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800234 public:
235 DebugInstrumentationListener() {}
236 virtual ~DebugInstrumentationListener() {}
237
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200238 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200239 uint32_t dex_pc)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200240 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800241 if (method->IsNative()) {
242 // TODO: post location events is a suspension point and native method entry stubs aren't.
243 return;
244 }
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200245 if (IsListeningToDexPcMoved()) {
246 // We also listen to kDexPcMoved instrumentation event so we know the DexPcMoved method is
247 // going to be called right after us. To avoid sending JDWP events twice for this location,
248 // we report the event in DexPcMoved. However, we must remind this is method entry so we
249 // send the METHOD_ENTRY event. And we can also group it with other events for this location
250 // like BREAKPOINT or SINGLE_STEP (or even METHOD_EXIT if this is a RETURN instruction).
251 thread->SetDebugMethodEntry();
252 } else if (IsListeningToMethodExit() && IsReturn(method, dex_pc)) {
253 // We also listen to kMethodExited instrumentation event and the current instruction is a
254 // RETURN so we know the MethodExited method is going to be called right after us. To avoid
255 // sending JDWP events twice for this location, we report the event(s) in MethodExited.
256 // However, we must remind this is method entry so we send the METHOD_ENTRY event. And we can
257 // also group it with other events for this location like BREAKPOINT or SINGLE_STEP.
258 thread->SetDebugMethodEntry();
259 } else {
260 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
261 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800262 }
263
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200264 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
265 uint32_t dex_pc, const JValue& return_value)
266 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800267 if (method->IsNative()) {
268 // TODO: post location events is a suspension point and native method entry stubs aren't.
269 return;
270 }
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200271 uint32_t events = Dbg::kMethodExit;
272 if (thread->IsDebugMethodEntry()) {
273 // It is also the method entry.
274 DCHECK(IsReturn(method, dex_pc));
275 events |= Dbg::kMethodEntry;
276 thread->ClearDebugMethodEntry();
277 }
278 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, events, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800279 }
280
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200281 void MethodUnwind(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object ATTRIBUTE_UNUSED,
282 mirror::ArtMethod* method, uint32_t dex_pc)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200283 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800284 // We're not recorded to listen to this kind of event, so complain.
285 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100286 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800287 }
288
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200289 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
290 uint32_t new_dex_pc)
291 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200292 if (IsListeningToMethodExit() && IsReturn(method, new_dex_pc)) {
293 // We also listen to kMethodExited instrumentation event and the current instruction is a
294 // RETURN so we know the MethodExited method is going to be called right after us. Like in
295 // MethodEntered, we delegate event reporting to MethodExited.
296 // Besides, if this RETURN instruction is the only one in the method, we can send multiple
297 // JDWP events in the same packet: METHOD_ENTRY, METHOD_EXIT, BREAKPOINT and/or SINGLE_STEP.
298 // Therefore, we must not clear the debug method entry flag here.
299 } else {
300 uint32_t events = 0;
301 if (thread->IsDebugMethodEntry()) {
302 // It is also the method entry.
303 events = Dbg::kMethodEntry;
304 thread->ClearDebugMethodEntry();
305 }
306 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, events, nullptr);
307 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800308 }
309
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200310 void FieldRead(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object,
311 mirror::ArtMethod* method, uint32_t dex_pc, ArtField* field)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200312 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
313 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800314 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200315
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700316 void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700317 mirror::ArtMethod* method, uint32_t dex_pc, ArtField* field,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700318 const JValue& field_value)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200319 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
320 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
321 }
322
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000323 void ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED, mirror::Throwable* exception_object)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200324 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000325 Dbg::PostException(exception_object);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200326 }
327
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800328 // We only care about how many backward branches were executed in the Jit.
329 void BackwardBranch(Thread* /*thread*/, mirror::ArtMethod* method, int32_t dex_pc_offset)
330 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
331 LOG(ERROR) << "Unexpected backward branch event in debugger " << PrettyMethod(method)
332 << " " << dex_pc_offset;
333 }
334
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200335 private:
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200336 static bool IsReturn(mirror::ArtMethod* method, uint32_t dex_pc)
337 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
338 const DexFile::CodeItem* code_item = method->GetCodeItem();
339 const Instruction* instruction = Instruction::At(&code_item->insns_[dex_pc]);
340 return instruction->IsReturn();
341 }
342
343 static bool IsListeningToDexPcMoved() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
344 return IsListeningTo(instrumentation::Instrumentation::kDexPcMoved);
345 }
346
347 static bool IsListeningToMethodExit() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
348 return IsListeningTo(instrumentation::Instrumentation::kMethodExited);
349 }
350
351 static bool IsListeningTo(instrumentation::Instrumentation::InstrumentationEvent event)
352 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
353 return (Dbg::GetInstrumentationEvents() & event) != 0;
354 }
355
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200356 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800357} gDebugInstrumentationListener;
358
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700359// JDWP is allowed unless the Zygote forbids it.
360static bool gJdwpAllowed = true;
361
Elliott Hughesc0f09332012-03-26 13:27:06 -0700362// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700363static bool gJdwpConfigured = false;
364
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100365// JDWP options for debugging. Only valid if IsJdwpConfigured() is true.
366static JDWP::JdwpOptions gJdwpOptions;
367
Elliott Hughes3bb81562011-10-21 18:52:59 -0700368// Runtime JDWP state.
Ian Rogersc0542af2014-09-03 16:16:56 -0700369static JDWP::JdwpState* gJdwpState = nullptr;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700370static bool gDebuggerConnected; // debugger or DDMS is connected.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700371
Elliott Hughes47fce012011-10-25 18:37:19 -0700372static bool gDdmThreadNotification = false;
373
Elliott Hughes767a1472011-10-26 18:49:02 -0700374// DDMS GC-related settings.
375static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
376static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
377static Dbg::HpsgWhat gDdmHpsgWhat;
378static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
379static Dbg::HpsgWhat gDdmNhsgWhat;
380
Daniel Mihalyieb076692014-08-22 17:33:31 +0200381bool Dbg::gDebuggerActive = false;
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100382bool Dbg::gDisposed = false;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200383ObjectRegistry* Dbg::gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700384
Elliott Hughes545a0642011-11-08 19:10:03 -0800385// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800386AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
387size_t Dbg::alloc_record_max_ = 0;
388size_t Dbg::alloc_record_head_ = 0;
389size_t Dbg::alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -0700390Dbg::TypeCache Dbg::type_cache_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800391
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100392// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100393std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
394size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100395
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200396// Instrumentation event reference counters.
397size_t Dbg::dex_pc_change_event_ref_count_ = 0;
398size_t Dbg::method_enter_event_ref_count_ = 0;
399size_t Dbg::method_exit_event_ref_count_ = 0;
400size_t Dbg::field_read_event_ref_count_ = 0;
401size_t Dbg::field_write_event_ref_count_ = 0;
402size_t Dbg::exception_catch_event_ref_count_ = 0;
403uint32_t Dbg::instrumentation_events_ = 0;
404
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100405// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800406static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800407
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700408void DebugInvokeReq::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
409 receiver.VisitRootIfNonNull(visitor, root_info); // null for static method call.
410 klass.VisitRoot(visitor, root_info);
411 method.VisitRoot(visitor, root_info);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200412}
413
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700414void SingleStepControl::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
Sebastien Hertz261bc042015-04-08 09:36:07 +0200415 method_.VisitRootIfNonNull(visitor, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700416}
417
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100418void SingleStepControl::AddDexPc(uint32_t dex_pc) {
419 dex_pcs_.insert(dex_pc);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200420}
421
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100422bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
423 return dex_pcs_.find(dex_pc) == dex_pcs_.end();
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200424}
425
Brian Carlstromea46f952013-07-30 01:26:50 -0700426static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800427 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700428 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzed2be172014-08-19 15:33:43 +0200429 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100430 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700431 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
Elliott Hughes86964332012-02-15 19:37:42 -0800432 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
433 return true;
434 }
435 }
436 return false;
437}
438
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100439static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
440 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800441 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
442 // A thread may be suspended for GC; in this code, we really want to know whether
443 // there's a debugger suspension active.
444 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
445}
446
Ian Rogersc0542af2014-09-03 16:16:56 -0700447static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700448 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200449 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700450 if (o == nullptr) {
451 *error = JDWP::ERR_INVALID_OBJECT;
452 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800453 }
454 if (!o->IsArrayInstance()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700455 *error = JDWP::ERR_INVALID_ARRAY;
456 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800457 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700458 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800459 return o->AsArray();
460}
461
Ian Rogersc0542af2014-09-03 16:16:56 -0700462static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700463 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200464 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700465 if (o == nullptr) {
466 *error = JDWP::ERR_INVALID_OBJECT;
467 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800468 }
469 if (!o->IsClass()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700470 *error = JDWP::ERR_INVALID_CLASS;
471 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800472 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700473 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800474 return o->AsClass();
475}
476
Ian Rogersc0542af2014-09-03 16:16:56 -0700477static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
478 JDWP::JdwpError* error)
Sebastien Hertz69206392015-04-07 15:54:25 +0200479 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
480 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::thread_suspend_count_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200481 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700482 if (thread_peer == nullptr) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800483 // This isn't even an object.
Ian Rogersc0542af2014-09-03 16:16:56 -0700484 *error = JDWP::ERR_INVALID_OBJECT;
485 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800486 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800487
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800488 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800489 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
490 // This isn't a thread.
Ian Rogersc0542af2014-09-03 16:16:56 -0700491 *error = JDWP::ERR_INVALID_THREAD;
492 return nullptr;
Elliott Hughes221229c2013-01-08 18:17:50 -0800493 }
494
Sebastien Hertz69206392015-04-07 15:54:25 +0200495 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700496 Thread* thread = Thread::FromManagedThread(soa, thread_peer);
497 // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a
498 // zombie.
499 *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE;
500 return thread;
Elliott Hughes436e3722012-02-17 20:01:47 -0800501}
502
Elliott Hughes24437992011-11-30 14:49:33 -0800503static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
504 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
505 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
506 return static_cast<JDWP::JdwpTag>(descriptor[0]);
507}
508
Ian Rogers1ff3c982014-08-12 02:30:58 -0700509static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
510 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
511 std::string temp;
512 const char* descriptor = klass->GetDescriptor(&temp);
513 return BasicTagFromDescriptor(descriptor);
514}
515
Ian Rogers98379392014-02-24 16:53:16 -0800516static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700517 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700518 CHECK(c != nullptr);
Elliott Hughes24437992011-11-30 14:49:33 -0800519 if (c->IsArrayClass()) {
520 return JDWP::JT_ARRAY;
521 }
Elliott Hughes24437992011-11-30 14:49:33 -0800522 if (c->IsStringClass()) {
523 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800524 }
Ian Rogers98379392014-02-24 16:53:16 -0800525 if (c->IsClassClass()) {
526 return JDWP::JT_CLASS_OBJECT;
527 }
528 {
529 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
530 if (thread_class->IsAssignableFrom(c)) {
531 return JDWP::JT_THREAD;
532 }
533 }
534 {
535 mirror::Class* thread_group_class =
536 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
537 if (thread_group_class->IsAssignableFrom(c)) {
538 return JDWP::JT_THREAD_GROUP;
539 }
540 }
541 {
542 mirror::Class* class_loader_class =
543 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
544 if (class_loader_class->IsAssignableFrom(c)) {
545 return JDWP::JT_CLASS_LOADER;
546 }
547 }
548 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800549}
550
551/*
552 * Objects declared to hold Object might actually hold a more specific
553 * type. The debugger may take a special interest in these (e.g. it
554 * wants to display the contents of Strings), so we want to return an
555 * appropriate tag.
556 *
557 * Null objects are tagged JT_OBJECT.
558 */
Sebastien Hertz6995c602014-09-09 12:10:13 +0200559JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700560 return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800561}
562
563static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
564 switch (tag) {
565 case JDWP::JT_BOOLEAN:
566 case JDWP::JT_BYTE:
567 case JDWP::JT_CHAR:
568 case JDWP::JT_FLOAT:
569 case JDWP::JT_DOUBLE:
570 case JDWP::JT_INT:
571 case JDWP::JT_LONG:
572 case JDWP::JT_SHORT:
573 case JDWP::JT_VOID:
574 return true;
575 default:
576 return false;
577 }
578}
579
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100580void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700581 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700582 // No JDWP for you!
583 return;
584 }
585
Ian Rogers719d1a32014-03-06 12:13:39 -0800586 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700587 gRegistry = new ObjectRegistry;
588
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700589 // Init JDWP if the debugger is enabled. This may connect out to a
590 // debugger, passively listen for a debugger, or block waiting for a
591 // debugger.
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100592 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
Ian Rogersc0542af2014-09-03 16:16:56 -0700593 if (gJdwpState == nullptr) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800594 // We probably failed because some other process has the port already, which means that
595 // if we don't abort the user is likely to think they're talking to us when they're actually
596 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800597 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700598 }
599
600 // If a debugger has already attached, send the "welcome" message.
601 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700602 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700603 ScopedObjectAccess soa(Thread::Current());
Sebastien Hertz7d955652014-10-22 10:57:10 +0200604 gJdwpState->PostVMStart();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700605 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700606}
607
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700608void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200609 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
610 // destruction of gJdwpState).
611 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
612 gJdwpState->PostVMDeath();
613 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100614 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100615 Dispose();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700616 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800617 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700618 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800619 gRegistry = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700620}
621
Elliott Hughes767a1472011-10-26 18:49:02 -0700622void Dbg::GcDidFinish() {
623 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700624 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700625 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700626 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700627 }
628 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700629 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700630 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700631 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700632 }
633 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700634 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700635 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700636 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700637 }
638}
639
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700640void Dbg::SetJdwpAllowed(bool allowed) {
641 gJdwpAllowed = allowed;
642}
643
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700644DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700645 return Thread::Current()->GetInvokeReq();
646}
647
648Thread* Dbg::GetDebugThread() {
Ian Rogersc0542af2014-09-03 16:16:56 -0700649 return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700650}
651
652void Dbg::ClearWaitForEventThread() {
Sebastien Hertz2bf93f42015-01-09 18:44:05 +0100653 gJdwpState->ReleaseJdwpTokenForEvent();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700654}
655
656void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700657 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800658 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700659 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800660 gDisposed = false;
661}
662
Sebastien Hertzf3928792014-11-17 19:00:37 +0100663bool Dbg::RequiresDeoptimization() {
664 // We don't need deoptimization if everything runs with interpreter after
665 // enabling -Xint mode.
666 return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly();
667}
668
Elliott Hughesa2155262011-11-16 16:26:58 -0800669void Dbg::GoActive() {
670 // Enable all debugging features, including scans for breakpoints.
671 // This is a no-op if we're already active.
672 // Only called from the JDWP handler thread.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200673 if (IsDebuggerActive()) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800674 return;
675 }
676
Elliott Hughesc0f09332012-03-26 13:27:06 -0700677 {
678 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Sebastien Hertzed2be172014-08-19 15:33:43 +0200679 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700680 CHECK_EQ(gBreakpoints.size(), 0U);
681 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800682
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100683 {
Brian Carlstrom306db812014-09-05 13:01:41 -0700684 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100685 CHECK_EQ(deoptimization_requests_.size(), 0U);
686 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200687 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
688 CHECK_EQ(method_enter_event_ref_count_, 0U);
689 CHECK_EQ(method_exit_event_ref_count_, 0U);
690 CHECK_EQ(field_read_event_ref_count_, 0U);
691 CHECK_EQ(field_write_event_ref_count_, 0U);
692 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100693 }
694
Ian Rogers62d6c772013-02-27 08:32:07 -0800695 Runtime* runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700696 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800697 Thread* self = Thread::Current();
698 ThreadState old_state = self->SetStateUnsafe(kRunnable);
699 CHECK_NE(old_state, kRunnable);
Sebastien Hertzf3928792014-11-17 19:00:37 +0100700 if (RequiresDeoptimization()) {
701 runtime->GetInstrumentation()->EnableDeoptimization();
702 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200703 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800704 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800705 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
706 runtime->GetThreadList()->ResumeAll();
707
708 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700709}
710
711void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700712 CHECK(gDebuggerConnected);
713
Elliott Hughesc0f09332012-03-26 13:27:06 -0700714 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700715
Ian Rogers62d6c772013-02-27 08:32:07 -0800716 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
717 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
718 // and clear the object registry.
719 Runtime* runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700720 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800721 Thread* self = Thread::Current();
722 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100723
724 // Debugger may not be active at this point.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200725 if (IsDebuggerActive()) {
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100726 {
727 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
728 // This prevents us from having any pending deoptimization request when the debugger attaches
729 // to us again while no event has been requested yet.
Brian Carlstrom306db812014-09-05 13:01:41 -0700730 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100731 deoptimization_requests_.clear();
732 full_deoptimization_event_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100733 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200734 if (instrumentation_events_ != 0) {
735 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
736 instrumentation_events_);
737 instrumentation_events_ = 0;
738 }
Sebastien Hertzf3928792014-11-17 19:00:37 +0100739 if (RequiresDeoptimization()) {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200740 runtime->GetInstrumentation()->DisableDeoptimization(kDbgInstrumentationKey);
Sebastien Hertzf3928792014-11-17 19:00:37 +0100741 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100742 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100743 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800744 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
745 runtime->GetThreadList()->ResumeAll();
Sebastien Hertz55f65342015-01-13 22:48:34 +0100746
747 {
748 ScopedObjectAccess soa(self);
749 gRegistry->Clear();
750 }
751
752 gDebuggerConnected = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700753}
754
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100755void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) {
756 CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown);
757 gJdwpOptions = jdwp_options;
758 gJdwpConfigured = true;
759}
760
Elliott Hughesc0f09332012-03-26 13:27:06 -0700761bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700762 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700763}
764
765int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800766 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700767}
768
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700769void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700770 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700771}
772
Elliott Hughes88d63092013-01-09 09:55:54 -0800773std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700774 JDWP::JdwpError error;
775 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error);
776 if (o == nullptr) {
777 if (error == JDWP::ERR_NONE) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700778 return "null";
Ian Rogersc0542af2014-09-03 16:16:56 -0700779 } else {
780 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
781 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800782 }
783 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700784 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800785 }
Sebastien Hertz6995c602014-09-09 12:10:13 +0200786 return GetClassName(o->AsClass());
787}
788
789std::string Dbg::GetClassName(mirror::Class* klass) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200790 if (klass == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700791 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200792 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700793 std::string temp;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200794 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700795}
796
Ian Rogersc0542af2014-09-03 16:16:56 -0700797JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800798 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700799 mirror::Class* c = DecodeClass(id, &status);
800 if (c == nullptr) {
801 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800802 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800803 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700804 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800805 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800806}
807
Ian Rogersc0542af2014-09-03 16:16:56 -0700808JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800809 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700810 mirror::Class* c = DecodeClass(id, &status);
811 if (c == nullptr) {
812 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800813 return status;
814 }
815 if (c->IsInterface()) {
816 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700817 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800818 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700819 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800820 }
821 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700822}
823
Elliott Hughes436e3722012-02-17 20:01:47 -0800824JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700825 JDWP::JdwpError error;
826 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
827 if (o == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800828 return JDWP::ERR_INVALID_OBJECT;
829 }
830 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
831 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700832}
833
Elliott Hughes436e3722012-02-17 20:01:47 -0800834JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700835 JDWP::JdwpError error;
836 mirror::Class* c = DecodeClass(id, &error);
837 if (c == nullptr) {
838 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800839 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800840
841 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
842
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700843 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
844 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800845 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700846 if ((access_flags & kAccInterface) == 0) {
847 access_flags |= kAccSuper;
848 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800849
850 expandBufAdd4BE(pReply, access_flags);
851
852 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700853}
854
Ian Rogersc0542af2014-09-03 16:16:56 -0700855JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
856 JDWP::JdwpError error;
857 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
858 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800859 return JDWP::ERR_INVALID_OBJECT;
860 }
861
862 // Ensure all threads are suspended while we read objects' lock words.
863 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100864 CHECK_EQ(self->GetState(), kRunnable);
865 self->TransitionFromRunnableToSuspended(kSuspended);
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700866 Runtime::Current()->GetThreadList()->SuspendAll(__FUNCTION__);
Elliott Hughesf327e072013-01-09 16:01:26 -0800867
868 MonitorInfo monitor_info(o);
869
Sebastien Hertz54263242014-03-19 18:16:50 +0100870 Runtime::Current()->GetThreadList()->ResumeAll();
871 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800872
Ian Rogersc0542af2014-09-03 16:16:56 -0700873 if (monitor_info.owner_ != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700874 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800875 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700876 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800877 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700878 expandBufAdd4BE(reply, monitor_info.entry_count_);
879 expandBufAdd4BE(reply, monitor_info.waiters_.size());
880 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
881 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800882 }
883 return JDWP::ERR_NONE;
884}
885
Elliott Hughes734b8c62013-01-11 15:32:45 -0800886JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700887 std::vector<JDWP::ObjectId>* monitors,
888 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800889 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700890 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700891 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700892 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800893 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100894 : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
895 current_stack_depth(0),
896 monitors(monitor_vector),
897 stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800898
899 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
900 // annotalysis.
901 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
902 if (!GetMethod()->IsRuntimeMethod()) {
903 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800904 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800905 }
906 return true;
907 }
908
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700909 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
910 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800911 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700912 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700913 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800914 }
915
Elliott Hughes734b8c62013-01-11 15:32:45 -0800916 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700917 std::vector<JDWP::ObjectId>* const monitors;
918 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800919 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800920
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700921 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +0200922 JDWP::JdwpError error;
923 Thread* thread = DecodeThread(soa, thread_id, &error);
924 if (thread == nullptr) {
925 return error;
926 }
927 if (!IsSuspendedForDebugger(soa, thread)) {
928 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700929 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700930 std::unique_ptr<Context> context(Context::Create());
Ian Rogersc0542af2014-09-03 16:16:56 -0700931 OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700932 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800933 return JDWP::ERR_NONE;
934}
935
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100936JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700937 JDWP::ObjectId* contended_monitor) {
Elliott Hughesf9501702013-01-11 11:22:27 -0800938 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -0700939 *contended_monitor = 0;
Sebastien Hertz69206392015-04-07 15:54:25 +0200940 JDWP::JdwpError error;
941 Thread* thread = DecodeThread(soa, thread_id, &error);
942 if (thread == nullptr) {
943 return error;
Elliott Hughesf9501702013-01-11 11:22:27 -0800944 }
Sebastien Hertz69206392015-04-07 15:54:25 +0200945 if (!IsSuspendedForDebugger(soa, thread)) {
946 return JDWP::ERR_THREAD_NOT_SUSPENDED;
947 }
948 mirror::Object* contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700949 // Add() requires the thread_list_lock_ not held to avoid the lock
950 // level violation.
Ian Rogersc0542af2014-09-03 16:16:56 -0700951 *contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -0800952 return JDWP::ERR_NONE;
953}
954
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800955JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -0700956 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800957 gc::Heap* heap = Runtime::Current()->GetHeap();
958 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800959 std::vector<mirror::Class*> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700960 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800961 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700962 JDWP::JdwpError error;
963 mirror::Class* c = DecodeClass(class_ids[i], &error);
964 if (c == nullptr) {
965 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800966 }
967 classes.push_back(c);
Ian Rogersc0542af2014-09-03 16:16:56 -0700968 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800969 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700970 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800971 return JDWP::ERR_NONE;
972}
973
Ian Rogersc0542af2014-09-03 16:16:56 -0700974JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
975 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800976 gc::Heap* heap = Runtime::Current()->GetHeap();
977 // We only want reachable instances, so do a GC.
978 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700979 JDWP::JdwpError error;
980 mirror::Class* c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800981 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700982 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800983 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800984 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800985 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
986 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700987 instances->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes3b78c942013-01-15 17:35:41 -0800988 }
989 return JDWP::ERR_NONE;
990}
991
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800992JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700993 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800994 gc::Heap* heap = Runtime::Current()->GetHeap();
995 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700996 JDWP::JdwpError error;
997 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
998 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800999 return JDWP::ERR_INVALID_OBJECT;
1000 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001001 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001002 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001003 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001004 referring_objects->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001005 }
1006 return JDWP::ERR_NONE;
1007}
1008
Ian Rogersc0542af2014-09-03 16:16:56 -07001009JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
1010 JDWP::JdwpError error;
1011 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1012 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001013 return JDWP::ERR_INVALID_OBJECT;
1014 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001015 gRegistry->DisableCollection(object_id);
1016 return JDWP::ERR_NONE;
1017}
1018
Ian Rogersc0542af2014-09-03 16:16:56 -07001019JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
1020 JDWP::JdwpError error;
1021 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +01001022 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
1023 // also ignores these cases and never return an error. However it's not obvious why this command
1024 // should behave differently from DisableCollection and IsCollected commands. So let's be more
1025 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -07001026 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001027 return JDWP::ERR_INVALID_OBJECT;
1028 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001029 gRegistry->EnableCollection(object_id);
1030 return JDWP::ERR_NONE;
1031}
1032
Ian Rogersc0542af2014-09-03 16:16:56 -07001033JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
1034 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001035 if (object_id == 0) {
1036 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +01001037 return JDWP::ERR_INVALID_OBJECT;
1038 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001039 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1040 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -07001041 JDWP::JdwpError error;
1042 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1043 if (o != nullptr) {
1044 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001045 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001046 return JDWP::ERR_NONE;
1047}
1048
Ian Rogersc0542af2014-09-03 16:16:56 -07001049void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001050 gRegistry->DisposeObject(object_id, reference_count);
1051}
1052
Sebastien Hertz6995c602014-09-09 12:10:13 +02001053JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001054 DCHECK(klass != nullptr);
1055 if (klass->IsArrayClass()) {
1056 return JDWP::TT_ARRAY;
1057 } else if (klass->IsInterface()) {
1058 return JDWP::TT_INTERFACE;
1059 } else {
1060 return JDWP::TT_CLASS;
1061 }
1062}
1063
Elliott Hughes88d63092013-01-09 09:55:54 -08001064JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001065 JDWP::JdwpError error;
1066 mirror::Class* c = DecodeClass(class_id, &error);
1067 if (c == nullptr) {
1068 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001069 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001070
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001071 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1072 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001073 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001074 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001075}
1076
Ian Rogersc0542af2014-09-03 16:16:56 -07001077void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001078 // Get the complete list of reference classes (i.e. all classes except
1079 // the primitive types).
1080 // Returns a newly-allocated buffer full of RefTypeId values.
1081 struct ClassListCreator {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001082 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes_in) : classes(classes_in) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001083 }
1084
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001085 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001086 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1087 }
1088
Elliott Hughes64f574f2013-02-20 14:57:12 -08001089 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1090 // annotalysis.
1091 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001092 if (!c->IsPrimitive()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001093 classes->push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001094 }
1095 return true;
1096 }
1097
Ian Rogersc0542af2014-09-03 16:16:56 -07001098 std::vector<JDWP::RefTypeId>* const classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001099 };
1100
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001101 ClassListCreator clc(classes);
Sebastien Hertz4537c412014-08-28 14:41:50 +02001102 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(ClassListCreator::Visit,
1103 &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001104}
1105
Ian Rogers1ff3c982014-08-12 02:30:58 -07001106JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1107 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001108 JDWP::JdwpError error;
1109 mirror::Class* c = DecodeClass(class_id, &error);
1110 if (c == nullptr) {
1111 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001112 }
1113
Elliott Hughesa2155262011-11-16 16:26:58 -08001114 if (c->IsArrayClass()) {
1115 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1116 *pTypeTag = JDWP::TT_ARRAY;
1117 } else {
1118 if (c->IsErroneous()) {
1119 *pStatus = JDWP::CS_ERROR;
1120 } else {
1121 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1122 }
1123 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1124 }
1125
Ian Rogersc0542af2014-09-03 16:16:56 -07001126 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001127 std::string temp;
1128 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001129 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001130 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001131}
1132
Ian Rogersc0542af2014-09-03 16:16:56 -07001133void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001134 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001135 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001136 ids->clear();
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001137 for (size_t i = 0; i < classes.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001138 ids->push_back(gRegistry->Add(classes[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001139 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001140}
1141
Ian Rogersc0542af2014-09-03 16:16:56 -07001142JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1143 JDWP::JdwpError error;
1144 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1145 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001146 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001147 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001148
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001149 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001150 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001151
1152 expandBufAdd1(pReply, type_tag);
1153 expandBufAddRefTypeId(pReply, type_id);
1154
1155 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001156}
1157
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001158JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001159 JDWP::JdwpError error;
1160 mirror::Class* c = DecodeClass(class_id, &error);
1161 if (c == nullptr) {
1162 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001163 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001164 std::string temp;
1165 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001166 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001167}
1168
Ian Rogersc0542af2014-09-03 16:16:56 -07001169JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1170 JDWP::JdwpError error;
1171 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001172 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001173 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001174 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001175 const char* source_file = c->GetSourceFile();
1176 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001177 return JDWP::ERR_ABSENT_INFORMATION;
1178 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001179 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001180 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001181}
1182
Ian Rogersc0542af2014-09-03 16:16:56 -07001183JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001184 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001185 JDWP::JdwpError error;
1186 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1187 if (error != JDWP::ERR_NONE) {
1188 *tag = JDWP::JT_VOID;
1189 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001190 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001191 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001192 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001193}
1194
Elliott Hughesaed4be92011-12-02 16:16:23 -08001195size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001196 switch (tag) {
1197 case JDWP::JT_VOID:
1198 return 0;
1199 case JDWP::JT_BYTE:
1200 case JDWP::JT_BOOLEAN:
1201 return 1;
1202 case JDWP::JT_CHAR:
1203 case JDWP::JT_SHORT:
1204 return 2;
1205 case JDWP::JT_FLOAT:
1206 case JDWP::JT_INT:
1207 return 4;
1208 case JDWP::JT_ARRAY:
1209 case JDWP::JT_OBJECT:
1210 case JDWP::JT_STRING:
1211 case JDWP::JT_THREAD:
1212 case JDWP::JT_THREAD_GROUP:
1213 case JDWP::JT_CLASS_LOADER:
1214 case JDWP::JT_CLASS_OBJECT:
1215 return sizeof(JDWP::ObjectId);
1216 case JDWP::JT_DOUBLE:
1217 case JDWP::JT_LONG:
1218 return 8;
1219 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001220 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001221 return -1;
1222 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001223}
1224
Ian Rogersc0542af2014-09-03 16:16:56 -07001225JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1226 JDWP::JdwpError error;
1227 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1228 if (a == nullptr) {
1229 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001230 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001231 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001232 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001233}
1234
Elliott Hughes88d63092013-01-09 09:55:54 -08001235JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001236 JDWP::JdwpError error;
1237 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001238 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001239 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001240 }
Elliott Hughes24437992011-11-30 14:49:33 -08001241
1242 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1243 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001244 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001245 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001246 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1247 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001248 expandBufAdd4BE(pReply, count);
1249
Ian Rogers1ff3c982014-08-12 02:30:58 -07001250 if (IsPrimitiveTag(element_tag)) {
1251 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001252 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1253 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001254 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001255 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1256 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001257 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001258 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1259 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001260 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001261 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1262 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001263 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001264 memcpy(dst, &src[offset * width], count * width);
1265 }
1266 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001267 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001268 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001269 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001270 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001271 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001272 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001273 expandBufAdd1(pReply, specific_tag);
1274 expandBufAddObjectId(pReply, gRegistry->Add(element));
1275 }
1276 }
1277
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001278 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001279}
1280
Ian Rogersef7d42f2014-01-06 12:55:46 -08001281template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001282static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001283 NO_THREAD_SAFETY_ANALYSIS {
1284 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001285 DCHECK(a->GetClass()->IsPrimitiveArray());
1286
Ian Rogersef7d42f2014-01-06 12:55:46 -08001287 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001288 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001289 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001290 }
1291}
1292
Elliott Hughes88d63092013-01-09 09:55:54 -08001293JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001294 JDWP::Request* request) {
1295 JDWP::JdwpError error;
1296 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1297 if (dst == nullptr) {
1298 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001299 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001300
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001301 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001302 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001303 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001304 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001305 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001306
Ian Rogers1ff3c982014-08-12 02:30:58 -07001307 if (IsPrimitiveTag(element_tag)) {
1308 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001309 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001310 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001311 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001312 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001313 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001314 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001315 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001316 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001317 }
1318 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001319 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001320 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001321 JDWP::ObjectId id = request->ReadObjectId();
Ian Rogersc0542af2014-09-03 16:16:56 -07001322 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1323 if (error != JDWP::ERR_NONE) {
1324 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001325 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001326 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001327 }
1328 }
1329
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001330 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001331}
1332
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001333JDWP::JdwpError Dbg::CreateString(const std::string& str, JDWP::ObjectId* new_string_id) {
1334 Thread* self = Thread::Current();
1335 mirror::String* new_string = mirror::String::AllocFromModifiedUtf8(self, str.c_str());
1336 if (new_string == nullptr) {
1337 DCHECK(self->IsExceptionPending());
1338 self->ClearException();
1339 LOG(ERROR) << "Could not allocate string";
1340 *new_string_id = 0;
1341 return JDWP::ERR_OUT_OF_MEMORY;
1342 }
1343 *new_string_id = gRegistry->Add(new_string);
1344 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001345}
1346
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001347JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001348 JDWP::JdwpError error;
1349 mirror::Class* c = DecodeClass(class_id, &error);
1350 if (c == nullptr) {
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001351 *new_object_id = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -07001352 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001353 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001354 Thread* self = Thread::Current();
1355 mirror::Object* new_object = c->AllocObject(self);
1356 if (new_object == nullptr) {
1357 DCHECK(self->IsExceptionPending());
1358 self->ClearException();
1359 LOG(ERROR) << "Could not allocate object of type " << PrettyDescriptor(c);
1360 *new_object_id = 0;
1361 return JDWP::ERR_OUT_OF_MEMORY;
1362 }
1363 *new_object_id = gRegistry->Add(new_object);
Elliott Hughes436e3722012-02-17 20:01:47 -08001364 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001365}
1366
Elliott Hughesbf13d362011-12-08 15:51:37 -08001367/*
1368 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1369 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001370JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001371 JDWP::ObjectId* new_array_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001372 JDWP::JdwpError error;
1373 mirror::Class* c = DecodeClass(array_class_id, &error);
1374 if (c == nullptr) {
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001375 *new_array_id = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -07001376 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001377 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001378 Thread* self = Thread::Current();
1379 gc::Heap* heap = Runtime::Current()->GetHeap();
1380 mirror::Array* new_array = mirror::Array::Alloc<true>(self, c, length,
1381 c->GetComponentSizeShift(),
1382 heap->GetCurrentAllocator());
1383 if (new_array == nullptr) {
1384 DCHECK(self->IsExceptionPending());
1385 self->ClearException();
1386 LOG(ERROR) << "Could not allocate array of type " << PrettyDescriptor(c);
1387 *new_array_id = 0;
1388 return JDWP::ERR_OUT_OF_MEMORY;
1389 }
1390 *new_array_id = gRegistry->Add(new_array);
Elliott Hughes436e3722012-02-17 20:01:47 -08001391 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001392}
1393
Mathieu Chartierc7853442015-03-27 14:35:38 -07001394JDWP::FieldId Dbg::ToFieldId(const ArtField* f) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001395 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001396}
1397
Brian Carlstromea46f952013-07-30 01:26:50 -07001398static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001399 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001400 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001401 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001402}
1403
Mathieu Chartierc7853442015-03-27 14:35:38 -07001404static ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001405 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001406 return reinterpret_cast<ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001407}
1408
Brian Carlstromea46f952013-07-30 01:26:50 -07001409static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001410 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001411 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001412 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001413}
1414
Sebastien Hertz6995c602014-09-09 12:10:13 +02001415bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1416 CHECK(event_thread != nullptr);
1417 JDWP::JdwpError error;
1418 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(expected_thread_id,
1419 &error);
1420 return expected_thread_peer == event_thread->GetPeer();
1421}
1422
1423bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1424 const JDWP::EventLocation& event_location) {
1425 if (expected_location.dex_pc != event_location.dex_pc) {
1426 return false;
1427 }
1428 mirror::ArtMethod* m = FromMethodId(expected_location.method_id);
1429 return m == event_location.method;
1430}
1431
1432bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001433 if (event_class == nullptr) {
1434 return false;
1435 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02001436 JDWP::JdwpError error;
1437 mirror::Class* expected_class = DecodeClass(class_id, &error);
1438 CHECK(expected_class != nullptr);
1439 return expected_class->IsAssignableFrom(event_class);
1440}
1441
1442bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001443 ArtField* event_field) {
1444 ArtField* expected_field = FromFieldId(expected_field_id);
Sebastien Hertz6995c602014-09-09 12:10:13 +02001445 if (expected_field != event_field) {
1446 return false;
1447 }
1448 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1449}
1450
1451bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1452 JDWP::JdwpError error;
1453 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error);
1454 return modifier_instance == event_instance;
1455}
1456
1457void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
Sebastien Hertz69206392015-04-07 15:54:25 +02001458 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1459 LOCKS_EXCLUDED(Locks::thread_list_lock_,
1460 Locks::thread_suspend_count_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001461 if (m == nullptr) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001462 memset(location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001463 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001464 mirror::Class* c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001465 location->type_tag = GetTypeTag(c);
1466 location->class_id = gRegistry->AddRefType(c);
1467 location->method_id = ToMethodId(m);
1468 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001469 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001470}
1471
Ian Rogersc0542af2014-09-03 16:16:56 -07001472std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001473 mirror::ArtMethod* m = FromMethodId(method_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001474 if (m == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001475 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001476 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001477 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001478}
1479
Ian Rogersc0542af2014-09-03 16:16:56 -07001480std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001481 ArtField* f = FromFieldId(field_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001482 if (f == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001483 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001484 }
1485 return f->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001486}
1487
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001488/*
1489 * Augment the access flags for synthetic methods and fields by setting
1490 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1491 * flags not specified by the Java programming language.
1492 */
1493static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1494 accessFlags &= kAccJavaFlagsMask;
1495 if ((accessFlags & kAccSynthetic) != 0) {
1496 accessFlags |= 0xf0000000;
1497 }
1498 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001499}
1500
Elliott Hughesdbb40792011-11-18 17:05:22 -08001501/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001502 * Circularly shifts registers so that arguments come first. Debuggers
1503 * expect slots to begin with arguments, but dex code places them at
1504 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001505 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001506static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1507 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001508 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001509 if (code_item == nullptr) {
1510 // We should not get here for a method without code (native, proxy or abstract). Log it and
1511 // return the slot as is since all registers are arguments.
1512 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1513 return slot;
1514 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001515 uint16_t ins_size = code_item->ins_size_;
1516 uint16_t locals_size = code_item->registers_size_ - ins_size;
1517 if (slot >= locals_size) {
1518 return slot - locals_size;
1519 } else {
1520 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001521 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001522}
1523
Jeff Haob7cefc72013-11-14 14:51:09 -08001524/*
1525 * Circularly shifts registers so that arguments come last. Reverts
1526 * slots to dex style argument placement.
1527 */
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001528static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001529 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001530 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001531 if (code_item == nullptr) {
1532 // We should not get here for a method without code (native, proxy or abstract). Log it and
1533 // return the slot as is since all registers are arguments.
1534 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001535 uint16_t vreg_count = mirror::ArtMethod::NumArgRegisters(m->GetShorty());
1536 if (slot < vreg_count) {
1537 *error = JDWP::ERR_NONE;
1538 return slot;
1539 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001540 } else {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001541 if (slot < code_item->registers_size_) {
1542 uint16_t ins_size = code_item->ins_size_;
1543 uint16_t locals_size = code_item->registers_size_ - ins_size;
1544 *error = JDWP::ERR_NONE;
1545 return (slot < ins_size) ? slot + locals_size : slot - ins_size;
1546 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001547 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001548
1549 // Slot is invalid in the method.
1550 LOG(ERROR) << "Invalid local slot " << slot << " for method " << PrettyMethod(m);
1551 *error = JDWP::ERR_INVALID_SLOT;
1552 return DexFile::kDexNoIndex16;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001553}
1554
Elliott Hughes88d63092013-01-09 09:55:54 -08001555JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001556 JDWP::JdwpError error;
1557 mirror::Class* c = DecodeClass(class_id, &error);
1558 if (c == nullptr) {
1559 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001560 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001561
1562 size_t instance_field_count = c->NumInstanceFields();
1563 size_t static_field_count = c->NumStaticFields();
1564
1565 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1566
1567 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001568 ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001569 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001570 expandBufAddUtf8String(pReply, f->GetName());
1571 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001572 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001573 static const char genericSignature[1] = "";
1574 expandBufAddUtf8String(pReply, genericSignature);
1575 }
1576 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1577 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001578 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001579}
1580
Elliott Hughes88d63092013-01-09 09:55:54 -08001581JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001582 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001583 JDWP::JdwpError error;
1584 mirror::Class* c = DecodeClass(class_id, &error);
1585 if (c == nullptr) {
1586 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001587 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001588
1589 size_t direct_method_count = c->NumDirectMethods();
1590 size_t virtual_method_count = c->NumVirtualMethods();
1591
1592 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1593
1594 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001595 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001596 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001597 expandBufAddUtf8String(pReply, m->GetName());
1598 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001599 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001600 static const char genericSignature[1] = "";
1601 expandBufAddUtf8String(pReply, genericSignature);
1602 }
1603 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1604 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001605 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001606}
1607
Elliott Hughes88d63092013-01-09 09:55:54 -08001608JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001609 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001610 Thread* self = Thread::Current();
1611 StackHandleScope<1> hs(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07001612 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error)));
Mathieu Chartierf8322842014-05-16 10:59:25 -07001613 if (c.Get() == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001614 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001615 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001616 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001617 expandBufAdd4BE(pReply, interface_count);
1618 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001619 expandBufAddRefTypeId(pReply,
1620 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001621 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001622 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001623}
1624
Ian Rogersc0542af2014-09-03 16:16:56 -07001625void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001626 struct DebugCallbackContext {
1627 int numItems;
1628 JDWP::ExpandBuf* pReply;
1629
Elliott Hughes2435a572012-02-17 16:07:41 -08001630 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001631 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1632 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001633 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001634 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001635 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001636 }
1637 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001638 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001639 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001640 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001641 if (code_item == nullptr) {
1642 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001643 start = -1;
1644 end = -1;
1645 } else {
1646 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001647 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001648 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001649 }
1650
1651 expandBufAdd8BE(pReply, start);
1652 expandBufAdd8BE(pReply, end);
1653
1654 // Add numLines later
1655 size_t numLinesOffset = expandBufGetLength(pReply);
1656 expandBufAdd4BE(pReply, 0);
1657
1658 DebugCallbackContext context;
1659 context.numItems = 0;
1660 context.pReply = pReply;
1661
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001662 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001663 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001664 DebugCallbackContext::Callback, nullptr, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001665 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001666
1667 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001668}
1669
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001670void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1671 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001672 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001673 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001674 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001675 size_t variable_count;
1676 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001677
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001678 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1679 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001680 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001681 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1682
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001683 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1684 pContext->variable_count, startAddress, endAddress - startAddress,
1685 name, descriptor, signature, slot,
1686 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001687
Jeff Haob7cefc72013-11-14 14:51:09 -08001688 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001689
Elliott Hughesdbb40792011-11-18 17:05:22 -08001690 expandBufAdd8BE(pContext->pReply, startAddress);
1691 expandBufAddUtf8String(pContext->pReply, name);
1692 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001693 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001694 expandBufAddUtf8String(pContext->pReply, signature);
1695 }
1696 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1697 expandBufAdd4BE(pContext->pReply, slot);
1698
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001699 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001700 }
1701 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001702 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001703
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001704 // arg_count considers doubles and longs to take 2 units.
1705 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001706 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001707 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001708
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001709 // We don't know the total number of variables yet, so leave a blank and update it later.
1710 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001711 expandBufAdd4BE(pReply, 0);
1712
1713 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001714 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001715 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001716 context.variable_count = 0;
1717 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001718
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001719 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001720 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001721 m->GetDexFile()->DecodeDebugInfo(
Ian Rogersc0542af2014-09-03 16:16:56 -07001722 code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001723 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001724 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001725
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001726 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001727}
1728
Jeff Hao579b0242013-11-18 13:16:49 -08001729void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1730 JDWP::ExpandBuf* pReply) {
1731 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001732 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001733 OutputJValue(tag, return_value, pReply);
1734}
1735
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001736void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1737 JDWP::ExpandBuf* pReply) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001738 ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001739 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001740 OutputJValue(tag, field_value, pReply);
1741}
1742
Elliott Hughes9777ba22013-01-17 09:04:19 -08001743JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001744 std::vector<uint8_t>* bytecodes) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001745 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001746 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001747 return JDWP::ERR_INVALID_METHODID;
1748 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001749 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001750 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1751 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1752 const uint8_t* end = begin + byte_count;
1753 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001754 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001755 }
1756 return JDWP::ERR_NONE;
1757}
1758
Elliott Hughes88d63092013-01-09 09:55:54 -08001759JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001760 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001761}
1762
Elliott Hughes88d63092013-01-09 09:55:54 -08001763JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001764 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001765}
1766
Elliott Hughes88d63092013-01-09 09:55:54 -08001767static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1768 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001769 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001770 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001771 JDWP::JdwpError error;
1772 mirror::Class* c = DecodeClass(ref_type_id, &error);
1773 if (ref_type_id != 0 && c == nullptr) {
1774 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001775 }
1776
Sebastien Hertz6995c602014-09-09 12:10:13 +02001777 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001778 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001779 return JDWP::ERR_INVALID_OBJECT;
1780 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07001781 ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001782
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001783 mirror::Class* receiver_class = c;
Ian Rogersc0542af2014-09-03 16:16:56 -07001784 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001785 receiver_class = o->GetClass();
1786 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001787 // TODO: should we give up now if receiver_class is null?
Ian Rogersc0542af2014-09-03 16:16:56 -07001788 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001789 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001790 return JDWP::ERR_INVALID_FIELDID;
1791 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001792
Elliott Hughes0cf74332012-02-23 23:14:00 -08001793 // The RI only enforces the static/non-static mismatch in one direction.
1794 // TODO: should we change the tests and check both?
1795 if (is_static) {
1796 if (!f->IsStatic()) {
1797 return JDWP::ERR_INVALID_FIELDID;
1798 }
1799 } else {
1800 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001801 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field "
1802 << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001803 }
1804 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001805 if (f->IsStatic()) {
1806 o = f->GetDeclaringClass();
1807 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001808
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001809 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001810 JValue field_value;
1811 if (tag == JDWP::JT_VOID) {
1812 LOG(FATAL) << "Unknown tag: " << tag;
1813 } else if (!IsPrimitiveTag(tag)) {
1814 field_value.SetL(f->GetObject(o));
1815 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1816 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001817 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001818 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001819 }
Jeff Hao579b0242013-11-18 13:16:49 -08001820 Dbg::OutputJValue(tag, &field_value, pReply);
1821
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001822 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001823}
1824
Elliott Hughes88d63092013-01-09 09:55:54 -08001825JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001826 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001827 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001828}
1829
Ian Rogersc0542af2014-09-03 16:16:56 -07001830JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1831 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001832 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001833}
1834
Elliott Hughes88d63092013-01-09 09:55:54 -08001835static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001836 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001837 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001838 JDWP::JdwpError error;
Sebastien Hertz6995c602014-09-09 12:10:13 +02001839 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001840 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001841 return JDWP::ERR_INVALID_OBJECT;
1842 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07001843 ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001844
1845 // The RI only enforces the static/non-static mismatch in one direction.
1846 // TODO: should we change the tests and check both?
1847 if (is_static) {
1848 if (!f->IsStatic()) {
1849 return JDWP::ERR_INVALID_FIELDID;
1850 }
1851 } else {
1852 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001853 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001854 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001855 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001856 if (f->IsStatic()) {
1857 o = f->GetDeclaringClass();
1858 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001859
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001860 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001861
1862 if (IsPrimitiveTag(tag)) {
1863 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001864 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001865 // Debugging can't use transactional mode (runtime only).
1866 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001867 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001868 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001869 // Debugging can't use transactional mode (runtime only).
1870 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001871 }
1872 } else {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001873 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001874 if (error != JDWP::ERR_NONE) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001875 return JDWP::ERR_INVALID_OBJECT;
1876 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001877 if (v != nullptr) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001878 mirror::Class* field_type;
1879 {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001880 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001881 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001882 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001883 field_type = f->GetType<true>();
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001884 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001885 if (!field_type->IsAssignableFrom(v->GetClass())) {
1886 return JDWP::ERR_INVALID_OBJECT;
1887 }
1888 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001889 // Debugging can't use transactional mode (runtime only).
1890 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001891 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001892
1893 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001894}
1895
Elliott Hughes88d63092013-01-09 09:55:54 -08001896JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001897 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001898 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001899}
1900
Elliott Hughes88d63092013-01-09 09:55:54 -08001901JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1902 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001903}
1904
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001905JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001906 JDWP::JdwpError error;
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001907 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error);
1908 if (error != JDWP::ERR_NONE) {
1909 return error;
1910 }
1911 if (obj == nullptr) {
1912 return JDWP::ERR_INVALID_OBJECT;
1913 }
1914 {
1915 ScopedObjectAccessUnchecked soa(Thread::Current());
1916 mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String);
1917 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
1918 // This isn't a string.
1919 return JDWP::ERR_INVALID_STRING;
1920 }
1921 }
1922 *str = obj->AsString()->ToModifiedUtf8();
1923 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001924}
1925
Jeff Hao579b0242013-11-18 13:16:49 -08001926void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1927 if (IsPrimitiveTag(tag)) {
1928 expandBufAdd1(pReply, tag);
1929 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1930 expandBufAdd1(pReply, return_value->GetI());
1931 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1932 expandBufAdd2BE(pReply, return_value->GetI());
1933 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1934 expandBufAdd4BE(pReply, return_value->GetI());
1935 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1936 expandBufAdd8BE(pReply, return_value->GetJ());
1937 } else {
1938 CHECK_EQ(tag, JDWP::JT_VOID);
1939 }
1940 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001941 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001942 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001943 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001944 expandBufAddObjectId(pReply, gRegistry->Add(value));
1945 }
1946}
1947
Ian Rogersc0542af2014-09-03 16:16:56 -07001948JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001949 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001950 JDWP::JdwpError error;
1951 Thread* thread = DecodeThread(soa, thread_id, &error);
1952 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001953 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1954 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001955 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001956
1957 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07001958 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1959 CHECK(thread_object != nullptr) << error;
Mathieu Chartierc7853442015-03-27 14:35:38 -07001960 ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001961 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1962 mirror::String* s =
1963 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Ian Rogersc0542af2014-09-03 16:16:56 -07001964 if (s != nullptr) {
1965 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08001966 }
1967 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001968}
1969
Elliott Hughes221229c2013-01-08 18:17:50 -08001970JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02001971 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001972 JDWP::JdwpError error;
1973 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1974 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001975 return JDWP::ERR_INVALID_OBJECT;
1976 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001977 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001978 // Okay, so it's an object, but is it actually a thread?
Sebastien Hertz69206392015-04-07 15:54:25 +02001979 Thread* thread = DecodeThread(soa, thread_id, &error);
1980 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001981 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1982 // Zombie threads are in the null group.
1983 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001984 error = JDWP::ERR_NONE;
1985 } else if (error == JDWP::ERR_NONE) {
1986 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1987 CHECK(c != nullptr);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001988 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001989 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001990 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001991 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001992 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1993 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001994 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001995 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001996}
1997
Sebastien Hertza06430c2014-09-15 19:21:30 +02001998static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
1999 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
2000 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002001 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,
2002 error);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002003 if (*error != JDWP::ERR_NONE) {
2004 return nullptr;
2005 }
2006 if (thread_group == nullptr) {
2007 *error = JDWP::ERR_INVALID_OBJECT;
2008 return nullptr;
2009 }
Ian Rogers98379392014-02-24 16:53:16 -08002010 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
2011 CHECK(c != nullptr);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002012 if (!c->IsAssignableFrom(thread_group->GetClass())) {
2013 // This is not a java.lang.ThreadGroup.
2014 *error = JDWP::ERR_INVALID_THREAD_GROUP;
2015 return nullptr;
2016 }
2017 *error = JDWP::ERR_NONE;
2018 return thread_group;
2019}
2020
2021JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
2022 ScopedObjectAccessUnchecked soa(Thread::Current());
2023 JDWP::JdwpError error;
2024 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2025 if (error != JDWP::ERR_NONE) {
2026 return error;
2027 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002028 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupName");
Mathieu Chartierc7853442015-03-27 14:35:38 -07002029 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_name);
Ian Rogersc0542af2014-09-03 16:16:56 -07002030 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002031 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002032
2033 std::string thread_group_name(s->ToModifiedUtf8());
2034 expandBufAddUtf8String(pReply, thread_group_name);
2035 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002036}
2037
Sebastien Hertza06430c2014-09-15 19:21:30 +02002038JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08002039 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002040 JDWP::JdwpError error;
Sebastien Hertza06430c2014-09-15 19:21:30 +02002041 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2042 if (error != JDWP::ERR_NONE) {
2043 return error;
2044 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002045 mirror::Object* parent;
2046 {
2047 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupParent");
Mathieu Chartierc7853442015-03-27 14:35:38 -07002048 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_parent);
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002049 CHECK(f != nullptr);
2050 parent = f->GetObject(thread_group);
2051 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002052 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
2053 expandBufAddObjectId(pReply, parent_group_id);
2054 return JDWP::ERR_NONE;
2055}
2056
2057static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
2058 std::vector<JDWP::ObjectId>* child_thread_group_ids)
2059 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2060 CHECK(thread_group != nullptr);
2061
2062 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Mathieu Chartierc7853442015-03-27 14:35:38 -07002063 ArtField* groups_field = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_groups);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002064 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Sebastien Hertze49e1952014-10-13 11:27:13 +02002065 {
2066 // The "groups" field is declared as a java.util.List: check it really is
2067 // an instance of java.util.ArrayList.
2068 CHECK(groups_array_list != nullptr);
2069 mirror::Class* java_util_ArrayList_class =
2070 soa.Decode<mirror::Class*>(WellKnownClasses::java_util_ArrayList);
2071 CHECK(groups_array_list->InstanceOf(java_util_ArrayList_class));
2072 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002073
2074 // Get the array and size out of the ArrayList<ThreadGroup>...
Mathieu Chartierc7853442015-03-27 14:35:38 -07002075 ArtField* array_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_array);
2076 ArtField* size_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_size);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002077 mirror::ObjectArray<mirror::Object>* groups_array =
2078 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
2079 const int32_t size = size_field->GetInt(groups_array_list);
2080
2081 // Copy the first 'size' elements out of the array into the result.
Sebastien Hertz6995c602014-09-09 12:10:13 +02002082 ObjectRegistry* registry = Dbg::GetObjectRegistry();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002083 for (int32_t i = 0; i < size; ++i) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002084 child_thread_group_ids->push_back(registry->Add(groups_array->Get(i)));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002085 }
2086}
2087
2088JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2089 JDWP::ExpandBuf* pReply) {
2090 ScopedObjectAccessUnchecked soa(Thread::Current());
2091 JDWP::JdwpError error;
2092 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2093 if (error != JDWP::ERR_NONE) {
2094 return error;
2095 }
2096
2097 // Add child threads.
2098 {
2099 std::vector<JDWP::ObjectId> child_thread_ids;
2100 GetThreads(thread_group, &child_thread_ids);
2101 expandBufAdd4BE(pReply, child_thread_ids.size());
2102 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2103 expandBufAddObjectId(pReply, child_thread_id);
2104 }
2105 }
2106
2107 // Add child thread groups.
2108 {
2109 std::vector<JDWP::ObjectId> child_thread_groups_ids;
2110 GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids);
2111 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2112 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2113 expandBufAddObjectId(pReply, child_thread_group_id);
2114 }
2115 }
2116
2117 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002118}
2119
2120JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002121 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07002122 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002123 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002124 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002125}
2126
Jeff Hao920af3e2013-08-28 15:46:38 -07002127JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2128 switch (state) {
2129 case kBlocked:
2130 return JDWP::TS_MONITOR;
2131 case kNative:
2132 case kRunnable:
2133 case kSuspended:
2134 return JDWP::TS_RUNNING;
2135 case kSleeping:
2136 return JDWP::TS_SLEEPING;
2137 case kStarting:
2138 case kTerminated:
2139 return JDWP::TS_ZOMBIE;
2140 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002141 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002142 case kWaitingForDebuggerSend:
2143 case kWaitingForDebuggerSuspension:
2144 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002145 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002146 case kWaitingForGcToComplete:
Mathieu Chartierb43390c2015-05-12 10:47:11 -07002147 case kWaitingForGetObjectsAllocated:
Jeff Hao920af3e2013-08-28 15:46:38 -07002148 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002149 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002150 case kWaitingForSignalCatcherOutput:
Hiroshi Yamauchi0c8c3032015-01-16 16:54:35 -08002151 case kWaitingForVisitObjects:
Jeff Hao920af3e2013-08-28 15:46:38 -07002152 case kWaitingInMainDebuggerLoop:
2153 case kWaitingInMainSignalCatcherLoop:
2154 case kWaitingPerformingGc:
2155 case kWaiting:
2156 return JDWP::TS_WAIT;
2157 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2158 }
2159 LOG(FATAL) << "Unknown thread state: " << state;
2160 return JDWP::TS_ZOMBIE;
2161}
2162
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002163JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2164 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002165 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002166
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002167 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2168
Ian Rogersc0542af2014-09-03 16:16:56 -07002169 JDWP::JdwpError error;
2170 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002171 if (error != JDWP::ERR_NONE) {
2172 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2173 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002174 return JDWP::ERR_NONE;
2175 }
2176 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002177 }
2178
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002179 if (IsSuspendedForDebugger(soa, thread)) {
2180 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002181 }
2182
Jeff Hao920af3e2013-08-28 15:46:38 -07002183 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002184 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002185}
2186
Elliott Hughes221229c2013-01-08 18:17:50 -08002187JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002188 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002189 JDWP::JdwpError error;
2190 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002191 if (error != JDWP::ERR_NONE) {
2192 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002193 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002194 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002195 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002196 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002197}
2198
Elliott Hughesf9501702013-01-11 11:22:27 -08002199JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2200 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002201 JDWP::JdwpError error;
2202 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002203 if (error != JDWP::ERR_NONE) {
2204 return error;
2205 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002206 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002207 return JDWP::ERR_NONE;
2208}
2209
Sebastien Hertz070f7322014-09-09 12:08:49 +02002210static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa,
2211 mirror::Object* desired_thread_group, mirror::Object* peer)
2212 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2213 // Do we want threads from all thread groups?
2214 if (desired_thread_group == nullptr) {
2215 return true;
2216 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07002217 ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Sebastien Hertz070f7322014-09-09 12:08:49 +02002218 DCHECK(thread_group_field != nullptr);
2219 mirror::Object* group = thread_group_field->GetObject(peer);
2220 return (group == desired_thread_group);
2221}
2222
Sebastien Hertza06430c2014-09-15 19:21:30 +02002223void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002224 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz070f7322014-09-09 12:08:49 +02002225 std::list<Thread*> all_threads_list;
2226 {
2227 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2228 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2229 }
2230 for (Thread* t : all_threads_list) {
2231 if (t == Dbg::GetDebugThread()) {
2232 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2233 // query all threads, so it's easier if we just don't tell them about this thread.
2234 continue;
2235 }
2236 if (t->IsStillStarting()) {
2237 // This thread is being started (and has been registered in the thread list). However, it is
2238 // not completely started yet so we must ignore it.
2239 continue;
2240 }
2241 mirror::Object* peer = t->GetPeer();
2242 if (peer == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07002243 // peer might be null if the thread is still starting up. We can't tell the debugger about
Sebastien Hertz070f7322014-09-09 12:08:49 +02002244 // this thread yet.
2245 // TODO: if we identified threads to the debugger by their Thread*
2246 // rather than their peer's mirror::Object*, we could fix this.
2247 // Doing so might help us report ZOMBIE threads too.
2248 continue;
2249 }
2250 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
2251 thread_ids->push_back(gRegistry->Add(peer));
2252 }
2253 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002254}
Elliott Hughesa2155262011-11-16 16:26:58 -08002255
Ian Rogersc0542af2014-09-03 16:16:56 -07002256static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002257 struct CountStackDepthVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002258 explicit CountStackDepthVisitor(Thread* thread_in)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01002259 : StackVisitor(thread_in, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2260 depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002261
Elliott Hughes64f574f2013-02-20 14:57:12 -08002262 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2263 // annotalysis.
2264 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002265 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002266 ++depth;
2267 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002268 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002269 }
2270 size_t depth;
2271 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002272
Ian Rogers7a22fa62013-01-23 12:16:16 -08002273 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002274 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002275 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002276}
2277
Ian Rogersc0542af2014-09-03 16:16:56 -07002278JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002279 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002280 JDWP::JdwpError error;
2281 *result = 0;
2282 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002283 if (error != JDWP::ERR_NONE) {
2284 return error;
2285 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002286 if (!IsSuspendedForDebugger(soa, thread)) {
2287 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2288 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002289 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002290 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002291}
2292
Ian Rogers306057f2012-11-26 12:45:53 -08002293JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2294 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002295 class GetFrameVisitor : public StackVisitor {
2296 public:
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002297 GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in,
2298 JDWP::ExpandBuf* buf_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002299 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01002300 : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2301 depth_(0),
2302 start_frame_(start_frame_in),
2303 frame_count_(frame_count_in),
2304 buf_(buf_in) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002305 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002306 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002307
Sebastien Hertz69206392015-04-07 15:54:25 +02002308 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002309 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002310 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002311 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002312 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002313 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002314 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002315 if (depth_ >= start_frame_) {
2316 JDWP::FrameId frame_id(GetFrameId());
2317 JDWP::JdwpLocation location;
Sebastien Hertz6995c602014-09-09 12:10:13 +02002318 SetJdwpLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002319 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002320 expandBufAdd8BE(buf_, frame_id);
2321 expandBufAddLocation(buf_, location);
2322 }
2323 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002324 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002325 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002326
2327 private:
2328 size_t depth_;
2329 const size_t start_frame_;
2330 const size_t frame_count_;
2331 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002332 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002333
2334 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002335 JDWP::JdwpError error;
2336 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002337 if (error != JDWP::ERR_NONE) {
2338 return error;
2339 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002340 if (!IsSuspendedForDebugger(soa, thread)) {
2341 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2342 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002343 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002344 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002345 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002346}
2347
2348JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002349 return GetThreadId(Thread::Current());
2350}
2351
2352JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002353 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002354 return gRegistry->Add(thread->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002355}
2356
Elliott Hughes475fc232011-10-25 15:00:35 -07002357void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002358 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002359}
2360
2361void Dbg::ResumeVM() {
Sebastien Hertz253fa552014-10-14 17:27:15 +02002362 Runtime::Current()->GetThreadList()->ResumeAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002363}
2364
Elliott Hughes221229c2013-01-08 18:17:50 -08002365JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002366 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002367 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002368 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002369 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002370 JDWP::JdwpError error;
2371 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002372 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002373 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002374 return JDWP::ERR_THREAD_NOT_ALIVE;
2375 }
Ian Rogers4ad5cd32014-11-11 23:08:07 -08002376 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002377 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002378 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2379 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2380 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002381 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002382 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002383 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002384 return JDWP::ERR_INTERNAL;
2385 } else {
2386 return JDWP::ERR_THREAD_NOT_ALIVE;
2387 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002388}
2389
Elliott Hughes221229c2013-01-08 18:17:50 -08002390void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002391 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002392 JDWP::JdwpError error;
2393 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2394 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002395 Thread* thread;
2396 {
2397 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2398 thread = Thread::FromManagedThread(soa, peer);
2399 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002400 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002401 LOG(WARNING) << "No such thread for resume: " << peer;
2402 return;
2403 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002404 bool needs_resume;
2405 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002406 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002407 needs_resume = thread->GetSuspendCount() > 0;
2408 }
2409 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002410 Runtime::Current()->GetThreadList()->Resume(thread, true);
2411 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002412}
2413
2414void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002415 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002416}
2417
Ian Rogers0399dde2012-06-06 17:09:28 -07002418struct GetThisVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002419 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002420 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01002421 : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2422 this_object(nullptr),
2423 frame_id(frame_id_in) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002424
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002425 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2426 // annotalysis.
2427 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002428 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002429 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002430 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002431 this_object = GetThisObject();
2432 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002433 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002434 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002435
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002436 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002437 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002438};
2439
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002440JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2441 JDWP::ObjectId* result) {
2442 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002443 JDWP::JdwpError error;
2444 Thread* thread = DecodeThread(soa, thread_id, &error);
2445 if (error != JDWP::ERR_NONE) {
2446 return error;
2447 }
2448 if (!IsSuspendedForDebugger(soa, thread)) {
2449 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002450 }
Ian Rogers700a4022014-05-19 16:49:03 -07002451 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002452 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002453 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002454 *result = gRegistry->Add(visitor.this_object);
2455 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002456}
2457
Sebastien Hertz8009f392014-09-01 17:07:11 +02002458// Walks the stack until we find the frame with the given FrameId.
2459class FindFrameVisitor FINAL : public StackVisitor {
2460 public:
2461 FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
2462 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01002463 : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2464 frame_id_(frame_id),
2465 error_(JDWP::ERR_INVALID_FRAMEID) {}
Ian Rogersca190662012-06-26 15:45:57 -07002466
Sebastien Hertz8009f392014-09-01 17:07:11 +02002467 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2468 // annotalysis.
2469 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
2470 if (GetFrameId() != frame_id_) {
2471 return true; // Not our frame, carry on.
Ian Rogers0399dde2012-06-06 17:09:28 -07002472 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002473 mirror::ArtMethod* m = GetMethod();
2474 if (m->IsNative()) {
2475 // We can't read/write local value from/into native method.
2476 error_ = JDWP::ERR_OPAQUE_FRAME;
2477 } else {
2478 // We found our frame.
2479 error_ = JDWP::ERR_NONE;
2480 }
2481 return false;
2482 }
2483
2484 JDWP::JdwpError GetError() const {
2485 return error_;
2486 }
2487
2488 private:
2489 const JDWP::FrameId frame_id_;
2490 JDWP::JdwpError error_;
2491};
2492
2493JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2494 JDWP::ObjectId thread_id = request->ReadThreadId();
2495 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002496
2497 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002498 JDWP::JdwpError error;
2499 Thread* thread = DecodeThread(soa, thread_id, &error);
2500 if (error != JDWP::ERR_NONE) {
2501 return error;
2502 }
2503 if (!IsSuspendedForDebugger(soa, thread)) {
2504 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes221229c2013-01-08 18:17:50 -08002505 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002506 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002507 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002508 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002509 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002510 if (visitor.GetError() != JDWP::ERR_NONE) {
2511 return visitor.GetError();
2512 }
2513
2514 // Read the values from visitor's context.
2515 int32_t slot_count = request->ReadSigned32("slot count");
2516 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2517 for (int32_t i = 0; i < slot_count; ++i) {
2518 uint32_t slot = request->ReadUnsigned32("slot");
2519 JDWP::JdwpTag reqSigByte = request->ReadTag();
2520
2521 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
2522
2523 size_t width = Dbg::GetTagWidth(reqSigByte);
Sebastien Hertz7d955652014-10-22 10:57:10 +02002524 uint8_t* ptr = expandBufAddSpace(pReply, width + 1);
Sebastien Hertz69206392015-04-07 15:54:25 +02002525 error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002526 if (error != JDWP::ERR_NONE) {
2527 return error;
2528 }
2529 }
2530 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002531}
2532
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002533constexpr JDWP::JdwpError kStackFrameLocalAccessError = JDWP::ERR_ABSENT_INFORMATION;
2534
2535static std::string GetStackContextAsString(const StackVisitor& visitor)
2536 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2537 return StringPrintf(" at DEX pc 0x%08x in method %s", visitor.GetDexPc(false),
2538 PrettyMethod(visitor.GetMethod()).c_str());
2539}
2540
2541static JDWP::JdwpError FailGetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2542 JDWP::JdwpTag tag)
2543 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2544 LOG(ERROR) << "Failed to read " << tag << " local from register v" << vreg
2545 << GetStackContextAsString(visitor);
2546 return kStackFrameLocalAccessError;
2547}
2548
Sebastien Hertz8009f392014-09-01 17:07:11 +02002549JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2550 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
2551 mirror::ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002552 JDWP::JdwpError error = JDWP::ERR_NONE;
2553 uint16_t vreg = DemangleSlot(slot, m, &error);
2554 if (error != JDWP::ERR_NONE) {
2555 return error;
2556 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002557 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002558 switch (tag) {
2559 case JDWP::JT_BOOLEAN: {
2560 CHECK_EQ(width, 1U);
2561 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002562 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2563 return FailGetLocalValue(visitor, vreg, tag);
Ian Rogers0399dde2012-06-06 17:09:28 -07002564 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002565 VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal;
2566 JDWP::Set1(buf + 1, intVal != 0);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002567 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002568 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002569 case JDWP::JT_BYTE: {
2570 CHECK_EQ(width, 1U);
2571 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002572 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2573 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002574 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002575 VLOG(jdwp) << "get byte local " << vreg << " = " << intVal;
2576 JDWP::Set1(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002577 break;
2578 }
2579 case JDWP::JT_SHORT:
2580 case JDWP::JT_CHAR: {
2581 CHECK_EQ(width, 2U);
2582 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002583 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2584 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002585 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002586 VLOG(jdwp) << "get short/char local " << vreg << " = " << intVal;
2587 JDWP::Set2BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002588 break;
2589 }
2590 case JDWP::JT_INT: {
2591 CHECK_EQ(width, 4U);
2592 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002593 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2594 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002595 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002596 VLOG(jdwp) << "get int local " << vreg << " = " << intVal;
2597 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002598 break;
2599 }
2600 case JDWP::JT_FLOAT: {
2601 CHECK_EQ(width, 4U);
2602 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002603 if (!visitor.GetVReg(m, vreg, kFloatVReg, &intVal)) {
2604 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002605 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002606 VLOG(jdwp) << "get float local " << vreg << " = " << intVal;
2607 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002608 break;
2609 }
2610 case JDWP::JT_ARRAY:
2611 case JDWP::JT_CLASS_LOADER:
2612 case JDWP::JT_CLASS_OBJECT:
2613 case JDWP::JT_OBJECT:
2614 case JDWP::JT_STRING:
2615 case JDWP::JT_THREAD:
2616 case JDWP::JT_THREAD_GROUP: {
2617 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2618 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002619 if (!visitor.GetVReg(m, vreg, kReferenceVReg, &intVal)) {
2620 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002621 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002622 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2623 VLOG(jdwp) << "get " << tag << " object local " << vreg << " = " << o;
2624 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2625 LOG(FATAL) << StringPrintf("Found invalid object %#" PRIxPTR " in register v%u",
2626 reinterpret_cast<uintptr_t>(o), vreg)
2627 << GetStackContextAsString(visitor);
2628 UNREACHABLE();
2629 }
2630 tag = TagFromObject(soa, o);
2631 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002632 break;
2633 }
2634 case JDWP::JT_DOUBLE: {
2635 CHECK_EQ(width, 8U);
2636 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002637 if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2638 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002639 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002640 VLOG(jdwp) << "get double local " << vreg << " = " << longVal;
2641 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002642 break;
2643 }
2644 case JDWP::JT_LONG: {
2645 CHECK_EQ(width, 8U);
2646 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002647 if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) {
2648 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002649 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002650 VLOG(jdwp) << "get long local " << vreg << " = " << longVal;
2651 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002652 break;
2653 }
2654 default:
2655 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002656 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002657 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002658
Sebastien Hertz8009f392014-09-01 17:07:11 +02002659 // Prepend tag, which may have been updated.
2660 JDWP::Set1(buf, tag);
2661 return JDWP::ERR_NONE;
2662}
2663
2664JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2665 JDWP::ObjectId thread_id = request->ReadThreadId();
2666 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002667
2668 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002669 JDWP::JdwpError error;
2670 Thread* thread = DecodeThread(soa, thread_id, &error);
2671 if (error != JDWP::ERR_NONE) {
2672 return error;
2673 }
2674 if (!IsSuspendedForDebugger(soa, thread)) {
2675 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes221229c2013-01-08 18:17:50 -08002676 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002677 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002678 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002679 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002680 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002681 if (visitor.GetError() != JDWP::ERR_NONE) {
2682 return visitor.GetError();
2683 }
2684
2685 // Writes the values into visitor's context.
2686 int32_t slot_count = request->ReadSigned32("slot count");
2687 for (int32_t i = 0; i < slot_count; ++i) {
2688 uint32_t slot = request->ReadUnsigned32("slot");
2689 JDWP::JdwpTag sigByte = request->ReadTag();
2690 size_t width = Dbg::GetTagWidth(sigByte);
2691 uint64_t value = request->ReadValue(width);
2692
2693 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
Sebastien Hertz69206392015-04-07 15:54:25 +02002694 error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002695 if (error != JDWP::ERR_NONE) {
2696 return error;
2697 }
2698 }
2699 return JDWP::ERR_NONE;
2700}
2701
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002702template<typename T>
2703static JDWP::JdwpError FailSetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2704 JDWP::JdwpTag tag, T value)
2705 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2706 LOG(ERROR) << "Failed to write " << tag << " local " << value
2707 << " (0x" << std::hex << value << ") into register v" << vreg
2708 << GetStackContextAsString(visitor);
2709 return kStackFrameLocalAccessError;
2710}
2711
Sebastien Hertz8009f392014-09-01 17:07:11 +02002712JDWP::JdwpError Dbg::SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
2713 uint64_t value, size_t width) {
2714 mirror::ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002715 JDWP::JdwpError error = JDWP::ERR_NONE;
2716 uint16_t vreg = DemangleSlot(slot, m, &error);
2717 if (error != JDWP::ERR_NONE) {
2718 return error;
2719 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002720 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002721 switch (tag) {
2722 case JDWP::JT_BOOLEAN:
2723 case JDWP::JT_BYTE:
2724 CHECK_EQ(width, 1U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002725 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2726 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002727 }
2728 break;
2729 case JDWP::JT_SHORT:
2730 case JDWP::JT_CHAR:
2731 CHECK_EQ(width, 2U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002732 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2733 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002734 }
2735 break;
2736 case JDWP::JT_INT:
2737 CHECK_EQ(width, 4U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002738 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2739 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002740 }
2741 break;
2742 case JDWP::JT_FLOAT:
2743 CHECK_EQ(width, 4U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002744 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) {
2745 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002746 }
2747 break;
2748 case JDWP::JT_ARRAY:
2749 case JDWP::JT_CLASS_LOADER:
2750 case JDWP::JT_CLASS_OBJECT:
2751 case JDWP::JT_OBJECT:
2752 case JDWP::JT_STRING:
2753 case JDWP::JT_THREAD:
2754 case JDWP::JT_THREAD_GROUP: {
2755 CHECK_EQ(width, sizeof(JDWP::ObjectId));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002756 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value),
2757 &error);
2758 if (error != JDWP::ERR_NONE) {
2759 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2760 return JDWP::ERR_INVALID_OBJECT;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002761 }
2762 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2763 kReferenceVReg)) {
2764 return FailSetLocalValue(visitor, vreg, tag, reinterpret_cast<uintptr_t>(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002765 }
2766 break;
2767 }
2768 case JDWP::JT_DOUBLE: {
2769 CHECK_EQ(width, 8U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002770 if (!visitor.SetVRegPair(m, vreg, value, kDoubleLoVReg, kDoubleHiVReg)) {
2771 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002772 }
2773 break;
2774 }
2775 case JDWP::JT_LONG: {
2776 CHECK_EQ(width, 8U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002777 if (!visitor.SetVRegPair(m, vreg, value, kLongLoVReg, kLongHiVReg)) {
2778 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002779 }
2780 break;
2781 }
2782 default:
2783 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002784 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002785 }
2786 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002787}
2788
Sebastien Hertz6995c602014-09-09 12:10:13 +02002789static void SetEventLocation(JDWP::EventLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
2790 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2791 DCHECK(location != nullptr);
2792 if (m == nullptr) {
2793 memset(location, 0, sizeof(*location));
2794 } else {
2795 location->method = m;
2796 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002797 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002798}
2799
Ian Rogersef7d42f2014-01-06 12:55:46 -08002800void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002801 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002802 if (!IsDebuggerActive()) {
2803 return;
2804 }
2805 DCHECK(m != nullptr);
2806 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002807 JDWP::EventLocation location;
2808 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002809
Sebastien Hertz6995c602014-09-09 12:10:13 +02002810 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002811}
2812
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002813void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07002814 mirror::Object* this_object, ArtField* f) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002815 if (!IsDebuggerActive()) {
2816 return;
2817 }
2818 DCHECK(m != nullptr);
2819 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002820 JDWP::EventLocation location;
2821 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002822
Sebastien Hertz6995c602014-09-09 12:10:13 +02002823 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002824}
2825
2826void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07002827 mirror::Object* this_object, ArtField* f,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002828 const JValue* field_value) {
2829 if (!IsDebuggerActive()) {
2830 return;
2831 }
2832 DCHECK(m != nullptr);
2833 DCHECK(f != nullptr);
2834 DCHECK(field_value != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002835 JDWP::EventLocation location;
2836 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002837
Sebastien Hertz6995c602014-09-09 12:10:13 +02002838 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002839}
2840
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002841/**
2842 * Finds the location where this exception will be caught. We search until we reach the top
2843 * frame, in which case this exception is considered uncaught.
2844 */
2845class CatchLocationFinder : public StackVisitor {
2846 public:
2847 CatchLocationFinder(Thread* self, const Handle<mirror::Throwable>& exception, Context* context)
2848 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01002849 : StackVisitor(self, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002850 self_(self),
2851 exception_(exception),
2852 handle_scope_(self),
2853 this_at_throw_(handle_scope_.NewHandle<mirror::Object>(nullptr)),
2854 catch_method_(handle_scope_.NewHandle<mirror::ArtMethod>(nullptr)),
2855 throw_method_(handle_scope_.NewHandle<mirror::ArtMethod>(nullptr)),
2856 catch_dex_pc_(DexFile::kDexNoIndex),
2857 throw_dex_pc_(DexFile::kDexNoIndex) {
2858 }
2859
2860 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2861 mirror::ArtMethod* method = GetMethod();
2862 DCHECK(method != nullptr);
2863 if (method->IsRuntimeMethod()) {
2864 // Ignore callee save method.
2865 DCHECK(method->IsCalleeSaveMethod());
2866 return true;
2867 }
2868
2869 uint32_t dex_pc = GetDexPc();
2870 if (throw_method_.Get() == nullptr) {
2871 // First Java method found. It is either the method that threw the exception,
2872 // or the Java native method that is reporting an exception thrown by
2873 // native code.
2874 this_at_throw_.Assign(GetThisObject());
2875 throw_method_.Assign(method);
2876 throw_dex_pc_ = dex_pc;
2877 }
2878
2879 if (dex_pc != DexFile::kDexNoIndex) {
2880 StackHandleScope<2> hs(self_);
2881 uint32_t found_dex_pc;
2882 Handle<mirror::Class> exception_class(hs.NewHandle(exception_->GetClass()));
2883 Handle<mirror::ArtMethod> h_method(hs.NewHandle(method));
2884 bool unused_clear_exception;
2885 found_dex_pc = mirror::ArtMethod::FindCatchBlock(
2886 h_method, exception_class, dex_pc, &unused_clear_exception);
2887 if (found_dex_pc != DexFile::kDexNoIndex) {
2888 catch_method_.Assign(method);
2889 catch_dex_pc_ = found_dex_pc;
2890 return false; // End stack walk.
2891 }
2892 }
2893 return true; // Continue stack walk.
2894 }
2895
2896 mirror::ArtMethod* GetCatchMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2897 return catch_method_.Get();
2898 }
2899
2900 mirror::ArtMethod* GetThrowMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2901 return throw_method_.Get();
2902 }
2903
2904 mirror::Object* GetThisAtThrow() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2905 return this_at_throw_.Get();
2906 }
2907
2908 uint32_t GetCatchDexPc() const {
2909 return catch_dex_pc_;
2910 }
2911
2912 uint32_t GetThrowDexPc() const {
2913 return throw_dex_pc_;
2914 }
2915
2916 private:
2917 Thread* const self_;
2918 const Handle<mirror::Throwable>& exception_;
2919 StackHandleScope<3> handle_scope_;
2920 MutableHandle<mirror::Object> this_at_throw_;
2921 MutableHandle<mirror::ArtMethod> catch_method_;
2922 MutableHandle<mirror::ArtMethod> throw_method_;
2923 uint32_t catch_dex_pc_;
2924 uint32_t throw_dex_pc_;
2925
2926 DISALLOW_COPY_AND_ASSIGN(CatchLocationFinder);
2927};
2928
2929void Dbg::PostException(mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002930 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002931 return;
2932 }
Sebastien Hertz261bc042015-04-08 09:36:07 +02002933 Thread* const self = Thread::Current();
2934 StackHandleScope<1> handle_scope(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002935 Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object));
2936 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz261bc042015-04-08 09:36:07 +02002937 CatchLocationFinder clf(self, h_exception, context.get());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002938 clf.WalkStack(/* include_transitions */ false);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002939 JDWP::EventLocation exception_throw_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002940 SetEventLocation(&exception_throw_location, clf.GetThrowMethod(), clf.GetThrowDexPc());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002941 JDWP::EventLocation exception_catch_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002942 SetEventLocation(&exception_catch_location, clf.GetCatchMethod(), clf.GetCatchDexPc());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002943
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002944 gJdwpState->PostException(&exception_throw_location, h_exception.Get(), &exception_catch_location,
2945 clf.GetThisAtThrow());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002946}
2947
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002948void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002949 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002950 return;
2951 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002952 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002953}
2954
Ian Rogers62d6c772013-02-27 08:32:07 -08002955void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002956 mirror::ArtMethod* m, uint32_t dex_pc,
2957 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002958 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002959 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002960 }
2961
Elliott Hughes86964332012-02-15 19:37:42 -08002962 if (IsBreakpoint(m, dex_pc)) {
2963 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002964 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002965
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002966 // If the debugger is single-stepping one of our threads, check to
2967 // see if we're that thread and we've reached a step point.
2968 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002969 if (single_step_control != nullptr) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002970 CHECK(!m->IsNative());
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002971 if (single_step_control->GetStepDepth() == JDWP::SD_INTO) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002972 // Step into method calls. We break when the line number
2973 // or method pointer changes. If we're in SS_MIN mode, we
2974 // always stop.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002975 if (single_step_control->GetMethod() != m) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002976 event_flags |= kSingleStep;
2977 VLOG(jdwp) << "SS new method";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002978 } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002979 event_flags |= kSingleStep;
2980 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002981 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002982 event_flags |= kSingleStep;
2983 VLOG(jdwp) << "SS new line";
2984 }
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002985 } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002986 // Step over method calls. We break when the line number is
2987 // different and the frame depth is <= the original frame
2988 // depth. (We can't just compare on the method, because we
2989 // might get unrolled past it by an exception, and it's tricky
2990 // to identify recursion.)
2991
2992 int stack_depth = GetStackDepth(thread);
2993
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002994 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002995 // Popped up one or more frames, always trigger.
2996 event_flags |= kSingleStep;
2997 VLOG(jdwp) << "SS method pop";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002998 } else if (stack_depth == single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002999 // Same depth, see if we moved.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003000 if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08003001 event_flags |= kSingleStep;
3002 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003003 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003004 event_flags |= kSingleStep;
3005 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003006 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003007 }
3008 } else {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003009 CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003010 // Return from the current method. We break when the frame
3011 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003012
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003013 // This differs from the "method exit" break in that it stops
3014 // with the PC at the next instruction in the returned-to
3015 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08003016
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003017 int stack_depth = GetStackDepth(thread);
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003018 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003019 event_flags |= kSingleStep;
3020 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003021 }
3022 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003023 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003024
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003025 // If there's something interesting going on, see if it matches one
3026 // of the debugger filters.
3027 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01003028 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003029 }
3030}
3031
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003032size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
3033 switch (instrumentation_event) {
3034 case instrumentation::Instrumentation::kMethodEntered:
3035 return &method_enter_event_ref_count_;
3036 case instrumentation::Instrumentation::kMethodExited:
3037 return &method_exit_event_ref_count_;
3038 case instrumentation::Instrumentation::kDexPcMoved:
3039 return &dex_pc_change_event_ref_count_;
3040 case instrumentation::Instrumentation::kFieldRead:
3041 return &field_read_event_ref_count_;
3042 case instrumentation::Instrumentation::kFieldWritten:
3043 return &field_write_event_ref_count_;
3044 case instrumentation::Instrumentation::kExceptionCaught:
3045 return &exception_catch_event_ref_count_;
3046 default:
3047 return nullptr;
3048 }
3049}
3050
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003051// Process request while all mutator threads are suspended.
3052void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003053 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003054 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003055 case DeoptimizationRequest::kNothing:
3056 LOG(WARNING) << "Ignoring empty deoptimization request.";
3057 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003058 case DeoptimizationRequest::kRegisterForEvent:
3059 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003060 request.InstrumentationEvent());
3061 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
3062 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003063 break;
3064 case DeoptimizationRequest::kUnregisterForEvent:
3065 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003066 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003067 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003068 request.InstrumentationEvent());
3069 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003070 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003071 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003072 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz0462c4c2015-04-01 16:34:17 +02003073 instrumentation->DeoptimizeEverything(kDbgInstrumentationKey);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003074 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003075 break;
3076 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003077 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz0462c4c2015-04-01 16:34:17 +02003078 instrumentation->UndeoptimizeEverything(kDbgInstrumentationKey);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003079 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003080 break;
3081 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003082 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
3083 instrumentation->Deoptimize(request.Method());
3084 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003085 break;
3086 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003087 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
3088 instrumentation->Undeoptimize(request.Method());
3089 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003090 break;
3091 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003092 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003093 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003094 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003095}
3096
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003097void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003098 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003099 // Nothing to do.
3100 return;
3101 }
Brian Carlstrom306db812014-09-05 13:01:41 -07003102 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003103 RequestDeoptimizationLocked(req);
3104}
3105
3106void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003107 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003108 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003109 DCHECK_NE(req.InstrumentationEvent(), 0u);
3110 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003111 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003112 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003113 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003114 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003115 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003116 deoptimization_requests_.push_back(req);
3117 }
3118 *counter = *counter + 1;
3119 break;
3120 }
3121 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003122 DCHECK_NE(req.InstrumentationEvent(), 0u);
3123 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003124 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003125 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003126 *counter = *counter - 1;
3127 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003128 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003129 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003130 deoptimization_requests_.push_back(req);
3131 }
3132 break;
3133 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003134 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003135 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003136 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003137 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3138 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003139 deoptimization_requests_.push_back(req);
3140 }
3141 ++full_deoptimization_event_count_;
3142 break;
3143 }
3144 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003145 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003146 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003147 --full_deoptimization_event_count_;
3148 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003149 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3150 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003151 deoptimization_requests_.push_back(req);
3152 }
3153 break;
3154 }
3155 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003156 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003157 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003158 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003159 deoptimization_requests_.push_back(req);
3160 break;
3161 }
3162 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003163 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003164 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003165 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003166 deoptimization_requests_.push_back(req);
3167 break;
3168 }
3169 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003170 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003171 break;
3172 }
3173 }
3174}
3175
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003176void Dbg::ManageDeoptimization() {
3177 Thread* const self = Thread::Current();
3178 {
3179 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003180 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003181 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003182 return;
3183 }
3184 }
3185 CHECK_EQ(self->GetState(), kRunnable);
3186 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3187 // We need to suspend mutator threads first.
3188 Runtime* const runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07003189 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003190 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003191 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003192 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003193 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003194 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003195 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003196 ProcessDeoptimizationRequest(request);
3197 }
3198 deoptimization_requests_.clear();
3199 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003200 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3201 runtime->GetThreadList()->ResumeAll();
3202 self->TransitionFromSuspendedToRunnable();
3203}
3204
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003205static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3206 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003207 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003208 if (code_item == nullptr) {
3209 // TODO We should not be asked to watch location in a native or abstract method so the code item
3210 // should never be null. We could just check we never encounter this case.
3211 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003212 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003213 // Note: method verifier may cause thread suspension.
3214 self->AssertThreadSuspensionIsAllowable();
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003215 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003216 mirror::Class* declaring_class = m->GetDeclaringClass();
3217 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3218 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003219 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Ian Rogers7b078e82014-09-10 14:44:24 -07003220 verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003221 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method,
Mathieu Chartier4306ef82014-12-19 18:41:47 -08003222 m->GetAccessFlags(), false, true, false, true);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003223 // Note: we don't need to verify the method.
3224 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3225}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003226
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003227static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003228 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003229 for (Breakpoint& breakpoint : gBreakpoints) {
3230 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003231 return &breakpoint;
3232 }
3233 }
3234 return nullptr;
3235}
3236
Mathieu Chartierd8565452015-03-26 09:41:50 -07003237bool Dbg::MethodHasAnyBreakpoints(mirror::ArtMethod* method) {
3238 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
3239 return FindFirstBreakpointForMethod(method) != nullptr;
3240}
3241
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003242// Sanity checks all existing breakpoints on the same method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003243static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m,
3244 DeoptimizationRequest::Kind deoptimization_kind)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003245 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003246 for (const Breakpoint& breakpoint : gBreakpoints) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003247 if (breakpoint.Method() == m) {
3248 CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind());
3249 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003250 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003251 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
3252 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003253 // We should have deoptimized everything but not "selectively" deoptimized this method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003254 CHECK(instrumentation->AreAllMethodsDeoptimized());
3255 CHECK(!instrumentation->IsDeoptimized(m));
3256 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003257 // We should have "selectively" deoptimized this method.
3258 // Note: while we have not deoptimized everything for this method, we may have done it for
3259 // another event.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003260 CHECK(instrumentation->IsDeoptimized(m));
3261 } else {
3262 // This method does not require deoptimization.
3263 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3264 CHECK(!instrumentation->IsDeoptimized(m));
3265 }
3266}
3267
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003268// Returns the deoptimization kind required to set a breakpoint in a method.
3269// If a breakpoint has already been set, we also return the first breakpoint
3270// through the given 'existing_brkpt' pointer.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003271static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self,
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003272 mirror::ArtMethod* m,
3273 const Breakpoint** existing_brkpt)
Sebastien Hertzf3928792014-11-17 19:00:37 +01003274 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
3275 if (!Dbg::RequiresDeoptimization()) {
3276 // We already run in interpreter-only mode so we don't need to deoptimize anything.
3277 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method "
3278 << PrettyMethod(m);
3279 return DeoptimizationRequest::kNothing;
3280 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003281 const Breakpoint* first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003282 {
3283 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003284 first_breakpoint = FindFirstBreakpointForMethod(m);
3285 *existing_brkpt = first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003286 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003287
3288 if (first_breakpoint == nullptr) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003289 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3290 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3291 // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension.
3292 // Therefore we must not hold any lock when we call it.
3293 bool need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3294 if (need_full_deoptimization) {
3295 VLOG(jdwp) << "Need full deoptimization because of possible inlining of method "
3296 << PrettyMethod(m);
3297 return DeoptimizationRequest::kFullDeoptimization;
3298 } else {
3299 // We don't need to deoptimize if the method has not been compiled.
3300 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
3301 const bool is_compiled = class_linker->GetOatMethodQuickCodeFor(m) != nullptr;
3302 if (is_compiled) {
Sebastien Hertz6963e442014-11-26 22:11:27 +01003303 // If the method may be called through its direct code pointer (without loading
3304 // its updated entrypoint), we need full deoptimization to not miss the breakpoint.
3305 if (class_linker->MayBeCalledWithDirectCodePointer(m)) {
3306 VLOG(jdwp) << "Need full deoptimization because of possible direct code call "
3307 << "into image for compiled method " << PrettyMethod(m);
3308 return DeoptimizationRequest::kFullDeoptimization;
3309 } else {
3310 VLOG(jdwp) << "Need selective deoptimization for compiled method " << PrettyMethod(m);
3311 return DeoptimizationRequest::kSelectiveDeoptimization;
3312 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003313 } else {
3314 // Method is not compiled: we don't need to deoptimize.
3315 VLOG(jdwp) << "No need for deoptimization for non-compiled method " << PrettyMethod(m);
3316 return DeoptimizationRequest::kNothing;
3317 }
3318 }
3319 } else {
3320 // There is at least one breakpoint for this method: we don't need to deoptimize.
3321 // Let's check that all breakpoints are configured the same way for deoptimization.
3322 VLOG(jdwp) << "Breakpoint already set: no deoptimization is required";
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003323 DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003324 if (kIsDebugBuild) {
3325 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3326 SanityCheckExistingBreakpoints(m, deoptimization_kind);
3327 }
3328 return DeoptimizationRequest::kNothing;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003329 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003330}
3331
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003332// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3333// request if we need to deoptimize.
3334void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3335 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003336 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003337 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003338
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003339 const Breakpoint* existing_breakpoint = nullptr;
3340 const DeoptimizationRequest::Kind deoptimization_kind =
3341 GetRequiredDeoptimizationKind(self, m, &existing_breakpoint);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003342 req->SetKind(deoptimization_kind);
3343 if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
3344 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003345 } else {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003346 CHECK(deoptimization_kind == DeoptimizationRequest::kNothing ||
3347 deoptimization_kind == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003348 req->SetMethod(nullptr);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003349 }
3350
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003351 {
3352 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003353 // If there is at least one existing breakpoint on the same method, the new breakpoint
3354 // must have the same deoptimization kind than the existing breakpoint(s).
3355 DeoptimizationRequest::Kind breakpoint_deoptimization_kind;
3356 if (existing_breakpoint != nullptr) {
3357 breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind();
3358 } else {
3359 breakpoint_deoptimization_kind = deoptimization_kind;
3360 }
3361 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind));
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003362 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3363 << gBreakpoints[gBreakpoints.size() - 1];
3364 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003365}
3366
3367// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3368// request if we need to undeoptimize.
3369void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003370 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003371 mirror::ArtMethod* m = FromMethodId(location->method_id);
3372 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003373 DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003374 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003375 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003376 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Sebastien Hertzf3928792014-11-17 19:00:37 +01003377 deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind();
3378 DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization,
3379 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003380 gBreakpoints.erase(gBreakpoints.begin() + i);
3381 break;
3382 }
3383 }
3384 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3385 if (existing_breakpoint == nullptr) {
3386 // There is no more breakpoint on this method: we need to undeoptimize.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003387 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003388 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003389 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3390 req->SetMethod(nullptr);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003391 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003392 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003393 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3394 req->SetMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003395 } else {
3396 // This method had no need for deoptimization: do nothing.
3397 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3398 req->SetKind(DeoptimizationRequest::kNothing);
3399 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003400 }
3401 } else {
3402 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003403 req->SetKind(DeoptimizationRequest::kNothing);
3404 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003405 if (kIsDebugBuild) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003406 SanityCheckExistingBreakpoints(m, deoptimization_kind);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003407 }
Elliott Hughes86964332012-02-15 19:37:42 -08003408 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003409}
3410
Daniel Mihalyieb076692014-08-22 17:33:31 +02003411bool Dbg::IsForcedInterpreterNeededForCallingImpl(Thread* thread, mirror::ArtMethod* m) {
3412 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3413 if (ssc == nullptr) {
3414 // If we are not single-stepping, then we don't have to force interpreter.
3415 return false;
3416 }
3417 if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) {
3418 // If we are in interpreter only mode, then we don't have to force interpreter.
3419 return false;
3420 }
3421
3422 if (!m->IsNative() && !m->IsProxyMethod()) {
3423 // If we want to step into a method, then we have to force interpreter on that call.
3424 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3425 return true;
3426 }
3427 }
3428 return false;
3429}
3430
3431bool Dbg::IsForcedInterpreterNeededForResolutionImpl(Thread* thread, mirror::ArtMethod* m) {
3432 instrumentation::Instrumentation* const instrumentation =
3433 Runtime::Current()->GetInstrumentation();
3434 // If we are in interpreter only mode, then we don't have to force interpreter.
3435 if (instrumentation->InterpretOnly()) {
3436 return false;
3437 }
3438 // We can only interpret pure Java method.
3439 if (m->IsNative() || m->IsProxyMethod()) {
3440 return false;
3441 }
3442 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3443 if (ssc != nullptr) {
3444 // If we want to step into a method, then we have to force interpreter on that call.
3445 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3446 return true;
3447 }
3448 // If we are stepping out from a static initializer, by issuing a step
3449 // in or step over, that was implicitly invoked by calling a static method,
3450 // then we need to step into that method. Having a lower stack depth than
3451 // the one the single step control has indicates that the step originates
3452 // from the static initializer.
3453 if (ssc->GetStepDepth() != JDWP::SD_OUT &&
3454 ssc->GetStackDepth() > GetStackDepth(thread)) {
3455 return true;
3456 }
3457 }
3458 // There are cases where we have to force interpreter on deoptimized methods,
3459 // because in some cases the call will not be performed by invoking an entry
3460 // point that has been replaced by the deoptimization, but instead by directly
3461 // invoking the compiled code of the method, for example.
3462 return instrumentation->IsDeoptimized(m);
3463}
3464
3465bool Dbg::IsForcedInstrumentationNeededForResolutionImpl(Thread* thread, mirror::ArtMethod* m) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003466 // The upcall can be null and in that case we don't need to do anything.
Daniel Mihalyieb076692014-08-22 17:33:31 +02003467 if (m == nullptr) {
3468 return false;
3469 }
3470 instrumentation::Instrumentation* const instrumentation =
3471 Runtime::Current()->GetInstrumentation();
3472 // If we are in interpreter only mode, then we don't have to force interpreter.
3473 if (instrumentation->InterpretOnly()) {
3474 return false;
3475 }
3476 // We can only interpret pure Java method.
3477 if (m->IsNative() || m->IsProxyMethod()) {
3478 return false;
3479 }
3480 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3481 if (ssc != nullptr) {
3482 // If we are stepping out from a static initializer, by issuing a step
3483 // out, that was implicitly invoked by calling a static method, then we
3484 // need to step into the caller of that method. Having a lower stack
3485 // depth than the one the single step control has indicates that the
3486 // step originates from the static initializer.
3487 if (ssc->GetStepDepth() == JDWP::SD_OUT &&
3488 ssc->GetStackDepth() > GetStackDepth(thread)) {
3489 return true;
3490 }
3491 }
3492 // If we are returning from a static intializer, that was implicitly
3493 // invoked by calling a static method and the caller is deoptimized,
3494 // then we have to deoptimize the stack without forcing interpreter
3495 // on the static method that was called originally. This problem can
3496 // be solved easily by forcing instrumentation on the called method,
3497 // because the instrumentation exit hook will recognise the need of
3498 // stack deoptimization by calling IsForcedInterpreterNeededForUpcall.
3499 return instrumentation->IsDeoptimized(m);
3500}
3501
3502bool Dbg::IsForcedInterpreterNeededForUpcallImpl(Thread* thread, mirror::ArtMethod* m) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003503 // The upcall can be null and in that case we don't need to do anything.
Daniel Mihalyieb076692014-08-22 17:33:31 +02003504 if (m == nullptr) {
3505 return false;
3506 }
3507 instrumentation::Instrumentation* const instrumentation =
3508 Runtime::Current()->GetInstrumentation();
3509 // If we are in interpreter only mode, then we don't have to force interpreter.
3510 if (instrumentation->InterpretOnly()) {
3511 return false;
3512 }
3513 // We can only interpret pure Java method.
3514 if (m->IsNative() || m->IsProxyMethod()) {
3515 return false;
3516 }
3517 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3518 if (ssc != nullptr) {
3519 // The debugger is not interested in what is happening under the level
3520 // of the step, thus we only force interpreter when we are not below of
3521 // the step.
3522 if (ssc->GetStackDepth() >= GetStackDepth(thread)) {
3523 return true;
3524 }
3525 }
3526 // We have to require stack deoptimization if the upcall is deoptimized.
3527 return instrumentation->IsDeoptimized(m);
3528}
3529
Jeff Hao449db332013-04-12 18:30:52 -07003530// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3531// cause suspension if the thread is the current thread.
3532class ScopedThreadSuspension {
3533 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003534 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003535 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003536 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003537 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003538 error_(JDWP::ERR_NONE),
3539 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003540 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003541 ScopedObjectAccessUnchecked soa(self);
Sebastien Hertz69206392015-04-07 15:54:25 +02003542 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003543 if (error_ == JDWP::ERR_NONE) {
3544 if (thread_ == soa.Self()) {
3545 self_suspend_ = true;
3546 } else {
3547 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Sebastien Hertz6995c602014-09-09 12:10:13 +02003548 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003549 bool timed_out;
Ian Rogers4ad5cd32014-11-11 23:08:07 -08003550 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3551 Thread* suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true,
3552 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07003553 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003554 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003555 // Thread terminated from under us while suspending.
3556 error_ = JDWP::ERR_INVALID_THREAD;
3557 } else {
3558 CHECK_EQ(suspended_thread, thread_);
3559 other_suspend_ = true;
3560 }
3561 }
3562 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003563 }
Elliott Hughes86964332012-02-15 19:37:42 -08003564
Jeff Hao449db332013-04-12 18:30:52 -07003565 Thread* GetThread() const {
3566 return thread_;
3567 }
3568
3569 JDWP::JdwpError GetError() const {
3570 return error_;
3571 }
3572
3573 ~ScopedThreadSuspension() {
3574 if (other_suspend_) {
3575 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3576 }
3577 }
3578
3579 private:
3580 Thread* thread_;
3581 JDWP::JdwpError error_;
3582 bool self_suspend_;
3583 bool other_suspend_;
3584};
3585
3586JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3587 JDWP::JdwpStepDepth step_depth) {
3588 Thread* self = Thread::Current();
3589 ScopedThreadSuspension sts(self, thread_id);
3590 if (sts.GetError() != JDWP::ERR_NONE) {
3591 return sts.GetError();
3592 }
3593
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003594 // Work out what ArtMethod* we're in, the current line number, and how deep the stack currently
Elliott Hughes2435a572012-02-17 16:07:41 -08003595 // is for step-out.
Ian Rogers0399dde2012-06-06 17:09:28 -07003596 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003597 explicit SingleStepStackVisitor(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01003598 : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
3599 stack_depth(0),
3600 method(nullptr),
3601 line_number(-1) {}
Ian Rogersca190662012-06-26 15:45:57 -07003602
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003603 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3604 // annotalysis.
3605 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003606 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003607 if (!m->IsRuntimeMethod()) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003608 ++stack_depth;
3609 if (method == nullptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003610 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003611 method = m;
Ian Rogersc0542af2014-09-03 16:16:56 -07003612 if (dex_cache != nullptr) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003613 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003614 line_number = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003615 }
Elliott Hughes86964332012-02-15 19:37:42 -08003616 }
3617 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003618 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003619 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003620
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003621 int stack_depth;
3622 mirror::ArtMethod* method;
3623 int32_t line_number;
Elliott Hughes86964332012-02-15 19:37:42 -08003624 };
Jeff Hao449db332013-04-12 18:30:52 -07003625
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003626 Thread* const thread = sts.GetThread();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003627 SingleStepStackVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07003628 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003629
Elliott Hughes2435a572012-02-17 16:07:41 -08003630 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
Elliott Hughes2435a572012-02-17 16:07:41 -08003631 struct DebugCallbackContext {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003632 explicit DebugCallbackContext(SingleStepControl* single_step_control_cb,
3633 int32_t line_number_cb, const DexFile::CodeItem* code_item)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003634 : single_step_control_(single_step_control_cb), line_number_(line_number_cb),
3635 code_item_(code_item), last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003636 }
3637
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003638 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number_cb) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003639 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003640 if (static_cast<int32_t>(line_number_cb) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003641 if (!context->last_pc_valid) {
3642 // Everything from this address until the next line change is ours.
3643 context->last_pc = address;
3644 context->last_pc_valid = true;
3645 }
3646 // Otherwise, if we're already in a valid range for this line,
3647 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003648 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003649 // Add everything from the last entry up until here to the set
3650 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003651 context->single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003652 }
3653 context->last_pc_valid = false;
3654 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003655 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003656 }
3657
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003658 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003659 // If the line number was the last in the position table...
3660 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003661 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003662 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003663 single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003664 }
3665 }
3666 }
3667
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003668 SingleStepControl* const single_step_control_;
3669 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003670 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003671 bool last_pc_valid;
3672 uint32_t last_pc;
3673 };
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003674
3675 // Allocate single step.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003676 SingleStepControl* single_step_control =
3677 new (std::nothrow) SingleStepControl(step_size, step_depth,
3678 visitor.stack_depth, visitor.method);
3679 if (single_step_control == nullptr) {
3680 LOG(ERROR) << "Failed to allocate SingleStepControl";
3681 return JDWP::ERR_OUT_OF_MEMORY;
3682 }
3683
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003684 mirror::ArtMethod* m = single_step_control->GetMethod();
3685 const int32_t line_number = visitor.line_number;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003686 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003687 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003688 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003689 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07003690 DebugCallbackContext::Callback, nullptr, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003691 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003692
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003693 // Activate single-step in the thread.
3694 thread->ActivateSingleStepControl(single_step_control);
Elliott Hughes86964332012-02-15 19:37:42 -08003695
Elliott Hughes2435a572012-02-17 16:07:41 -08003696 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003697 VLOG(jdwp) << "Single-step thread: " << *thread;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003698 VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize();
3699 VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth();
3700 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->GetMethod());
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003701 VLOG(jdwp) << "Single-step current line: " << line_number;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003702 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth();
Elliott Hughes2435a572012-02-17 16:07:41 -08003703 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003704 for (uint32_t dex_pc : single_step_control->GetDexPcs()) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003705 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003706 }
3707 }
3708
3709 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003710}
3711
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003712void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3713 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07003714 JDWP::JdwpError error;
3715 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003716 if (error == JDWP::ERR_NONE) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003717 thread->DeactivateSingleStepControl();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003718 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003719}
3720
Elliott Hughes45651fd2012-02-21 15:48:20 -08003721static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3722 switch (tag) {
3723 default:
3724 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
Ian Rogersfc787ec2014-10-09 21:56:44 -07003725 UNREACHABLE();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003726
3727 // Primitives.
3728 case JDWP::JT_BYTE: return 'B';
3729 case JDWP::JT_CHAR: return 'C';
3730 case JDWP::JT_FLOAT: return 'F';
3731 case JDWP::JT_DOUBLE: return 'D';
3732 case JDWP::JT_INT: return 'I';
3733 case JDWP::JT_LONG: return 'J';
3734 case JDWP::JT_SHORT: return 'S';
3735 case JDWP::JT_VOID: return 'V';
3736 case JDWP::JT_BOOLEAN: return 'Z';
3737
3738 // Reference types.
3739 case JDWP::JT_ARRAY:
3740 case JDWP::JT_OBJECT:
3741 case JDWP::JT_STRING:
3742 case JDWP::JT_THREAD:
3743 case JDWP::JT_THREAD_GROUP:
3744 case JDWP::JT_CLASS_LOADER:
3745 case JDWP::JT_CLASS_OBJECT:
3746 return 'L';
3747 }
3748}
3749
Elliott Hughes88d63092013-01-09 09:55:54 -08003750JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3751 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003752 uint32_t arg_count, uint64_t* arg_values,
3753 JDWP::JdwpTag* arg_types, uint32_t options,
3754 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3755 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003756 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3757
Ian Rogersc0542af2014-09-03 16:16:56 -07003758 Thread* targetThread = nullptr;
Sebastien Hertz1558b572015-02-25 15:05:59 +01003759 std::unique_ptr<DebugInvokeReq> req;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003760 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003761 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003762 ScopedObjectAccessUnchecked soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07003763 JDWP::JdwpError error;
3764 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003765 if (error != JDWP::ERR_NONE) {
3766 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3767 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003768 }
Sebastien Hertz1558b572015-02-25 15:05:59 +01003769 if (targetThread->GetInvokeReq() != nullptr) {
3770 // Thread is already invoking a method on behalf of the debugger.
3771 LOG(ERROR) << "InvokeMethod request for thread already invoking a method: " << *targetThread;
3772 return JDWP::ERR_ALREADY_INVOKING;
3773 }
3774 if (!targetThread->IsReadyForDebugInvoke()) {
3775 // Thread is not suspended by an event so it cannot invoke a method.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003776 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3777 return JDWP::ERR_INVALID_THREAD;
3778 }
3779
3780 /*
3781 * We currently have a bug where we don't successfully resume the
3782 * target thread if the suspend count is too deep. We're expected to
3783 * require one "resume" for each "suspend", but when asked to execute
3784 * a method we have to resume fully and then re-suspend it back to the
3785 * same level. (The easiest way to cause this is to type "suspend"
3786 * multiple times in jdb.)
3787 *
3788 * It's unclear what this means when the event specifies "resume all"
3789 * and some threads are suspended more deeply than others. This is
3790 * a rare problem, so for now we just prevent it from hanging forever
3791 * by rejecting the method invocation request. Without this, we will
3792 * be stuck waiting on a suspended thread.
3793 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003794 int suspend_count;
3795 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003796 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003797 suspend_count = targetThread->GetSuspendCount();
3798 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003799 if (suspend_count > 1) {
3800 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003801 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003802 }
3803
Ian Rogersc0542af2014-09-03 16:16:56 -07003804 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3805 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003806 return JDWP::ERR_INVALID_OBJECT;
3807 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003808
Sebastien Hertz1558b572015-02-25 15:05:59 +01003809 gRegistry->Get<mirror::Object*>(thread_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07003810 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003811 return JDWP::ERR_INVALID_OBJECT;
3812 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003813
Ian Rogersc0542af2014-09-03 16:16:56 -07003814 mirror::Class* c = DecodeClass(class_id, &error);
3815 if (c == nullptr) {
3816 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003817 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003818
Brian Carlstromea46f952013-07-30 01:26:50 -07003819 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003820 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003821 return JDWP::ERR_INVALID_METHODID;
3822 }
3823 if (m->IsStatic()) {
3824 if (m->GetDeclaringClass() != c) {
3825 return JDWP::ERR_INVALID_METHODID;
3826 }
3827 } else {
3828 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3829 return JDWP::ERR_INVALID_METHODID;
3830 }
3831 }
3832
3833 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003834 uint32_t shorty_len = 0;
3835 const char* shorty = m->GetShorty(&shorty_len);
3836 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003837 return JDWP::ERR_ILLEGAL_ARGUMENT;
3838 }
Elliott Hughes09201632013-04-15 15:50:07 -07003839
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003840 {
3841 StackHandleScope<3> hs(soa.Self());
Ian Rogersa0485602014-12-02 15:48:04 -08003842 HandleWrapper<mirror::ArtMethod> h_m(hs.NewHandleWrapper(&m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003843 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3844 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3845 const DexFile::TypeList* types = m->GetParameterTypeList();
3846 for (size_t i = 0; i < arg_count; ++i) {
3847 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003848 return JDWP::ERR_ILLEGAL_ARGUMENT;
3849 }
3850
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003851 if (shorty[i + 1] == 'L') {
3852 // Did we really get an argument of an appropriate reference type?
Ian Rogersa0485602014-12-02 15:48:04 -08003853 mirror::Class* parameter_type =
3854 h_m->GetClassFromTypeIndex(types->GetTypeItem(i).type_idx_, true);
Ian Rogersc0542af2014-09-03 16:16:56 -07003855 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
3856 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003857 return JDWP::ERR_INVALID_OBJECT;
3858 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003859 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003860 return JDWP::ERR_ILLEGAL_ARGUMENT;
3861 }
3862
3863 // Turn the on-the-wire ObjectId into a jobject.
3864 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3865 v.l = gRegistry->GetJObject(arg_values[i]);
3866 }
Elliott Hughes09201632013-04-15 15:50:07 -07003867 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003868 }
3869
Sebastien Hertz1558b572015-02-25 15:05:59 +01003870 // Allocates a DebugInvokeReq.
3871 req.reset(new (std::nothrow) DebugInvokeReq(receiver, c, m, options, arg_values, arg_count));
3872 if (req.get() == nullptr) {
3873 LOG(ERROR) << "Failed to allocate DebugInvokeReq";
3874 return JDWP::ERR_OUT_OF_MEMORY;
3875 }
3876
3877 // Attach the DebugInvokeReq to the target thread so it executes the method when
3878 // it is resumed. Once the invocation completes, it will detach it and signal us
3879 // before suspending itself.
3880 targetThread->SetDebugInvokeReq(req.get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003881 }
3882
3883 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3884 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3885 // call, and it's unwise to hold it during WaitForSuspend.
3886
3887 {
3888 /*
3889 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003890 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003891 * run out of memory. It's also a good idea to change it before locking
3892 * the invokeReq mutex, although that should never be held for long.
3893 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003894 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003895
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003896 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003897 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003898 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003899
3900 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003901 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003902 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003903 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003904 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003905 thread_list->Resume(targetThread, true);
3906 }
3907
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003908 // The target thread is resumed but needs the JDWP token we're holding.
3909 // We release it now and will acquire it again when the invocation is
3910 // complete and the target thread suspends itself.
3911 gJdwpState->ReleaseJdwpTokenForCommand();
3912
Elliott Hughesd07986f2011-12-06 18:27:45 -08003913 // Wait for the request to finish executing.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003914 while (targetThread->GetInvokeReq() != nullptr) {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003915 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003916 }
3917 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003918 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003919
3920 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003921 SuspendThread(thread_id, false /* request_suspension */);
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003922
3923 // Now the thread is suspended again, we can re-acquire the JDWP token.
3924 gJdwpState->AcquireJdwpTokenForCommand();
3925
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003926 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003927 }
3928
3929 /*
3930 * Suspend the threads. We waited for the target thread to suspend
3931 * itself, so all we need to do is suspend the others.
3932 *
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003933 * The SuspendAllForDebugger() call will double-suspend the event thread,
Elliott Hughesd07986f2011-12-06 18:27:45 -08003934 * so we want to resume the target thread once to keep the books straight.
3935 */
3936 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003937 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003938 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003939 thread_list->SuspendAllForDebugger();
3940 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003941 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003942 thread_list->Resume(targetThread, true);
3943 }
3944
3945 // Copy the result.
3946 *pResultTag = req->result_tag;
Sebastien Hertz1558b572015-02-25 15:05:59 +01003947 *pResultValue = req->result_value;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003948 *pExceptionId = req->exception;
3949 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003950}
3951
3952void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003953 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003954
Elliott Hughes81ff3182012-03-23 20:35:56 -07003955 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003956 // to preserve that across the method invocation.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003957 StackHandleScope<4> hs(soa.Self());
3958 auto old_exception = hs.NewHandle<mirror::Throwable>(soa.Self()->GetException());
3959 soa.Self()->ClearException();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003960
3961 // Translate the method through the vtable, unless the debugger wants to suppress it.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003962 MutableHandle<mirror::ArtMethod> m(hs.NewHandle(pReq->method.Read()));
3963 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) {
3964 mirror::ArtMethod* actual_method = pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m.Get());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003965 if (actual_method != m.Get()) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01003966 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get())
3967 << " to " << PrettyMethod(actual_method);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003968 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003969 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003970 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003971 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertz1558b572015-02-25 15:05:59 +01003972 << " receiver=" << pReq->receiver.Read()
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003973 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003974 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003975
3976 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3977
Jeff Hao39b6c242015-05-19 20:30:23 -07003978 ScopedLocalRef<jobject> ref(soa.Env(), soa.AddLocalReference<jobject>(pReq->receiver.Read()));
3979 JValue result = InvokeWithJValues(soa, ref.get(), soa.EncodeMethod(m.Get()),
Sebastien Hertz1558b572015-02-25 15:05:59 +01003980 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003981
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003982 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Sebastien Hertz1558b572015-02-25 15:05:59 +01003983 const bool is_object_result = (pReq->result_tag == JDWP::JT_OBJECT);
3984 Handle<mirror::Object> object_result = hs.NewHandle(is_object_result ? result.GetL() : nullptr);
3985 Handle<mirror::Throwable> exception = hs.NewHandle(soa.Self()->GetException());
3986 soa.Self()->ClearException();
Sebastien Hertz261bc042015-04-08 09:36:07 +02003987 pReq->exception = gRegistry->Add(exception);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003988 if (pReq->exception != 0) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01003989 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get()
3990 << " " << exception->Dump();
3991 pReq->result_value = 0;
3992 } else if (is_object_result) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003993 /* if no exception thrown, examine object result more closely */
Sebastien Hertz1558b572015-02-25 15:05:59 +01003994 JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003995 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003996 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003997 pReq->result_tag = new_tag;
3998 }
3999
Sebastien Hertz1558b572015-02-25 15:05:59 +01004000 // Register the object in the registry and reference its ObjectId. This ensures
4001 // GC safety and prevents from accessing stale reference if the object is moved.
4002 pReq->result_value = gRegistry->Add(object_result.Get());
4003 } else {
4004 // Primitive result.
4005 DCHECK(IsPrimitiveTag(pReq->result_tag));
4006 pReq->result_value = result.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08004007 }
4008
Ian Rogersc0542af2014-09-03 16:16:56 -07004009 if (old_exception.Get() != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +00004010 soa.Self()->SetException(old_exception.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08004011 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004012}
4013
Elliott Hughesd07986f2011-12-06 18:27:45 -08004014/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004015 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004016 * need to process each, accumulate the replies, and ship the whole thing
4017 * back.
4018 *
4019 * Returns "true" if we have a reply. The reply buffer is newly allocated,
4020 * and includes the chunk type/length, followed by the data.
4021 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08004022 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004023 * chunk. If this becomes inconvenient we will need to adapt.
4024 */
Ian Rogersc0542af2014-09-03 16:16:56 -07004025bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004026 Thread* self = Thread::Current();
4027 JNIEnv* env = self->GetJniEnv();
4028
Ian Rogersc0542af2014-09-03 16:16:56 -07004029 uint32_t type = request->ReadUnsigned32("type");
4030 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004031
4032 // Create a byte[] corresponding to 'request'.
Ian Rogersc0542af2014-09-03 16:16:56 -07004033 size_t request_length = request->size();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004034 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Ian Rogersc0542af2014-09-03 16:16:56 -07004035 if (dataArray.get() == nullptr) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004036 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004037 env->ExceptionClear();
4038 return false;
4039 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004040 env->SetByteArrayRegion(dataArray.get(), 0, request_length,
4041 reinterpret_cast<const jbyte*>(request->data()));
4042 request->Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004043
4044 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004045 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004046 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08004047 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004048 return false;
4049 }
4050
4051 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07004052 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4053 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004054 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004055 if (env->ExceptionCheck()) {
4056 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
4057 env->ExceptionDescribe();
4058 env->ExceptionClear();
4059 return false;
4060 }
4061
Ian Rogersc0542af2014-09-03 16:16:56 -07004062 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004063 return false;
4064 }
4065
4066 /*
4067 * Pull the pieces out of the chunk. We copy the results into a
4068 * newly-allocated buffer that the caller can free. We don't want to
4069 * continue using the Chunk object because nothing has a reference to it.
4070 *
4071 * We could avoid this by returning type/data/offset/length and having
4072 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07004073 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004074 * if we have responses for multiple chunks.
4075 *
4076 * So we're pretty much stuck with copying data around multiple times.
4077 */
Elliott Hugheseac76672012-05-24 21:56:51 -07004078 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 -08004079 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07004080 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07004081 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004082
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004083 VLOG(jdwp) << StringPrintf("DDM reply: type=0x%08x data=%p offset=%d length=%d", type, replyData.get(), offset, length);
Ian Rogersc0542af2014-09-03 16:16:56 -07004084 if (length == 0 || replyData.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004085 return false;
4086 }
4087
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004088 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004089 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
Ian Rogersc0542af2014-09-03 16:16:56 -07004090 if (reply == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004091 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
4092 return false;
4093 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07004094 JDWP::Set4BE(reply + 0, type);
4095 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004096 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004097
4098 *pReplyBuf = reply;
4099 *pReplyLen = length + kChunkHdrLen;
4100
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004101 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004102 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004103}
4104
Elliott Hughesa2155262011-11-16 16:26:58 -08004105void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004106 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07004107
4108 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07004109 if (self->GetState() != kRunnable) {
4110 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
4111 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07004112 }
4113
4114 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07004115 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07004116 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4117 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
4118 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07004119 if (env->ExceptionCheck()) {
4120 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
4121 env->ExceptionDescribe();
4122 env->ExceptionClear();
4123 }
4124}
4125
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004126void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004127 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004128}
4129
4130void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004131 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07004132 gDdmThreadNotification = false;
4133}
4134
4135/*
Elliott Hughes82188472011-11-07 18:11:48 -08004136 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07004137 *
4138 * Because we broadcast the full set of threads when the notifications are
4139 * first enabled, it's possible for "thread" to be actively executing.
4140 */
Elliott Hughes82188472011-11-07 18:11:48 -08004141void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004142 if (!gDdmThreadNotification) {
4143 return;
4144 }
4145
Elliott Hughes82188472011-11-07 18:11:48 -08004146 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004147 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004148 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07004149 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08004150 } else {
4151 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004152 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004153 StackHandleScope<1> hs(soa.Self());
4154 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
Ian Rogersc0542af2014-09-03 16:16:56 -07004155 size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0;
Jeff Hao848f70a2014-01-15 13:49:50 -08004156 const jchar* chars = (name.Get() != nullptr) ? name->GetValue() : nullptr;
Elliott Hughes82188472011-11-07 18:11:48 -08004157
Elliott Hughes21f32d72011-11-09 17:44:13 -08004158 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004159 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004160 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08004161 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
4162 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07004163 }
4164}
4165
Elliott Hughes47fce012011-10-25 18:37:19 -07004166void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004167 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07004168 gDdmThreadNotification = enable;
4169 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004170 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
4171 // see a suspension in progress and block until that ends. They then post their own start
4172 // notification.
4173 SuspendVM();
4174 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07004175 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004176 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004177 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004178 threads = Runtime::Current()->GetThreadList()->GetList();
4179 }
4180 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004181 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07004182 for (Thread* thread : threads) {
4183 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004184 }
4185 }
4186 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07004187 }
4188}
4189
Elliott Hughesa2155262011-11-16 16:26:58 -08004190void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07004191 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02004192 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004193 }
Elliott Hughes82188472011-11-07 18:11:48 -08004194 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07004195}
4196
4197void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004198 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004199}
4200
4201void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004202 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004203}
4204
Elliott Hughes82188472011-11-07 18:11:48 -08004205void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004206 CHECK(buf != nullptr);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004207 iovec vec[1];
4208 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
4209 vec[0].iov_len = byte_count;
4210 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004211}
4212
Elliott Hughes21f32d72011-11-09 17:44:13 -08004213void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
4214 DdmSendChunk(type, bytes.size(), &bytes[0]);
4215}
4216
Brian Carlstromf5293522013-07-19 00:24:00 -07004217void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004218 if (gJdwpState == nullptr) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004219 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07004220 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08004221 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004222 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004223}
4224
Mathieu Chartierad466ad2015-01-08 16:28:08 -08004225JDWP::JdwpState* Dbg::GetJdwpState() {
4226 return gJdwpState;
4227}
4228
Elliott Hughes767a1472011-10-26 18:49:02 -07004229int Dbg::DdmHandleHpifChunk(HpifWhen when) {
4230 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07004231 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07004232 return true;
4233 }
4234
4235 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4236 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4237 return false;
4238 }
4239
4240 gDdmHpifWhen = when;
4241 return true;
4242}
4243
4244bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4245 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4246 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4247 return false;
4248 }
4249
4250 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4251 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4252 return false;
4253 }
4254
4255 if (native) {
4256 gDdmNhsgWhen = when;
4257 gDdmNhsgWhat = what;
4258 } else {
4259 gDdmHpsgWhen = when;
4260 gDdmHpsgWhat = what;
4261 }
4262 return true;
4263}
4264
Elliott Hughes7162ad92011-10-27 14:08:42 -07004265void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4266 // If there's a one-shot 'when', reset it.
4267 if (reason == gDdmHpifWhen) {
4268 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4269 gDdmHpifWhen = HPIF_WHEN_NEVER;
4270 }
4271 }
4272
4273 /*
4274 * Chunk HPIF (client --> server)
4275 *
4276 * Heap Info. General information about the heap,
4277 * suitable for a summary display.
4278 *
4279 * [u4]: number of heaps
4280 *
4281 * For each heap:
4282 * [u4]: heap ID
4283 * [u8]: timestamp in ms since Unix epoch
4284 * [u1]: capture reason (same as 'when' value from server)
4285 * [u4]: max heap size in bytes (-Xmx)
4286 * [u4]: current heap size in bytes
4287 * [u4]: current number of bytes allocated
4288 * [u4]: current number of objects allocated
4289 */
4290 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004291 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004292 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004293 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004294 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004295 JDWP::Append8BE(bytes, MilliTime());
4296 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004297 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4298 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004299 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4300 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004301 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
4302 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07004303}
4304
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004305enum HpsgSolidity {
4306 SOLIDITY_FREE = 0,
4307 SOLIDITY_HARD = 1,
4308 SOLIDITY_SOFT = 2,
4309 SOLIDITY_WEAK = 3,
4310 SOLIDITY_PHANTOM = 4,
4311 SOLIDITY_FINALIZABLE = 5,
4312 SOLIDITY_SWEEP = 6,
4313};
4314
4315enum HpsgKind {
4316 KIND_OBJECT = 0,
4317 KIND_CLASS_OBJECT = 1,
4318 KIND_ARRAY_1 = 2,
4319 KIND_ARRAY_2 = 3,
4320 KIND_ARRAY_4 = 4,
4321 KIND_ARRAY_8 = 5,
4322 KIND_UNKNOWN = 6,
4323 KIND_NATIVE = 7,
4324};
4325
4326#define HPSG_PARTIAL (1<<7)
4327#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4328
Ian Rogers30fab402012-01-23 15:43:46 -08004329class HeapChunkContext {
4330 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004331 // Maximum chunk size. Obtain this from the formula:
4332 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4333 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004334 : buf_(16384 - 16),
4335 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004336 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004337 Reset();
4338 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004339 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004340 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004341 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004342 }
4343 }
4344
4345 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004346 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004347 Flush();
4348 }
4349 }
4350
Mathieu Chartier36dab362014-07-30 14:59:56 -07004351 void SetChunkOverhead(size_t chunk_overhead) {
4352 chunk_overhead_ = chunk_overhead;
4353 }
4354
4355 void ResetStartOfNextChunk() {
4356 startOfNextMemoryChunk_ = nullptr;
4357 }
4358
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004359 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004360 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004361 return;
4362 }
4363
4364 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004365 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4366 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004367
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004368 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4369 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004370 // [u4]: length of piece, in allocation units
4371 // 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 -08004372 pieceLenField_ = p_;
4373 JDWP::Write4BE(&p_, 0x55555555);
4374 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004375 }
4376
Ian Rogersb726dcb2012-09-05 08:57:23 -07004377 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004378 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004379 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4380 CHECK(needHeader_);
4381 return;
4382 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004383 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004384 CHECK_LE(&buf_[0], pieceLenField_);
4385 CHECK_LE(pieceLenField_, p_);
4386 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004387
Ian Rogers30fab402012-01-23 15:43:46 -08004388 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004389 Reset();
4390 }
4391
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004392 static void HeapChunkJavaCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004393 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4394 Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004395 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes);
4396 }
4397
4398 static void HeapChunkNativeCallback(void* start, void* end, size_t used_bytes, void* arg)
4399 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4400 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004401 }
4402
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004403 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004404 enum { ALLOCATION_UNIT_SIZE = 8 };
4405
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004406 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004407 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004408 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004409 totalAllocationUnits_ = 0;
4410 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004411 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004412 }
4413
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004414 bool IsNative() const {
4415 return type_ == CHUNK_TYPE("NHSG");
4416 }
4417
4418 // Returns true if the object is not an empty chunk.
4419 bool ProcessRecord(void* start, size_t used_bytes) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004420 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4421 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004422 if (used_bytes == 0) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004423 if (start == nullptr) {
4424 // Reset for start of new heap.
4425 startOfNextMemoryChunk_ = nullptr;
4426 Flush();
4427 }
4428 // Only process in use memory so that free region information
4429 // also includes dlmalloc book keeping.
4430 return false;
Elliott Hughesa2155262011-11-16 16:26:58 -08004431 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004432 if (startOfNextMemoryChunk_ != nullptr) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004433 // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because
4434 // of the use of mmaps, so don't report. If not free memory then start a new segment.
4435 bool flush = true;
4436 if (start > startOfNextMemoryChunk_) {
4437 const size_t kMaxFreeLen = 2 * kPageSize;
4438 void* free_start = startOfNextMemoryChunk_;
4439 void* free_end = start;
4440 const size_t free_len =
4441 reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start);
4442 if (!IsNative() || free_len < kMaxFreeLen) {
4443 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative());
4444 flush = false;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004445 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004446 }
4447 if (flush) {
4448 startOfNextMemoryChunk_ = nullptr;
4449 Flush();
4450 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004451 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004452 return true;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004453 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004454
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004455 void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes)
4456 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4457 if (ProcessRecord(start, used_bytes)) {
4458 uint8_t state = ExamineNativeObject(start);
4459 AppendChunk(state, start, used_bytes + chunk_overhead_, true /*is_native*/);
4460 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4461 }
4462 }
4463
4464 void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes)
4465 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
4466 if (ProcessRecord(start, used_bytes)) {
4467 // Determine the type of this chunk.
4468 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4469 // If it's the same, we should combine them.
4470 uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start));
4471 AppendChunk(state, start, used_bytes + chunk_overhead_, false /*is_native*/);
4472 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4473 }
4474 }
4475
4476 void AppendChunk(uint8_t state, void* ptr, size_t length, bool is_native)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004477 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004478 // Make sure there's enough room left in the buffer.
4479 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4480 // 17 bytes for any header.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004481 const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17;
4482 size_t byte_left = &buf_.back() - p_;
4483 if (byte_left < needed) {
4484 if (is_native) {
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004485 // Cannot trigger memory allocation while walking native heap.
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004486 return;
4487 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004488 Flush();
4489 }
4490
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004491 byte_left = &buf_.back() - p_;
4492 if (byte_left < needed) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004493 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4494 << needed << " bytes)";
4495 return;
4496 }
4497 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004498 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004499 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4500 totalAllocationUnits_ += length;
4501 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004502 *p_++ = state | HPSG_PARTIAL;
4503 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004504 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004505 }
Ian Rogers30fab402012-01-23 15:43:46 -08004506 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004507 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004508 }
4509
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004510 uint8_t ExamineNativeObject(const void* p) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4511 return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4512 }
4513
4514 uint8_t ExamineJavaObject(mirror::Object* o)
Ian Rogersef7d42f2014-01-06 12:55:46 -08004515 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004516 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004517 return HPSG_STATE(SOLIDITY_FREE, 0);
4518 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004519 // It's an allocated chunk. Figure out what it is.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004520 gc::Heap* heap = Runtime::Current()->GetHeap();
4521 if (!heap->IsLiveObjectLocked(o)) {
4522 LOG(ERROR) << "Invalid object in managed heap: " << o;
Elliott Hughesa2155262011-11-16 16:26:58 -08004523 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4524 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004525 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004526 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004527 // The object was probably just created but hasn't been initialized yet.
4528 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4529 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004530 if (!heap->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004531 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004532 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4533 }
Mathieu Chartierf26e1b32015-01-29 10:47:10 -08004534 if (c->GetClass() == nullptr) {
4535 LOG(ERROR) << "Null class of class " << c << " for object " << o;
4536 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4537 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004538 if (c->IsClassClass()) {
4539 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4540 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004541 if (c->IsArrayClass()) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004542 switch (c->GetComponentSize()) {
4543 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4544 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4545 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4546 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4547 }
4548 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004549 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4550 }
4551
Ian Rogers30fab402012-01-23 15:43:46 -08004552 std::vector<uint8_t> buf_;
4553 uint8_t* p_;
4554 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004555 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004556 size_t totalAllocationUnits_;
4557 uint32_t type_;
Ian Rogers30fab402012-01-23 15:43:46 -08004558 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004559 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004560
Elliott Hughesa2155262011-11-16 16:26:58 -08004561 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4562};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004563
Mathieu Chartier36dab362014-07-30 14:59:56 -07004564static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
4565 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
4566 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004567 HeapChunkContext::HeapChunkJavaCallback(
Mathieu Chartier36dab362014-07-30 14:59:56 -07004568 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4569}
4570
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004571void Dbg::DdmSendHeapSegments(bool native) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004572 Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen;
4573 Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004574 if (when == HPSG_WHEN_NEVER) {
4575 return;
4576 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004577 // Figure out what kind of chunks we'll be sending.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004578 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS)
4579 << static_cast<int>(what);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004580
4581 // First, send a heap start chunk.
4582 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004583 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004584 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004585 Thread* self = Thread::Current();
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004586 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004587
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004588 // Send a series of heap segment chunks.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004589 HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native);
Elliott Hughesa2155262011-11-16 16:26:58 -08004590 if (native) {
Ian Rogers872dd822014-10-30 11:19:14 -07004591#if defined(HAVE_ANDROID_OS) && defined(USE_DLMALLOC)
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004592 dlmalloc_inspect_all(HeapChunkContext::HeapChunkNativeCallback, &context);
4593 HeapChunkContext::HeapChunkNativeCallback(nullptr, nullptr, 0, &context); // Indicate end of a space.
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004594#else
4595 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4596#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004597 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004598 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004599 for (const auto& space : heap->GetContinuousSpaces()) {
4600 if (space->IsDlMallocSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004601 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004602 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4603 // allocation then the first sizeof(size_t) may belong to it.
4604 context.SetChunkOverhead(sizeof(size_t));
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004605 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004606 } else if (space->IsRosAllocSpace()) {
4607 context.SetChunkOverhead(0);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004608 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4609 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
4610 self->TransitionFromRunnableToSuspended(kSuspended);
4611 ThreadList* tl = Runtime::Current()->GetThreadList();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07004612 tl->SuspendAll(__FUNCTION__);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004613 {
4614 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004615 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004616 }
4617 tl->ResumeAll();
4618 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004619 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004620 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004621 context.SetChunkOverhead(0);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004622 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004623 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004624 } else if (space->IsRegionSpace()) {
4625 heap->IncrementDisableMovingGC(self);
4626 self->TransitionFromRunnableToSuspended(kSuspended);
4627 ThreadList* tl = Runtime::Current()->GetThreadList();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07004628 tl->SuspendAll(__FUNCTION__);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004629 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4630 context.SetChunkOverhead(0);
4631 space->AsRegionSpace()->Walk(BumpPointerSpaceCallback, &context);
4632 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
4633 tl->ResumeAll();
4634 self->TransitionFromSuspendedToRunnable();
4635 heap->DecrementDisableMovingGC(self);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004636 } else {
4637 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004638 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004639 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004640 }
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004641 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004642 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004643 context.SetChunkOverhead(0);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004644 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004645 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004646
4647 // Finally, send a heap end chunk.
4648 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004649}
4650
Elliott Hughesb1a58792013-07-11 18:10:58 -07004651static size_t GetAllocTrackerMax() {
4652#ifdef HAVE_ANDROID_OS
4653 // Check whether there's a system property overriding the number of records.
4654 const char* propertyName = "dalvik.vm.allocTrackerMax";
4655 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4656 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4657 char* end;
4658 size_t value = strtoul(allocRecordMaxString, &end, 10);
4659 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004660 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4661 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004662 return kDefaultNumAllocRecords;
4663 }
4664 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004665 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4666 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004667 return kDefaultNumAllocRecords;
4668 }
4669 return value;
4670 }
4671#endif
4672 return kDefaultNumAllocRecords;
4673}
4674
Brian Carlstrom306db812014-09-05 13:01:41 -07004675void Dbg::SetAllocTrackingEnabled(bool enable) {
4676 Thread* self = Thread::Current();
4677 if (enable) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004678 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004679 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4680 if (recent_allocation_records_ != nullptr) {
4681 return; // Already enabled, bail.
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004682 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004683 alloc_record_max_ = GetAllocTrackerMax();
4684 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4685 << kMaxAllocRecordStackDepth << " frames, taking "
4686 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4687 DCHECK_EQ(alloc_record_head_, 0U);
4688 DCHECK_EQ(alloc_record_count_, 0U);
4689 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4690 CHECK(recent_allocation_records_ != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004691 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004692 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004693 } else {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004694 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004695 ScopedObjectAccess soa(self); // For type_cache_.Clear();
4696 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4697 if (recent_allocation_records_ == nullptr) {
4698 return; // Already disabled, bail.
4699 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07004700 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004701 delete[] recent_allocation_records_;
Ian Rogersc0542af2014-09-03 16:16:56 -07004702 recent_allocation_records_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -07004703 alloc_record_head_ = 0;
4704 alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004705 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004706 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004707 // If an allocation comes in before we uninstrument, we will safely drop it on the floor.
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004708 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004709 }
4710}
4711
Ian Rogers0399dde2012-06-06 17:09:28 -07004712struct AllocRecordStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004713 AllocRecordStackVisitor(Thread* thread, AllocRecord* record_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004714 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01004715 : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
4716 record(record_in),
4717 depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004718
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004719 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4720 // annotalysis.
4721 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004722 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004723 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004724 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004725 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004726 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004727 record->StackElement(depth)->SetMethod(m);
4728 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004729 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004730 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004731 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004732 }
4733
4734 ~AllocRecordStackVisitor() {
4735 // Clear out any unused stack trace elements.
4736 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004737 record->StackElement(depth)->SetMethod(nullptr);
4738 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004739 }
4740 }
4741
4742 AllocRecord* record;
4743 size_t depth;
4744};
4745
Ian Rogers844506b2014-09-12 19:59:33 -07004746void Dbg::RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004747 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004748 if (recent_allocation_records_ == nullptr) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004749 // In the process of shutting down recording, bail.
Elliott Hughes545a0642011-11-08 19:10:03 -08004750 return;
4751 }
4752
4753 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004754 if (++alloc_record_head_ == alloc_record_max_) {
4755 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004756 }
4757
4758 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004759 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004760 record->SetType(type);
4761 record->SetByteCount(byte_count);
4762 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004763
4764 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004765 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004766 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004767
Ian Rogers719d1a32014-03-06 12:13:39 -08004768 if (alloc_record_count_ < alloc_record_max_) {
4769 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004770 }
4771}
4772
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004773// Returns the index of the head element.
4774//
Brian Carlstrom306db812014-09-05 13:01:41 -07004775// We point at the most-recently-written record, so if alloc_record_count_ is 1
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004776// we want to use the current element. Take "head+1" and subtract count
4777// from it.
4778//
4779// We need to handle underflow in our circular buffer, so we add
Brian Carlstrom306db812014-09-05 13:01:41 -07004780// alloc_record_max_ and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004781size_t Dbg::HeadIndex() {
4782 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4783 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004784}
4785
4786void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004787 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004788 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004789 if (recent_allocation_records_ == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004790 LOG(INFO) << "Not recording tracked allocations";
4791 return;
4792 }
4793
4794 // "i" is the head of the list. We want to start at the end of the
4795 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004796 size_t i = HeadIndex();
Brian Carlstrom306db812014-09-05 13:01:41 -07004797 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4798 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004799
Ian Rogers719d1a32014-03-06 12:13:39 -08004800 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004801 while (count--) {
4802 AllocRecord* record = &recent_allocation_records_[i];
4803
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004804 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4805 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004806
4807 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004808 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4809 mirror::ArtMethod* m = stack_element->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004810 if (m == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004811 break;
4812 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004813 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004814 }
4815
4816 // pause periodically to help logcat catch up
4817 if ((count % 5) == 0) {
4818 usleep(40000);
4819 }
4820
Ian Rogers719d1a32014-03-06 12:13:39 -08004821 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004822 }
4823}
4824
4825class StringTable {
4826 public:
4827 StringTable() {
4828 }
4829
Mathieu Chartier4345c462014-06-27 10:20:14 -07004830 void Add(const std::string& str) {
4831 table_.insert(str);
4832 }
4833
4834 void Add(const char* str) {
4835 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004836 }
4837
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004838 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004839 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004840 if (it == table_.end()) {
4841 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4842 }
4843 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004844 }
4845
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004846 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004847 return table_.size();
4848 }
4849
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004850 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004851 for (const std::string& str : table_) {
4852 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004853 size_t s_len = CountModifiedUtf8Chars(s);
Christopher Ferris8a354052015-04-24 17:23:53 -07004854 std::unique_ptr<uint16_t[]> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004855 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4856 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004857 }
4858 }
4859
4860 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004861 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004862 DISALLOW_COPY_AND_ASSIGN(StringTable);
4863};
4864
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004865static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004866 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004867 DCHECK(method != nullptr);
4868 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004869 return (source_file != nullptr) ? source_file : "";
4870}
4871
Elliott Hughes545a0642011-11-08 19:10:03 -08004872/*
4873 * The data we send to DDMS contains everything we have recorded.
4874 *
4875 * Message header (all values big-endian):
4876 * (1b) message header len (to allow future expansion); includes itself
4877 * (1b) entry header len
4878 * (1b) stack frame len
4879 * (2b) number of entries
4880 * (4b) offset to string table from start of message
4881 * (2b) number of class name strings
4882 * (2b) number of method name strings
4883 * (2b) number of source file name strings
4884 * For each entry:
4885 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004886 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004887 * (2b) allocated object's class name index
4888 * (1b) stack depth
4889 * For each stack frame:
4890 * (2b) method's class name
4891 * (2b) method name
4892 * (2b) method source file
4893 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4894 * (xb) class name strings
4895 * (xb) method name strings
4896 * (xb) source file strings
4897 *
4898 * As with other DDM traffic, strings are sent as a 4-byte length
4899 * followed by UTF-16 data.
4900 *
4901 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07004902 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004903 * each table, but in practice there should be far fewer.
4904 *
4905 * The chief reason for using a string table here is to keep the size of
4906 * the DDMS message to a minimum. This is partly to make the protocol
4907 * efficient, but also because we have to form the whole thing up all at
4908 * once in a memory buffer.
4909 *
4910 * We use separate string tables for class names, method names, and source
4911 * files to keep the indexes small. There will generally be no overlap
4912 * between the contents of these tables.
4913 */
4914jbyteArray Dbg::GetRecentAllocations() {
Ian Rogerscf7f1912014-10-22 22:06:39 -07004915 if ((false)) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004916 DumpRecentAllocations();
4917 }
4918
Ian Rogers50b35e22012-10-04 10:09:15 -07004919 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004920 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004921 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004922 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004923 //
4924 // Part 1: generate string tables.
4925 //
4926 StringTable class_names;
4927 StringTable method_names;
4928 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004929
Brian Carlstrom306db812014-09-05 13:01:41 -07004930 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4931 uint16_t count = capped_count;
4932 size_t idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004933 while (count--) {
4934 AllocRecord* record = &recent_allocation_records_[idx];
Ian Rogers1ff3c982014-08-12 02:30:58 -07004935 std::string temp;
4936 class_names.Add(record->Type()->GetDescriptor(&temp));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004937 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004938 mirror::ArtMethod* m = record->StackElement(i)->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004939 if (m != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004940 class_names.Add(m->GetDeclaringClassDescriptor());
4941 method_names.Add(m->GetName());
4942 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004943 }
4944 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004945
Ian Rogers719d1a32014-03-06 12:13:39 -08004946 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004947 }
4948
Brian Carlstrom306db812014-09-05 13:01:41 -07004949 LOG(INFO) << "allocation records: " << capped_count;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004950
4951 //
4952 // Part 2: Generate the output and store it in the buffer.
4953 //
4954
4955 // (1b) message header len (to allow future expansion); includes itself
4956 // (1b) entry header len
4957 // (1b) stack frame len
4958 const int kMessageHeaderLen = 15;
4959 const int kEntryHeaderLen = 9;
4960 const int kStackFrameLen = 8;
4961 JDWP::Append1BE(bytes, kMessageHeaderLen);
4962 JDWP::Append1BE(bytes, kEntryHeaderLen);
4963 JDWP::Append1BE(bytes, kStackFrameLen);
4964
4965 // (2b) number of entries
4966 // (4b) offset to string table from start of message
4967 // (2b) number of class name strings
4968 // (2b) number of method name strings
4969 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07004970 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004971 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004972 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004973 JDWP::Append2BE(bytes, class_names.Size());
4974 JDWP::Append2BE(bytes, method_names.Size());
4975 JDWP::Append2BE(bytes, filenames.Size());
4976
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004977 idx = HeadIndex();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004978 std::string temp;
Brian Carlstrom306db812014-09-05 13:01:41 -07004979 for (count = capped_count; count != 0; --count) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004980 // For each entry:
4981 // (4b) total allocation size
4982 // (2b) thread id
4983 // (2b) allocated object's class name index
4984 // (1b) stack depth
4985 AllocRecord* record = &recent_allocation_records_[idx];
4986 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004987 size_t allocated_object_class_name_index =
Ian Rogers1ff3c982014-08-12 02:30:58 -07004988 class_names.IndexOf(record->Type()->GetDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004989 JDWP::Append4BE(bytes, record->ByteCount());
4990 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004991 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4992 JDWP::Append1BE(bytes, stack_depth);
4993
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004994 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4995 // For each stack frame:
4996 // (2b) method's class name
4997 // (2b) method name
4998 // (2b) method source file
4999 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07005000 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07005001 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
5002 size_t method_name_index = method_names.IndexOf(m->GetName());
5003 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005004 JDWP::Append2BE(bytes, class_name_index);
5005 JDWP::Append2BE(bytes, method_name_index);
5006 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07005007 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005008 }
Ian Rogers719d1a32014-03-06 12:13:39 -08005009 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005010 }
5011
5012 // (xb) class name strings
5013 // (xb) method name strings
5014 // (xb) source file strings
5015 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
5016 class_names.WriteTo(bytes);
5017 method_names.WriteTo(bytes);
5018 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08005019 }
Ian Rogers50b35e22012-10-04 10:09:15 -07005020 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08005021 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07005022 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08005023 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
5024 }
5025 return result;
5026}
5027
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07005028mirror::ArtMethod* DeoptimizationRequest::Method() const {
5029 ScopedObjectAccessUnchecked soa(Thread::Current());
5030 return soa.DecodeMethod(method_);
5031}
5032
5033void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
5034 ScopedObjectAccessUnchecked soa(Thread::Current());
5035 method_ = soa.EncodeMethod(m);
5036}
5037
Elliott Hughes872d4ec2011-10-21 17:07:15 -07005038} // namespace art