blob: 47371e54c5ebf44b5bbc6dc116b72c263372cdf4 [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"
Elliott Hughes545a0642011-11-08 19:10:03 -080025#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070027#include "dex_file-inl.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070028#include "dex_instruction.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070029#include "gc/accounting/card_table-inl.h"
30#include "gc/space/large_object_space.h"
31#include "gc/space/space-inl.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070032#include "handle_scope.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080033#include "jdwp/object_registry.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070034#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035#include "mirror/class.h"
36#include "mirror/class-inl.h"
37#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038#include "mirror/object-inl.h"
39#include "mirror/object_array-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070040#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080041#include "mirror/throwable.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010042#include "quick/inline_method_analyser.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070043#include "reflection.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070044#include "safe_map.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080045#include "scoped_thread_state_change.h"
Elliott Hughes6a5bd492011-10-28 14:33:57 -070046#include "ScopedLocalRef.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070047#include "ScopedPrimitiveArray.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070048#include "handle_scope-inl.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070049#include "thread_list.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080050#include "utf.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010051#include "verifier/method_verifier-inl.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070052#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070053
Brian Carlstrom3d92d522013-07-12 09:03:08 -070054#ifdef HAVE_ANDROID_OS
55#include "cutils/properties.h"
56#endif
57
Elliott Hughes872d4ec2011-10-21 17:07:15 -070058namespace art {
59
Brian Carlstrom7934ac22013-07-26 10:54:15 -070060static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
Brian Carlstrom306db812014-09-05 13:01:41 -070061static const size_t kDefaultNumAllocRecords = 64*1024; // Must be a power of 2. 2BE can hold 64k-1.
62
63// Limit alloc_record_count to the 2BE value that is the limit of the current protocol.
64static uint16_t CappedAllocRecordCount(size_t alloc_record_count) {
65 if (alloc_record_count > 0xffff) {
66 return 0xffff;
67 }
68 return alloc_record_count;
69}
Elliott Hughes475fc232011-10-25 15:00:35 -070070
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070071class AllocRecordStackTraceElement {
72 public:
73 AllocRecordStackTraceElement() : method_(nullptr), dex_pc_(0) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080074 }
75
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070076 int32_t LineNumber() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
77 mirror::ArtMethod* method = Method();
78 DCHECK(method != nullptr);
79 return method->GetLineNumFromDexPC(DexPc());
Elliott Hughes545a0642011-11-08 19:10:03 -080080 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070081
82 mirror::ArtMethod* Method() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -070083 ScopedObjectAccessUnchecked soa(Thread::Current());
84 return soa.DecodeMethod(method_);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070085 }
86
87 void SetMethod(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
88 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4345c462014-06-27 10:20:14 -070089 method_ = soa.EncodeMethod(m);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070090 }
91
92 uint32_t DexPc() const {
93 return dex_pc_;
94 }
95
96 void SetDexPc(uint32_t pc) {
97 dex_pc_ = pc;
98 }
99
100 private:
Mathieu Chartier4345c462014-06-27 10:20:14 -0700101 jmethodID method_;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700102 uint32_t dex_pc_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800103};
104
Mathieu Chartier4345c462014-06-27 10:20:14 -0700105jobject Dbg::TypeCache::Add(mirror::Class* t) {
106 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800107 JNIEnv* const env = soa.Env();
108 ScopedLocalRef<jobject> local_ref(soa.Env(), soa.AddLocalReference<jobject>(t));
109 const int32_t hash_code = soa.Decode<mirror::Class*>(local_ref.get())->IdentityHashCode();
Mathieu Chartier4345c462014-06-27 10:20:14 -0700110 auto range = objects_.equal_range(hash_code);
111 for (auto it = range.first; it != range.second; ++it) {
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800112 if (soa.Decode<mirror::Class*>(it->second) == soa.Decode<mirror::Class*>(local_ref.get())) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700113 // Found a matching weak global, return it.
114 return it->second;
115 }
116 }
Mathieu Chartier4c4d6092015-01-22 17:02:27 -0800117 const jobject weak_global = env->NewWeakGlobalRef(local_ref.get());
Mathieu Chartier4345c462014-06-27 10:20:14 -0700118 objects_.insert(std::make_pair(hash_code, weak_global));
119 return weak_global;
120}
121
122void Dbg::TypeCache::Clear() {
Brian Carlstrom306db812014-09-05 13:01:41 -0700123 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
124 Thread* self = Thread::Current();
Mathieu Chartier4345c462014-06-27 10:20:14 -0700125 for (const auto& p : objects_) {
Brian Carlstrom306db812014-09-05 13:01:41 -0700126 vm->DeleteWeakGlobalRef(self, p.second);
Mathieu Chartier4345c462014-06-27 10:20:14 -0700127 }
128 objects_.clear();
129}
130
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700131class AllocRecord {
132 public:
133 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -0800134
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700135 mirror::Class* Type() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier4345c462014-06-27 10:20:14 -0700136 return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700137 }
138
Brian Carlstrom306db812014-09-05 13:01:41 -0700139 void SetType(mirror::Class* t) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
140 Locks::alloc_tracker_lock_) {
141 type_ = Dbg::type_cache_.Add(t);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700142 }
143
144 size_t GetDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800145 size_t depth = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -0700146 while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -0800147 ++depth;
148 }
149 return depth;
150 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800151
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700152 size_t ByteCount() const {
153 return byte_count_;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800154 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700155
156 void SetByteCount(size_t count) {
157 byte_count_ = count;
158 }
159
160 uint16_t ThinLockId() const {
161 return thin_lock_id_;
162 }
163
164 void SetThinLockId(uint16_t id) {
165 thin_lock_id_ = id;
166 }
167
168 AllocRecordStackTraceElement* StackElement(size_t index) {
169 DCHECK_LT(index, kMaxAllocRecordStackDepth);
170 return &stack_[index];
171 }
172
173 private:
174 jobject type_; // This is a weak global.
175 size_t byte_count_;
176 uint16_t thin_lock_id_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700177 // Unused entries have null method.
178 AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth];
Elliott Hughes545a0642011-11-08 19:10:03 -0800179};
180
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700181class Breakpoint {
182 public:
Sebastien Hertzf3928792014-11-17 19:00:37 +0100183 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc,
184 DeoptimizationRequest::Kind deoptimization_kind)
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700185 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertzf3928792014-11-17 19:00:37 +0100186 : method_(nullptr), dex_pc_(dex_pc), deoptimization_kind_(deoptimization_kind) {
187 CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing ||
188 deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization ||
189 deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700190 ScopedObjectAccessUnchecked soa(Thread::Current());
191 method_ = soa.EncodeMethod(method);
192 }
193
194 Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
195 : method_(nullptr), dex_pc_(other.dex_pc_),
Sebastien Hertzf3928792014-11-17 19:00:37 +0100196 deoptimization_kind_(other.deoptimization_kind_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700197 ScopedObjectAccessUnchecked soa(Thread::Current());
198 method_ = soa.EncodeMethod(other.Method());
199 }
200
201 mirror::ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
202 ScopedObjectAccessUnchecked soa(Thread::Current());
203 return soa.DecodeMethod(method_);
204 }
205
206 uint32_t DexPc() const {
207 return dex_pc_;
208 }
209
Sebastien Hertzf3928792014-11-17 19:00:37 +0100210 DeoptimizationRequest::Kind GetDeoptimizationKind() const {
211 return deoptimization_kind_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700212 }
213
214 private:
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100215 // The location of this breakpoint.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700216 jmethodID method_;
217 uint32_t dex_pc_;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100218
219 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
Sebastien Hertzf3928792014-11-17 19:00:37 +0100220 DeoptimizationRequest::Kind deoptimization_kind_;
Elliott Hughes86964332012-02-15 19:37:42 -0800221};
222
Sebastien Hertzed2be172014-08-19 15:33:43 +0200223static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700224 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700225 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
Elliott Hughes86964332012-02-15 19:37:42 -0800226 return os;
227}
228
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200229class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800230 public:
231 DebugInstrumentationListener() {}
232 virtual ~DebugInstrumentationListener() {}
233
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200234 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200235 uint32_t dex_pc)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200236 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800237 if (method->IsNative()) {
238 // TODO: post location events is a suspension point and native method entry stubs aren't.
239 return;
240 }
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200241 if (IsListeningToDexPcMoved()) {
242 // We also listen to kDexPcMoved instrumentation event so we know the DexPcMoved method is
243 // going to be called right after us. To avoid sending JDWP events twice for this location,
244 // we report the event in DexPcMoved. However, we must remind this is method entry so we
245 // send the METHOD_ENTRY event. And we can also group it with other events for this location
246 // like BREAKPOINT or SINGLE_STEP (or even METHOD_EXIT if this is a RETURN instruction).
247 thread->SetDebugMethodEntry();
248 } else if (IsListeningToMethodExit() && IsReturn(method, dex_pc)) {
249 // We also listen to kMethodExited instrumentation event and the current instruction is a
250 // RETURN so we know the MethodExited method is going to be called right after us. To avoid
251 // sending JDWP events twice for this location, we report the event(s) in MethodExited.
252 // However, we must remind this is method entry so we send the METHOD_ENTRY event. And we can
253 // also group it with other events for this location like BREAKPOINT or SINGLE_STEP.
254 thread->SetDebugMethodEntry();
255 } else {
256 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
257 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800258 }
259
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200260 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
261 uint32_t dex_pc, const JValue& return_value)
262 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800263 if (method->IsNative()) {
264 // TODO: post location events is a suspension point and native method entry stubs aren't.
265 return;
266 }
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200267 uint32_t events = Dbg::kMethodExit;
268 if (thread->IsDebugMethodEntry()) {
269 // It is also the method entry.
270 DCHECK(IsReturn(method, dex_pc));
271 events |= Dbg::kMethodEntry;
272 thread->ClearDebugMethodEntry();
273 }
274 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, events, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800275 }
276
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200277 void MethodUnwind(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object ATTRIBUTE_UNUSED,
278 mirror::ArtMethod* method, uint32_t dex_pc)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200279 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800280 // We're not recorded to listen to this kind of event, so complain.
281 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100282 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800283 }
284
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200285 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
286 uint32_t new_dex_pc)
287 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200288 if (IsListeningToMethodExit() && IsReturn(method, new_dex_pc)) {
289 // We also listen to kMethodExited instrumentation event and the current instruction is a
290 // RETURN so we know the MethodExited method is going to be called right after us. Like in
291 // MethodEntered, we delegate event reporting to MethodExited.
292 // Besides, if this RETURN instruction is the only one in the method, we can send multiple
293 // JDWP events in the same packet: METHOD_ENTRY, METHOD_EXIT, BREAKPOINT and/or SINGLE_STEP.
294 // Therefore, we must not clear the debug method entry flag here.
295 } else {
296 uint32_t events = 0;
297 if (thread->IsDebugMethodEntry()) {
298 // It is also the method entry.
299 events = Dbg::kMethodEntry;
300 thread->ClearDebugMethodEntry();
301 }
302 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, events, nullptr);
303 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800304 }
305
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200306 void FieldRead(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object,
307 mirror::ArtMethod* method, uint32_t dex_pc, ArtField* field)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200308 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
309 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800310 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200311
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700312 void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700313 mirror::ArtMethod* method, uint32_t dex_pc, ArtField* field,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700314 const JValue& field_value)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200315 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
316 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
317 }
318
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000319 void ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED, mirror::Throwable* exception_object)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200320 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000321 Dbg::PostException(exception_object);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200322 }
323
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800324 // We only care about how many backward branches were executed in the Jit.
325 void BackwardBranch(Thread* /*thread*/, mirror::ArtMethod* method, int32_t dex_pc_offset)
326 OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
327 LOG(ERROR) << "Unexpected backward branch event in debugger " << PrettyMethod(method)
328 << " " << dex_pc_offset;
329 }
330
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200331 private:
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200332 static bool IsReturn(mirror::ArtMethod* method, uint32_t dex_pc)
333 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
334 const DexFile::CodeItem* code_item = method->GetCodeItem();
335 const Instruction* instruction = Instruction::At(&code_item->insns_[dex_pc]);
336 return instruction->IsReturn();
337 }
338
339 static bool IsListeningToDexPcMoved() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
340 return IsListeningTo(instrumentation::Instrumentation::kDexPcMoved);
341 }
342
343 static bool IsListeningToMethodExit() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
344 return IsListeningTo(instrumentation::Instrumentation::kMethodExited);
345 }
346
347 static bool IsListeningTo(instrumentation::Instrumentation::InstrumentationEvent event)
348 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
349 return (Dbg::GetInstrumentationEvents() & event) != 0;
350 }
351
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200352 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800353} gDebugInstrumentationListener;
354
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700355// JDWP is allowed unless the Zygote forbids it.
356static bool gJdwpAllowed = true;
357
Elliott Hughesc0f09332012-03-26 13:27:06 -0700358// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700359static bool gJdwpConfigured = false;
360
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100361// JDWP options for debugging. Only valid if IsJdwpConfigured() is true.
362static JDWP::JdwpOptions gJdwpOptions;
363
Elliott Hughes3bb81562011-10-21 18:52:59 -0700364// Runtime JDWP state.
Ian Rogersc0542af2014-09-03 16:16:56 -0700365static JDWP::JdwpState* gJdwpState = nullptr;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700366static bool gDebuggerConnected; // debugger or DDMS is connected.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700367
Elliott Hughes47fce012011-10-25 18:37:19 -0700368static bool gDdmThreadNotification = false;
369
Elliott Hughes767a1472011-10-26 18:49:02 -0700370// DDMS GC-related settings.
371static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
372static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
373static Dbg::HpsgWhat gDdmHpsgWhat;
374static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
375static Dbg::HpsgWhat gDdmNhsgWhat;
376
Daniel Mihalyieb076692014-08-22 17:33:31 +0200377bool Dbg::gDebuggerActive = false;
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100378bool Dbg::gDisposed = false;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200379ObjectRegistry* Dbg::gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700380
Elliott Hughes545a0642011-11-08 19:10:03 -0800381// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800382AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
383size_t Dbg::alloc_record_max_ = 0;
384size_t Dbg::alloc_record_head_ = 0;
385size_t Dbg::alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -0700386Dbg::TypeCache Dbg::type_cache_;
Elliott Hughes545a0642011-11-08 19:10:03 -0800387
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100388// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100389std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
390size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100391
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200392// Instrumentation event reference counters.
393size_t Dbg::dex_pc_change_event_ref_count_ = 0;
394size_t Dbg::method_enter_event_ref_count_ = 0;
395size_t Dbg::method_exit_event_ref_count_ = 0;
396size_t Dbg::field_read_event_ref_count_ = 0;
397size_t Dbg::field_write_event_ref_count_ = 0;
398size_t Dbg::exception_catch_event_ref_count_ = 0;
399uint32_t Dbg::instrumentation_events_ = 0;
400
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100401// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800402static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800403
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700404void DebugInvokeReq::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
405 receiver.VisitRootIfNonNull(visitor, root_info); // null for static method call.
406 klass.VisitRoot(visitor, root_info);
407 method.VisitRoot(visitor, root_info);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200408}
409
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700410void SingleStepControl::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
411 visitor->VisitRootIfNonNull(reinterpret_cast<mirror::Object**>(&method_), root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700412}
413
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100414void SingleStepControl::AddDexPc(uint32_t dex_pc) {
415 dex_pcs_.insert(dex_pc);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200416}
417
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100418bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
419 return dex_pcs_.find(dex_pc) == dex_pcs_.end();
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200420}
421
Brian Carlstromea46f952013-07-30 01:26:50 -0700422static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800423 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700424 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzed2be172014-08-19 15:33:43 +0200425 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100426 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700427 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
Elliott Hughes86964332012-02-15 19:37:42 -0800428 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
429 return true;
430 }
431 }
432 return false;
433}
434
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100435static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
436 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800437 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
438 // A thread may be suspended for GC; in this code, we really want to know whether
439 // there's a debugger suspension active.
440 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
441}
442
Ian Rogersc0542af2014-09-03 16:16:56 -0700443static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700444 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200445 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700446 if (o == nullptr) {
447 *error = JDWP::ERR_INVALID_OBJECT;
448 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800449 }
450 if (!o->IsArrayInstance()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700451 *error = JDWP::ERR_INVALID_ARRAY;
452 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800453 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700454 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800455 return o->AsArray();
456}
457
Ian Rogersc0542af2014-09-03 16:16:56 -0700458static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700459 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200460 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700461 if (o == nullptr) {
462 *error = JDWP::ERR_INVALID_OBJECT;
463 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800464 }
465 if (!o->IsClass()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700466 *error = JDWP::ERR_INVALID_CLASS;
467 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800468 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700469 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800470 return o->AsClass();
471}
472
Ian Rogersc0542af2014-09-03 16:16:56 -0700473static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
474 JDWP::JdwpError* error)
Sebastien Hertz69206392015-04-07 15:54:25 +0200475 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
476 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::thread_suspend_count_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200477 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700478 if (thread_peer == nullptr) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800479 // This isn't even an object.
Ian Rogersc0542af2014-09-03 16:16:56 -0700480 *error = JDWP::ERR_INVALID_OBJECT;
481 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800482 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800483
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800484 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800485 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
486 // This isn't a thread.
Ian Rogersc0542af2014-09-03 16:16:56 -0700487 *error = JDWP::ERR_INVALID_THREAD;
488 return nullptr;
Elliott Hughes221229c2013-01-08 18:17:50 -0800489 }
490
Sebastien Hertz69206392015-04-07 15:54:25 +0200491 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700492 Thread* thread = Thread::FromManagedThread(soa, thread_peer);
493 // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a
494 // zombie.
495 *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE;
496 return thread;
Elliott Hughes436e3722012-02-17 20:01:47 -0800497}
498
Elliott Hughes24437992011-11-30 14:49:33 -0800499static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
500 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
501 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
502 return static_cast<JDWP::JdwpTag>(descriptor[0]);
503}
504
Ian Rogers1ff3c982014-08-12 02:30:58 -0700505static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
506 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
507 std::string temp;
508 const char* descriptor = klass->GetDescriptor(&temp);
509 return BasicTagFromDescriptor(descriptor);
510}
511
Ian Rogers98379392014-02-24 16:53:16 -0800512static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700513 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700514 CHECK(c != nullptr);
Elliott Hughes24437992011-11-30 14:49:33 -0800515 if (c->IsArrayClass()) {
516 return JDWP::JT_ARRAY;
517 }
Elliott Hughes24437992011-11-30 14:49:33 -0800518 if (c->IsStringClass()) {
519 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800520 }
Ian Rogers98379392014-02-24 16:53:16 -0800521 if (c->IsClassClass()) {
522 return JDWP::JT_CLASS_OBJECT;
523 }
524 {
525 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
526 if (thread_class->IsAssignableFrom(c)) {
527 return JDWP::JT_THREAD;
528 }
529 }
530 {
531 mirror::Class* thread_group_class =
532 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
533 if (thread_group_class->IsAssignableFrom(c)) {
534 return JDWP::JT_THREAD_GROUP;
535 }
536 }
537 {
538 mirror::Class* class_loader_class =
539 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
540 if (class_loader_class->IsAssignableFrom(c)) {
541 return JDWP::JT_CLASS_LOADER;
542 }
543 }
544 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800545}
546
547/*
548 * Objects declared to hold Object might actually hold a more specific
549 * type. The debugger may take a special interest in these (e.g. it
550 * wants to display the contents of Strings), so we want to return an
551 * appropriate tag.
552 *
553 * Null objects are tagged JT_OBJECT.
554 */
Sebastien Hertz6995c602014-09-09 12:10:13 +0200555JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700556 return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800557}
558
559static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
560 switch (tag) {
561 case JDWP::JT_BOOLEAN:
562 case JDWP::JT_BYTE:
563 case JDWP::JT_CHAR:
564 case JDWP::JT_FLOAT:
565 case JDWP::JT_DOUBLE:
566 case JDWP::JT_INT:
567 case JDWP::JT_LONG:
568 case JDWP::JT_SHORT:
569 case JDWP::JT_VOID:
570 return true;
571 default:
572 return false;
573 }
574}
575
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100576void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700577 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700578 // No JDWP for you!
579 return;
580 }
581
Ian Rogers719d1a32014-03-06 12:13:39 -0800582 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700583 gRegistry = new ObjectRegistry;
584
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700585 // Init JDWP if the debugger is enabled. This may connect out to a
586 // debugger, passively listen for a debugger, or block waiting for a
587 // debugger.
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100588 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
Ian Rogersc0542af2014-09-03 16:16:56 -0700589 if (gJdwpState == nullptr) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800590 // We probably failed because some other process has the port already, which means that
591 // if we don't abort the user is likely to think they're talking to us when they're actually
592 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800593 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700594 }
595
596 // If a debugger has already attached, send the "welcome" message.
597 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700598 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700599 ScopedObjectAccess soa(Thread::Current());
Sebastien Hertz7d955652014-10-22 10:57:10 +0200600 gJdwpState->PostVMStart();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700601 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700602}
603
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700604void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200605 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
606 // destruction of gJdwpState).
607 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
608 gJdwpState->PostVMDeath();
609 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100610 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100611 Dispose();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700612 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800613 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700614 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800615 gRegistry = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700616}
617
Elliott Hughes767a1472011-10-26 18:49:02 -0700618void Dbg::GcDidFinish() {
619 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700620 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700621 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700622 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700623 }
624 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700625 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700626 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700627 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700628 }
629 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700630 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700631 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700632 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700633 }
634}
635
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700636void Dbg::SetJdwpAllowed(bool allowed) {
637 gJdwpAllowed = allowed;
638}
639
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700640DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700641 return Thread::Current()->GetInvokeReq();
642}
643
644Thread* Dbg::GetDebugThread() {
Ian Rogersc0542af2014-09-03 16:16:56 -0700645 return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700646}
647
648void Dbg::ClearWaitForEventThread() {
Sebastien Hertz2bf93f42015-01-09 18:44:05 +0100649 gJdwpState->ReleaseJdwpTokenForEvent();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700650}
651
652void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700653 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800654 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700655 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800656 gDisposed = false;
657}
658
Sebastien Hertzf3928792014-11-17 19:00:37 +0100659bool Dbg::RequiresDeoptimization() {
660 // We don't need deoptimization if everything runs with interpreter after
661 // enabling -Xint mode.
662 return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly();
663}
664
Elliott Hughesa2155262011-11-16 16:26:58 -0800665void Dbg::GoActive() {
666 // Enable all debugging features, including scans for breakpoints.
667 // This is a no-op if we're already active.
668 // Only called from the JDWP handler thread.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200669 if (IsDebuggerActive()) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800670 return;
671 }
672
Elliott Hughesc0f09332012-03-26 13:27:06 -0700673 {
674 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Sebastien Hertzed2be172014-08-19 15:33:43 +0200675 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700676 CHECK_EQ(gBreakpoints.size(), 0U);
677 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800678
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100679 {
Brian Carlstrom306db812014-09-05 13:01:41 -0700680 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100681 CHECK_EQ(deoptimization_requests_.size(), 0U);
682 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200683 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
684 CHECK_EQ(method_enter_event_ref_count_, 0U);
685 CHECK_EQ(method_exit_event_ref_count_, 0U);
686 CHECK_EQ(field_read_event_ref_count_, 0U);
687 CHECK_EQ(field_write_event_ref_count_, 0U);
688 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100689 }
690
Ian Rogers62d6c772013-02-27 08:32:07 -0800691 Runtime* runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700692 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800693 Thread* self = Thread::Current();
694 ThreadState old_state = self->SetStateUnsafe(kRunnable);
695 CHECK_NE(old_state, kRunnable);
Sebastien Hertzf3928792014-11-17 19:00:37 +0100696 if (RequiresDeoptimization()) {
697 runtime->GetInstrumentation()->EnableDeoptimization();
698 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200699 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800700 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800701 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
702 runtime->GetThreadList()->ResumeAll();
703
704 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700705}
706
707void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700708 CHECK(gDebuggerConnected);
709
Elliott Hughesc0f09332012-03-26 13:27:06 -0700710 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700711
Ian Rogers62d6c772013-02-27 08:32:07 -0800712 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
713 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
714 // and clear the object registry.
715 Runtime* runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700716 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800717 Thread* self = Thread::Current();
718 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100719
720 // Debugger may not be active at this point.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200721 if (IsDebuggerActive()) {
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100722 {
723 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
724 // This prevents us from having any pending deoptimization request when the debugger attaches
725 // to us again while no event has been requested yet.
Brian Carlstrom306db812014-09-05 13:01:41 -0700726 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100727 deoptimization_requests_.clear();
728 full_deoptimization_event_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100729 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200730 if (instrumentation_events_ != 0) {
731 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
732 instrumentation_events_);
733 instrumentation_events_ = 0;
734 }
Sebastien Hertzf3928792014-11-17 19:00:37 +0100735 if (RequiresDeoptimization()) {
736 runtime->GetInstrumentation()->DisableDeoptimization();
737 }
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100738 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100739 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800740 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
741 runtime->GetThreadList()->ResumeAll();
Sebastien Hertz55f65342015-01-13 22:48:34 +0100742
743 {
744 ScopedObjectAccess soa(self);
745 gRegistry->Clear();
746 }
747
748 gDebuggerConnected = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700749}
750
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100751void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) {
752 CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown);
753 gJdwpOptions = jdwp_options;
754 gJdwpConfigured = true;
755}
756
Elliott Hughesc0f09332012-03-26 13:27:06 -0700757bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700758 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700759}
760
761int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800762 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700763}
764
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700765void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700766 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700767}
768
Elliott Hughes88d63092013-01-09 09:55:54 -0800769std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700770 JDWP::JdwpError error;
771 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error);
772 if (o == nullptr) {
773 if (error == JDWP::ERR_NONE) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700774 return "null";
Ian Rogersc0542af2014-09-03 16:16:56 -0700775 } else {
776 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
777 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800778 }
779 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700780 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800781 }
Sebastien Hertz6995c602014-09-09 12:10:13 +0200782 return GetClassName(o->AsClass());
783}
784
785std::string Dbg::GetClassName(mirror::Class* klass) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200786 if (klass == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700787 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200788 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700789 std::string temp;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200790 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700791}
792
Ian Rogersc0542af2014-09-03 16:16:56 -0700793JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800794 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700795 mirror::Class* c = DecodeClass(id, &status);
796 if (c == nullptr) {
797 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800798 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800799 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700800 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800801 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800802}
803
Ian Rogersc0542af2014-09-03 16:16:56 -0700804JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800805 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700806 mirror::Class* c = DecodeClass(id, &status);
807 if (c == nullptr) {
808 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800809 return status;
810 }
811 if (c->IsInterface()) {
812 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700813 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800814 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700815 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800816 }
817 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700818}
819
Elliott Hughes436e3722012-02-17 20:01:47 -0800820JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700821 JDWP::JdwpError error;
822 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
823 if (o == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800824 return JDWP::ERR_INVALID_OBJECT;
825 }
826 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
827 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700828}
829
Elliott Hughes436e3722012-02-17 20:01:47 -0800830JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700831 JDWP::JdwpError error;
832 mirror::Class* c = DecodeClass(id, &error);
833 if (c == nullptr) {
834 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800835 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800836
837 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
838
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700839 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
840 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800841 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700842 if ((access_flags & kAccInterface) == 0) {
843 access_flags |= kAccSuper;
844 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800845
846 expandBufAdd4BE(pReply, access_flags);
847
848 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700849}
850
Ian Rogersc0542af2014-09-03 16:16:56 -0700851JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
852 JDWP::JdwpError error;
853 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
854 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800855 return JDWP::ERR_INVALID_OBJECT;
856 }
857
858 // Ensure all threads are suspended while we read objects' lock words.
859 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100860 CHECK_EQ(self->GetState(), kRunnable);
861 self->TransitionFromRunnableToSuspended(kSuspended);
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700862 Runtime::Current()->GetThreadList()->SuspendAll(__FUNCTION__);
Elliott Hughesf327e072013-01-09 16:01:26 -0800863
864 MonitorInfo monitor_info(o);
865
Sebastien Hertz54263242014-03-19 18:16:50 +0100866 Runtime::Current()->GetThreadList()->ResumeAll();
867 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800868
Ian Rogersc0542af2014-09-03 16:16:56 -0700869 if (monitor_info.owner_ != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700870 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800871 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700872 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800873 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700874 expandBufAdd4BE(reply, monitor_info.entry_count_);
875 expandBufAdd4BE(reply, monitor_info.waiters_.size());
876 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
877 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800878 }
879 return JDWP::ERR_NONE;
880}
881
Elliott Hughes734b8c62013-01-11 15:32:45 -0800882JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700883 std::vector<JDWP::ObjectId>* monitors,
884 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800885 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700886 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700887 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700888 std::vector<uint32_t>* stack_depth_vector)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800889 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700890 : StackVisitor(thread, context), current_stack_depth(0),
891 monitors(monitor_vector), stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800892
893 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
894 // annotalysis.
895 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
896 if (!GetMethod()->IsRuntimeMethod()) {
897 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800898 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800899 }
900 return true;
901 }
902
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700903 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
904 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800905 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700906 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700907 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800908 }
909
Elliott Hughes734b8c62013-01-11 15:32:45 -0800910 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700911 std::vector<JDWP::ObjectId>* const monitors;
912 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800913 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800914
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700915 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +0200916 JDWP::JdwpError error;
917 Thread* thread = DecodeThread(soa, thread_id, &error);
918 if (thread == nullptr) {
919 return error;
920 }
921 if (!IsSuspendedForDebugger(soa, thread)) {
922 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700923 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700924 std::unique_ptr<Context> context(Context::Create());
Ian Rogersc0542af2014-09-03 16:16:56 -0700925 OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700926 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800927 return JDWP::ERR_NONE;
928}
929
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100930JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700931 JDWP::ObjectId* contended_monitor) {
Elliott Hughesf9501702013-01-11 11:22:27 -0800932 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -0700933 *contended_monitor = 0;
Sebastien Hertz69206392015-04-07 15:54:25 +0200934 JDWP::JdwpError error;
935 Thread* thread = DecodeThread(soa, thread_id, &error);
936 if (thread == nullptr) {
937 return error;
Elliott Hughesf9501702013-01-11 11:22:27 -0800938 }
Sebastien Hertz69206392015-04-07 15:54:25 +0200939 if (!IsSuspendedForDebugger(soa, thread)) {
940 return JDWP::ERR_THREAD_NOT_SUSPENDED;
941 }
942 mirror::Object* contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700943 // Add() requires the thread_list_lock_ not held to avoid the lock
944 // level violation.
Ian Rogersc0542af2014-09-03 16:16:56 -0700945 *contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -0800946 return JDWP::ERR_NONE;
947}
948
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800949JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -0700950 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800951 gc::Heap* heap = Runtime::Current()->GetHeap();
952 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800953 std::vector<mirror::Class*> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700954 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800955 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700956 JDWP::JdwpError error;
957 mirror::Class* c = DecodeClass(class_ids[i], &error);
958 if (c == nullptr) {
959 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800960 }
961 classes.push_back(c);
Ian Rogersc0542af2014-09-03 16:16:56 -0700962 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800963 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700964 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800965 return JDWP::ERR_NONE;
966}
967
Ian Rogersc0542af2014-09-03 16:16:56 -0700968JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
969 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800970 gc::Heap* heap = Runtime::Current()->GetHeap();
971 // We only want reachable instances, so do a GC.
972 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700973 JDWP::JdwpError error;
974 mirror::Class* c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800975 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700976 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800977 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800978 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800979 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
980 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700981 instances->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes3b78c942013-01-15 17:35:41 -0800982 }
983 return JDWP::ERR_NONE;
984}
985
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800986JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700987 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800988 gc::Heap* heap = Runtime::Current()->GetHeap();
989 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700990 JDWP::JdwpError error;
991 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
992 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800993 return JDWP::ERR_INVALID_OBJECT;
994 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800995 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800996 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800997 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700998 referring_objects->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800999 }
1000 return JDWP::ERR_NONE;
1001}
1002
Ian Rogersc0542af2014-09-03 16:16:56 -07001003JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
1004 JDWP::JdwpError error;
1005 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1006 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001007 return JDWP::ERR_INVALID_OBJECT;
1008 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001009 gRegistry->DisableCollection(object_id);
1010 return JDWP::ERR_NONE;
1011}
1012
Ian Rogersc0542af2014-09-03 16:16:56 -07001013JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
1014 JDWP::JdwpError error;
1015 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +01001016 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
1017 // also ignores these cases and never return an error. However it's not obvious why this command
1018 // should behave differently from DisableCollection and IsCollected commands. So let's be more
1019 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -07001020 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001021 return JDWP::ERR_INVALID_OBJECT;
1022 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001023 gRegistry->EnableCollection(object_id);
1024 return JDWP::ERR_NONE;
1025}
1026
Ian Rogersc0542af2014-09-03 16:16:56 -07001027JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
1028 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001029 if (object_id == 0) {
1030 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +01001031 return JDWP::ERR_INVALID_OBJECT;
1032 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001033 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1034 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -07001035 JDWP::JdwpError error;
1036 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1037 if (o != nullptr) {
1038 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001039 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001040 return JDWP::ERR_NONE;
1041}
1042
Ian Rogersc0542af2014-09-03 16:16:56 -07001043void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001044 gRegistry->DisposeObject(object_id, reference_count);
1045}
1046
Sebastien Hertz6995c602014-09-09 12:10:13 +02001047JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001048 DCHECK(klass != nullptr);
1049 if (klass->IsArrayClass()) {
1050 return JDWP::TT_ARRAY;
1051 } else if (klass->IsInterface()) {
1052 return JDWP::TT_INTERFACE;
1053 } else {
1054 return JDWP::TT_CLASS;
1055 }
1056}
1057
Elliott Hughes88d63092013-01-09 09:55:54 -08001058JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001059 JDWP::JdwpError error;
1060 mirror::Class* c = DecodeClass(class_id, &error);
1061 if (c == nullptr) {
1062 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001063 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001064
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001065 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1066 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001067 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001068 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001069}
1070
Ian Rogersc0542af2014-09-03 16:16:56 -07001071void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001072 // Get the complete list of reference classes (i.e. all classes except
1073 // the primitive types).
1074 // Returns a newly-allocated buffer full of RefTypeId values.
1075 struct ClassListCreator {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001076 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes_in) : classes(classes_in) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001077 }
1078
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001079 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001080 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1081 }
1082
Elliott Hughes64f574f2013-02-20 14:57:12 -08001083 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1084 // annotalysis.
1085 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001086 if (!c->IsPrimitive()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001087 classes->push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001088 }
1089 return true;
1090 }
1091
Ian Rogersc0542af2014-09-03 16:16:56 -07001092 std::vector<JDWP::RefTypeId>* const classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001093 };
1094
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001095 ClassListCreator clc(classes);
Sebastien Hertz4537c412014-08-28 14:41:50 +02001096 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(ClassListCreator::Visit,
1097 &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001098}
1099
Ian Rogers1ff3c982014-08-12 02:30:58 -07001100JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1101 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001102 JDWP::JdwpError error;
1103 mirror::Class* c = DecodeClass(class_id, &error);
1104 if (c == nullptr) {
1105 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001106 }
1107
Elliott Hughesa2155262011-11-16 16:26:58 -08001108 if (c->IsArrayClass()) {
1109 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1110 *pTypeTag = JDWP::TT_ARRAY;
1111 } else {
1112 if (c->IsErroneous()) {
1113 *pStatus = JDWP::CS_ERROR;
1114 } else {
1115 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1116 }
1117 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1118 }
1119
Ian Rogersc0542af2014-09-03 16:16:56 -07001120 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001121 std::string temp;
1122 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001123 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001124 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001125}
1126
Ian Rogersc0542af2014-09-03 16:16:56 -07001127void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001128 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001129 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001130 ids->clear();
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001131 for (size_t i = 0; i < classes.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001132 ids->push_back(gRegistry->Add(classes[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001133 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001134}
1135
Ian Rogersc0542af2014-09-03 16:16:56 -07001136JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1137 JDWP::JdwpError error;
1138 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1139 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001140 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001141 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001142
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001143 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001144 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001145
1146 expandBufAdd1(pReply, type_tag);
1147 expandBufAddRefTypeId(pReply, type_id);
1148
1149 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001150}
1151
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001152JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001153 JDWP::JdwpError error;
1154 mirror::Class* c = DecodeClass(class_id, &error);
1155 if (c == nullptr) {
1156 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001157 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001158 std::string temp;
1159 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001160 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001161}
1162
Ian Rogersc0542af2014-09-03 16:16:56 -07001163JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1164 JDWP::JdwpError error;
1165 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001166 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001167 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001168 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001169 const char* source_file = c->GetSourceFile();
1170 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001171 return JDWP::ERR_ABSENT_INFORMATION;
1172 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001173 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001174 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001175}
1176
Ian Rogersc0542af2014-09-03 16:16:56 -07001177JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001178 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001179 JDWP::JdwpError error;
1180 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1181 if (error != JDWP::ERR_NONE) {
1182 *tag = JDWP::JT_VOID;
1183 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001184 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001185 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001186 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001187}
1188
Elliott Hughesaed4be92011-12-02 16:16:23 -08001189size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001190 switch (tag) {
1191 case JDWP::JT_VOID:
1192 return 0;
1193 case JDWP::JT_BYTE:
1194 case JDWP::JT_BOOLEAN:
1195 return 1;
1196 case JDWP::JT_CHAR:
1197 case JDWP::JT_SHORT:
1198 return 2;
1199 case JDWP::JT_FLOAT:
1200 case JDWP::JT_INT:
1201 return 4;
1202 case JDWP::JT_ARRAY:
1203 case JDWP::JT_OBJECT:
1204 case JDWP::JT_STRING:
1205 case JDWP::JT_THREAD:
1206 case JDWP::JT_THREAD_GROUP:
1207 case JDWP::JT_CLASS_LOADER:
1208 case JDWP::JT_CLASS_OBJECT:
1209 return sizeof(JDWP::ObjectId);
1210 case JDWP::JT_DOUBLE:
1211 case JDWP::JT_LONG:
1212 return 8;
1213 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001214 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001215 return -1;
1216 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001217}
1218
Ian Rogersc0542af2014-09-03 16:16:56 -07001219JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1220 JDWP::JdwpError error;
1221 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1222 if (a == nullptr) {
1223 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001224 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001225 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001226 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001227}
1228
Elliott Hughes88d63092013-01-09 09:55:54 -08001229JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001230 JDWP::JdwpError error;
1231 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001232 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001233 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001234 }
Elliott Hughes24437992011-11-30 14:49:33 -08001235
1236 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1237 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001238 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001239 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001240 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1241 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001242 expandBufAdd4BE(pReply, count);
1243
Ian Rogers1ff3c982014-08-12 02:30:58 -07001244 if (IsPrimitiveTag(element_tag)) {
1245 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001246 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1247 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001248 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001249 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1250 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001251 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001252 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1253 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001254 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001255 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1256 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001257 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001258 memcpy(dst, &src[offset * width], count * width);
1259 }
1260 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001261 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001262 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001263 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001264 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001265 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001266 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001267 expandBufAdd1(pReply, specific_tag);
1268 expandBufAddObjectId(pReply, gRegistry->Add(element));
1269 }
1270 }
1271
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001272 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001273}
1274
Ian Rogersef7d42f2014-01-06 12:55:46 -08001275template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001276static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001277 NO_THREAD_SAFETY_ANALYSIS {
1278 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001279 DCHECK(a->GetClass()->IsPrimitiveArray());
1280
Ian Rogersef7d42f2014-01-06 12:55:46 -08001281 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001282 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001283 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001284 }
1285}
1286
Elliott Hughes88d63092013-01-09 09:55:54 -08001287JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001288 JDWP::Request* request) {
1289 JDWP::JdwpError error;
1290 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1291 if (dst == nullptr) {
1292 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001293 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001294
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001295 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001296 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001297 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001298 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001299 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001300
Ian Rogers1ff3c982014-08-12 02:30:58 -07001301 if (IsPrimitiveTag(element_tag)) {
1302 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001303 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001304 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001305 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001306 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001307 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001308 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001309 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001310 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001311 }
1312 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001313 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001314 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001315 JDWP::ObjectId id = request->ReadObjectId();
Ian Rogersc0542af2014-09-03 16:16:56 -07001316 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1317 if (error != JDWP::ERR_NONE) {
1318 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001319 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001320 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001321 }
1322 }
1323
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001324 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001325}
1326
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001327JDWP::JdwpError Dbg::CreateString(const std::string& str, JDWP::ObjectId* new_string_id) {
1328 Thread* self = Thread::Current();
1329 mirror::String* new_string = mirror::String::AllocFromModifiedUtf8(self, str.c_str());
1330 if (new_string == nullptr) {
1331 DCHECK(self->IsExceptionPending());
1332 self->ClearException();
1333 LOG(ERROR) << "Could not allocate string";
1334 *new_string_id = 0;
1335 return JDWP::ERR_OUT_OF_MEMORY;
1336 }
1337 *new_string_id = gRegistry->Add(new_string);
1338 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001339}
1340
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001341JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001342 JDWP::JdwpError error;
1343 mirror::Class* c = DecodeClass(class_id, &error);
1344 if (c == nullptr) {
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001345 *new_object_id = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -07001346 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001347 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001348 Thread* self = Thread::Current();
1349 mirror::Object* new_object = c->AllocObject(self);
1350 if (new_object == nullptr) {
1351 DCHECK(self->IsExceptionPending());
1352 self->ClearException();
1353 LOG(ERROR) << "Could not allocate object of type " << PrettyDescriptor(c);
1354 *new_object_id = 0;
1355 return JDWP::ERR_OUT_OF_MEMORY;
1356 }
1357 *new_object_id = gRegistry->Add(new_object);
Elliott Hughes436e3722012-02-17 20:01:47 -08001358 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001359}
1360
Elliott Hughesbf13d362011-12-08 15:51:37 -08001361/*
1362 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1363 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001364JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001365 JDWP::ObjectId* new_array_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001366 JDWP::JdwpError error;
1367 mirror::Class* c = DecodeClass(array_class_id, &error);
1368 if (c == nullptr) {
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001369 *new_array_id = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -07001370 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001371 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001372 Thread* self = Thread::Current();
1373 gc::Heap* heap = Runtime::Current()->GetHeap();
1374 mirror::Array* new_array = mirror::Array::Alloc<true>(self, c, length,
1375 c->GetComponentSizeShift(),
1376 heap->GetCurrentAllocator());
1377 if (new_array == nullptr) {
1378 DCHECK(self->IsExceptionPending());
1379 self->ClearException();
1380 LOG(ERROR) << "Could not allocate array of type " << PrettyDescriptor(c);
1381 *new_array_id = 0;
1382 return JDWP::ERR_OUT_OF_MEMORY;
1383 }
1384 *new_array_id = gRegistry->Add(new_array);
Elliott Hughes436e3722012-02-17 20:01:47 -08001385 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001386}
1387
Mathieu Chartierc7853442015-03-27 14:35:38 -07001388JDWP::FieldId Dbg::ToFieldId(const ArtField* f) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001389 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001390}
1391
Brian Carlstromea46f952013-07-30 01:26:50 -07001392static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001393 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001394 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001395 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001396}
1397
Mathieu Chartierc7853442015-03-27 14:35:38 -07001398static ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001399 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001400 return reinterpret_cast<ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001401}
1402
Brian Carlstromea46f952013-07-30 01:26:50 -07001403static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001404 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001405 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001406 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001407}
1408
Sebastien Hertz6995c602014-09-09 12:10:13 +02001409bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1410 CHECK(event_thread != nullptr);
1411 JDWP::JdwpError error;
1412 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(expected_thread_id,
1413 &error);
1414 return expected_thread_peer == event_thread->GetPeer();
1415}
1416
1417bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1418 const JDWP::EventLocation& event_location) {
1419 if (expected_location.dex_pc != event_location.dex_pc) {
1420 return false;
1421 }
1422 mirror::ArtMethod* m = FromMethodId(expected_location.method_id);
1423 return m == event_location.method;
1424}
1425
1426bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001427 if (event_class == nullptr) {
1428 return false;
1429 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02001430 JDWP::JdwpError error;
1431 mirror::Class* expected_class = DecodeClass(class_id, &error);
1432 CHECK(expected_class != nullptr);
1433 return expected_class->IsAssignableFrom(event_class);
1434}
1435
1436bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001437 ArtField* event_field) {
1438 ArtField* expected_field = FromFieldId(expected_field_id);
Sebastien Hertz6995c602014-09-09 12:10:13 +02001439 if (expected_field != event_field) {
1440 return false;
1441 }
1442 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1443}
1444
1445bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1446 JDWP::JdwpError error;
1447 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error);
1448 return modifier_instance == event_instance;
1449}
1450
1451void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
Sebastien Hertz69206392015-04-07 15:54:25 +02001452 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
1453 LOCKS_EXCLUDED(Locks::thread_list_lock_,
1454 Locks::thread_suspend_count_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001455 if (m == nullptr) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001456 memset(location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001457 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001458 mirror::Class* c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001459 location->type_tag = GetTypeTag(c);
1460 location->class_id = gRegistry->AddRefType(c);
1461 location->method_id = ToMethodId(m);
1462 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001463 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001464}
1465
Ian Rogersc0542af2014-09-03 16:16:56 -07001466std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001467 mirror::ArtMethod* m = FromMethodId(method_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001468 if (m == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001469 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001470 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001471 return m->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001472}
1473
Ian Rogersc0542af2014-09-03 16:16:56 -07001474std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001475 ArtField* f = FromFieldId(field_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001476 if (f == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001477 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001478 }
1479 return f->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001480}
1481
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001482/*
1483 * Augment the access flags for synthetic methods and fields by setting
1484 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1485 * flags not specified by the Java programming language.
1486 */
1487static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1488 accessFlags &= kAccJavaFlagsMask;
1489 if ((accessFlags & kAccSynthetic) != 0) {
1490 accessFlags |= 0xf0000000;
1491 }
1492 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001493}
1494
Elliott Hughesdbb40792011-11-18 17:05:22 -08001495/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001496 * Circularly shifts registers so that arguments come first. Debuggers
1497 * expect slots to begin with arguments, but dex code places them at
1498 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001499 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001500static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1501 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001502 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001503 if (code_item == nullptr) {
1504 // We should not get here for a method without code (native, proxy or abstract). Log it and
1505 // return the slot as is since all registers are arguments.
1506 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1507 return slot;
1508 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001509 uint16_t ins_size = code_item->ins_size_;
1510 uint16_t locals_size = code_item->registers_size_ - ins_size;
1511 if (slot >= locals_size) {
1512 return slot - locals_size;
1513 } else {
1514 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001515 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001516}
1517
Jeff Haob7cefc72013-11-14 14:51:09 -08001518/*
1519 * Circularly shifts registers so that arguments come last. Reverts
1520 * slots to dex style argument placement.
1521 */
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001522static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m, JDWP::JdwpError* error)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001523 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001524 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001525 if (code_item == nullptr) {
1526 // We should not get here for a method without code (native, proxy or abstract). Log it and
1527 // return the slot as is since all registers are arguments.
1528 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001529 uint16_t vreg_count = mirror::ArtMethod::NumArgRegisters(m->GetShorty());
1530 if (slot < vreg_count) {
1531 *error = JDWP::ERR_NONE;
1532 return slot;
1533 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001534 } else {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001535 if (slot < code_item->registers_size_) {
1536 uint16_t ins_size = code_item->ins_size_;
1537 uint16_t locals_size = code_item->registers_size_ - ins_size;
1538 *error = JDWP::ERR_NONE;
1539 return (slot < ins_size) ? slot + locals_size : slot - ins_size;
1540 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001541 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001542
1543 // Slot is invalid in the method.
1544 LOG(ERROR) << "Invalid local slot " << slot << " for method " << PrettyMethod(m);
1545 *error = JDWP::ERR_INVALID_SLOT;
1546 return DexFile::kDexNoIndex16;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001547}
1548
Elliott Hughes88d63092013-01-09 09:55:54 -08001549JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001550 JDWP::JdwpError error;
1551 mirror::Class* c = DecodeClass(class_id, &error);
1552 if (c == nullptr) {
1553 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001554 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001555
1556 size_t instance_field_count = c->NumInstanceFields();
1557 size_t static_field_count = c->NumStaticFields();
1558
1559 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1560
1561 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001562 ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001563 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001564 expandBufAddUtf8String(pReply, f->GetName());
1565 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001566 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001567 static const char genericSignature[1] = "";
1568 expandBufAddUtf8String(pReply, genericSignature);
1569 }
1570 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1571 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001572 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001573}
1574
Elliott Hughes88d63092013-01-09 09:55:54 -08001575JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001576 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001577 JDWP::JdwpError error;
1578 mirror::Class* c = DecodeClass(class_id, &error);
1579 if (c == nullptr) {
1580 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001581 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001582
1583 size_t direct_method_count = c->NumDirectMethods();
1584 size_t virtual_method_count = c->NumVirtualMethods();
1585
1586 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1587
1588 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001589 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001590 expandBufAddMethodId(pReply, ToMethodId(m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001591 expandBufAddUtf8String(pReply, m->GetName());
1592 expandBufAddUtf8String(pReply, m->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001593 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001594 static const char genericSignature[1] = "";
1595 expandBufAddUtf8String(pReply, genericSignature);
1596 }
1597 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1598 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001599 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001600}
1601
Elliott Hughes88d63092013-01-09 09:55:54 -08001602JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001603 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001604 Thread* self = Thread::Current();
1605 StackHandleScope<1> hs(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07001606 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error)));
Mathieu Chartierf8322842014-05-16 10:59:25 -07001607 if (c.Get() == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001608 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001609 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001610 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001611 expandBufAdd4BE(pReply, interface_count);
1612 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001613 expandBufAddRefTypeId(pReply,
1614 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001615 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001616 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001617}
1618
Ian Rogersc0542af2014-09-03 16:16:56 -07001619void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001620 struct DebugCallbackContext {
1621 int numItems;
1622 JDWP::ExpandBuf* pReply;
1623
Elliott Hughes2435a572012-02-17 16:07:41 -08001624 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001625 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1626 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001627 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001628 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001629 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001630 }
1631 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001632 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001633 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001634 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001635 if (code_item == nullptr) {
1636 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001637 start = -1;
1638 end = -1;
1639 } else {
1640 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001641 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001642 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001643 }
1644
1645 expandBufAdd8BE(pReply, start);
1646 expandBufAdd8BE(pReply, end);
1647
1648 // Add numLines later
1649 size_t numLinesOffset = expandBufGetLength(pReply);
1650 expandBufAdd4BE(pReply, 0);
1651
1652 DebugCallbackContext context;
1653 context.numItems = 0;
1654 context.pReply = pReply;
1655
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001656 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001657 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001658 DebugCallbackContext::Callback, nullptr, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001659 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001660
1661 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001662}
1663
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001664void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1665 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001666 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001667 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001668 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001669 size_t variable_count;
1670 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001671
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001672 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1673 const char* name, const char* descriptor, const char* signature)
Jeff Haob7cefc72013-11-14 14:51:09 -08001674 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001675 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1676
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001677 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1678 pContext->variable_count, startAddress, endAddress - startAddress,
1679 name, descriptor, signature, slot,
1680 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001681
Jeff Haob7cefc72013-11-14 14:51:09 -08001682 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001683
Elliott Hughesdbb40792011-11-18 17:05:22 -08001684 expandBufAdd8BE(pContext->pReply, startAddress);
1685 expandBufAddUtf8String(pContext->pReply, name);
1686 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001687 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001688 expandBufAddUtf8String(pContext->pReply, signature);
1689 }
1690 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1691 expandBufAdd4BE(pContext->pReply, slot);
1692
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001693 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001694 }
1695 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001696 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001697
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001698 // arg_count considers doubles and longs to take 2 units.
1699 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001700 std::string shorty(m->GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001701 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001702
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001703 // We don't know the total number of variables yet, so leave a blank and update it later.
1704 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001705 expandBufAdd4BE(pReply, 0);
1706
1707 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001708 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001709 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001710 context.variable_count = 0;
1711 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001712
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001713 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001714 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001715 m->GetDexFile()->DecodeDebugInfo(
Ian Rogersc0542af2014-09-03 16:16:56 -07001716 code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001717 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001718 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001719
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001720 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001721}
1722
Jeff Hao579b0242013-11-18 13:16:49 -08001723void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1724 JDWP::ExpandBuf* pReply) {
1725 mirror::ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001726 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001727 OutputJValue(tag, return_value, pReply);
1728}
1729
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001730void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1731 JDWP::ExpandBuf* pReply) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001732 ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001733 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001734 OutputJValue(tag, field_value, pReply);
1735}
1736
Elliott Hughes9777ba22013-01-17 09:04:19 -08001737JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001738 std::vector<uint8_t>* bytecodes) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001739 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001740 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001741 return JDWP::ERR_INVALID_METHODID;
1742 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001743 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001744 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1745 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1746 const uint8_t* end = begin + byte_count;
1747 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001748 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001749 }
1750 return JDWP::ERR_NONE;
1751}
1752
Elliott Hughes88d63092013-01-09 09:55:54 -08001753JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001754 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001755}
1756
Elliott Hughes88d63092013-01-09 09:55:54 -08001757JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001758 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001759}
1760
Elliott Hughes88d63092013-01-09 09:55:54 -08001761static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1762 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001763 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001764 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001765 JDWP::JdwpError error;
1766 mirror::Class* c = DecodeClass(ref_type_id, &error);
1767 if (ref_type_id != 0 && c == nullptr) {
1768 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001769 }
1770
Sebastien Hertz6995c602014-09-09 12:10:13 +02001771 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001772 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001773 return JDWP::ERR_INVALID_OBJECT;
1774 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07001775 ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001776
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001777 mirror::Class* receiver_class = c;
Ian Rogersc0542af2014-09-03 16:16:56 -07001778 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001779 receiver_class = o->GetClass();
1780 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001781 // TODO: should we give up now if receiver_class is null?
Ian Rogersc0542af2014-09-03 16:16:56 -07001782 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001783 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001784 return JDWP::ERR_INVALID_FIELDID;
1785 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001786
Elliott Hughes0cf74332012-02-23 23:14:00 -08001787 // The RI only enforces the static/non-static mismatch in one direction.
1788 // TODO: should we change the tests and check both?
1789 if (is_static) {
1790 if (!f->IsStatic()) {
1791 return JDWP::ERR_INVALID_FIELDID;
1792 }
1793 } else {
1794 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001795 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field "
1796 << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001797 }
1798 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001799 if (f->IsStatic()) {
1800 o = f->GetDeclaringClass();
1801 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001802
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001803 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001804 JValue field_value;
1805 if (tag == JDWP::JT_VOID) {
1806 LOG(FATAL) << "Unknown tag: " << tag;
1807 } else if (!IsPrimitiveTag(tag)) {
1808 field_value.SetL(f->GetObject(o));
1809 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1810 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001811 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001812 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001813 }
Jeff Hao579b0242013-11-18 13:16:49 -08001814 Dbg::OutputJValue(tag, &field_value, pReply);
1815
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001816 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001817}
1818
Elliott Hughes88d63092013-01-09 09:55:54 -08001819JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001820 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001821 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001822}
1823
Ian Rogersc0542af2014-09-03 16:16:56 -07001824JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1825 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001826 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001827}
1828
Elliott Hughes88d63092013-01-09 09:55:54 -08001829static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001830 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001831 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001832 JDWP::JdwpError error;
Sebastien Hertz6995c602014-09-09 12:10:13 +02001833 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001834 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001835 return JDWP::ERR_INVALID_OBJECT;
1836 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07001837 ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001838
1839 // The RI only enforces the static/non-static mismatch in one direction.
1840 // TODO: should we change the tests and check both?
1841 if (is_static) {
1842 if (!f->IsStatic()) {
1843 return JDWP::ERR_INVALID_FIELDID;
1844 }
1845 } else {
1846 if (f->IsStatic()) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001847 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001848 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001849 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001850 if (f->IsStatic()) {
1851 o = f->GetDeclaringClass();
1852 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001853
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001854 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001855
1856 if (IsPrimitiveTag(tag)) {
1857 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001858 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001859 // Debugging can't use transactional mode (runtime only).
1860 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001861 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001862 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001863 // Debugging can't use transactional mode (runtime only).
1864 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001865 }
1866 } else {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001867 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001868 if (error != JDWP::ERR_NONE) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001869 return JDWP::ERR_INVALID_OBJECT;
1870 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001871 if (v != nullptr) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001872 mirror::Class* field_type;
1873 {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001874 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001875 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001876 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001877 field_type = f->GetType<true>();
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001878 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001879 if (!field_type->IsAssignableFrom(v->GetClass())) {
1880 return JDWP::ERR_INVALID_OBJECT;
1881 }
1882 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001883 // Debugging can't use transactional mode (runtime only).
1884 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001885 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001886
1887 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001888}
1889
Elliott Hughes88d63092013-01-09 09:55:54 -08001890JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001891 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001892 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001893}
1894
Elliott Hughes88d63092013-01-09 09:55:54 -08001895JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1896 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001897}
1898
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001899JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001900 JDWP::JdwpError error;
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001901 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error);
1902 if (error != JDWP::ERR_NONE) {
1903 return error;
1904 }
1905 if (obj == nullptr) {
1906 return JDWP::ERR_INVALID_OBJECT;
1907 }
1908 {
1909 ScopedObjectAccessUnchecked soa(Thread::Current());
1910 mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String);
1911 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
1912 // This isn't a string.
1913 return JDWP::ERR_INVALID_STRING;
1914 }
1915 }
1916 *str = obj->AsString()->ToModifiedUtf8();
1917 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001918}
1919
Jeff Hao579b0242013-11-18 13:16:49 -08001920void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1921 if (IsPrimitiveTag(tag)) {
1922 expandBufAdd1(pReply, tag);
1923 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1924 expandBufAdd1(pReply, return_value->GetI());
1925 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1926 expandBufAdd2BE(pReply, return_value->GetI());
1927 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1928 expandBufAdd4BE(pReply, return_value->GetI());
1929 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1930 expandBufAdd8BE(pReply, return_value->GetJ());
1931 } else {
1932 CHECK_EQ(tag, JDWP::JT_VOID);
1933 }
1934 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001935 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001936 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001937 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001938 expandBufAddObjectId(pReply, gRegistry->Add(value));
1939 }
1940}
1941
Ian Rogersc0542af2014-09-03 16:16:56 -07001942JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001943 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001944 JDWP::JdwpError error;
1945 Thread* thread = DecodeThread(soa, thread_id, &error);
1946 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001947 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1948 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001949 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001950
1951 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07001952 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1953 CHECK(thread_object != nullptr) << error;
Mathieu Chartierc7853442015-03-27 14:35:38 -07001954 ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001955 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1956 mirror::String* s =
1957 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Ian Rogersc0542af2014-09-03 16:16:56 -07001958 if (s != nullptr) {
1959 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08001960 }
1961 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001962}
1963
Elliott Hughes221229c2013-01-08 18:17:50 -08001964JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02001965 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001966 JDWP::JdwpError error;
1967 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1968 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001969 return JDWP::ERR_INVALID_OBJECT;
1970 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001971 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001972 // Okay, so it's an object, but is it actually a thread?
Sebastien Hertz69206392015-04-07 15:54:25 +02001973 Thread* thread = DecodeThread(soa, thread_id, &error);
1974 UNUSED(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08001975 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1976 // Zombie threads are in the null group.
1977 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001978 error = JDWP::ERR_NONE;
1979 } else if (error == JDWP::ERR_NONE) {
1980 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1981 CHECK(c != nullptr);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001982 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001983 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001984 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001985 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001986 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1987 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001988 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001989 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001990}
1991
Sebastien Hertza06430c2014-09-15 19:21:30 +02001992static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
1993 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
1994 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001995 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,
1996 error);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001997 if (*error != JDWP::ERR_NONE) {
1998 return nullptr;
1999 }
2000 if (thread_group == nullptr) {
2001 *error = JDWP::ERR_INVALID_OBJECT;
2002 return nullptr;
2003 }
Ian Rogers98379392014-02-24 16:53:16 -08002004 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
2005 CHECK(c != nullptr);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002006 if (!c->IsAssignableFrom(thread_group->GetClass())) {
2007 // This is not a java.lang.ThreadGroup.
2008 *error = JDWP::ERR_INVALID_THREAD_GROUP;
2009 return nullptr;
2010 }
2011 *error = JDWP::ERR_NONE;
2012 return thread_group;
2013}
2014
2015JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
2016 ScopedObjectAccessUnchecked soa(Thread::Current());
2017 JDWP::JdwpError error;
2018 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2019 if (error != JDWP::ERR_NONE) {
2020 return error;
2021 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002022 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupName");
Mathieu Chartierc7853442015-03-27 14:35:38 -07002023 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_name);
Ian Rogersc0542af2014-09-03 16:16:56 -07002024 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002025 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002026
2027 std::string thread_group_name(s->ToModifiedUtf8());
2028 expandBufAddUtf8String(pReply, thread_group_name);
2029 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002030}
2031
Sebastien Hertza06430c2014-09-15 19:21:30 +02002032JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08002033 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002034 JDWP::JdwpError error;
Sebastien Hertza06430c2014-09-15 19:21:30 +02002035 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2036 if (error != JDWP::ERR_NONE) {
2037 return error;
2038 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002039 mirror::Object* parent;
2040 {
2041 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupParent");
Mathieu Chartierc7853442015-03-27 14:35:38 -07002042 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_parent);
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002043 CHECK(f != nullptr);
2044 parent = f->GetObject(thread_group);
2045 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002046 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
2047 expandBufAddObjectId(pReply, parent_group_id);
2048 return JDWP::ERR_NONE;
2049}
2050
2051static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
2052 std::vector<JDWP::ObjectId>* child_thread_group_ids)
2053 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2054 CHECK(thread_group != nullptr);
2055
2056 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Mathieu Chartierc7853442015-03-27 14:35:38 -07002057 ArtField* groups_field = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_groups);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002058 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Sebastien Hertze49e1952014-10-13 11:27:13 +02002059 {
2060 // The "groups" field is declared as a java.util.List: check it really is
2061 // an instance of java.util.ArrayList.
2062 CHECK(groups_array_list != nullptr);
2063 mirror::Class* java_util_ArrayList_class =
2064 soa.Decode<mirror::Class*>(WellKnownClasses::java_util_ArrayList);
2065 CHECK(groups_array_list->InstanceOf(java_util_ArrayList_class));
2066 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002067
2068 // Get the array and size out of the ArrayList<ThreadGroup>...
Mathieu Chartierc7853442015-03-27 14:35:38 -07002069 ArtField* array_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_array);
2070 ArtField* size_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_size);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002071 mirror::ObjectArray<mirror::Object>* groups_array =
2072 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
2073 const int32_t size = size_field->GetInt(groups_array_list);
2074
2075 // Copy the first 'size' elements out of the array into the result.
Sebastien Hertz6995c602014-09-09 12:10:13 +02002076 ObjectRegistry* registry = Dbg::GetObjectRegistry();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002077 for (int32_t i = 0; i < size; ++i) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002078 child_thread_group_ids->push_back(registry->Add(groups_array->Get(i)));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002079 }
2080}
2081
2082JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2083 JDWP::ExpandBuf* pReply) {
2084 ScopedObjectAccessUnchecked soa(Thread::Current());
2085 JDWP::JdwpError error;
2086 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2087 if (error != JDWP::ERR_NONE) {
2088 return error;
2089 }
2090
2091 // Add child threads.
2092 {
2093 std::vector<JDWP::ObjectId> child_thread_ids;
2094 GetThreads(thread_group, &child_thread_ids);
2095 expandBufAdd4BE(pReply, child_thread_ids.size());
2096 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2097 expandBufAddObjectId(pReply, child_thread_id);
2098 }
2099 }
2100
2101 // Add child thread groups.
2102 {
2103 std::vector<JDWP::ObjectId> child_thread_groups_ids;
2104 GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids);
2105 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2106 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2107 expandBufAddObjectId(pReply, child_thread_group_id);
2108 }
2109 }
2110
2111 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002112}
2113
2114JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002115 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07002116 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002117 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002118 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002119}
2120
Jeff Hao920af3e2013-08-28 15:46:38 -07002121JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2122 switch (state) {
2123 case kBlocked:
2124 return JDWP::TS_MONITOR;
2125 case kNative:
2126 case kRunnable:
2127 case kSuspended:
2128 return JDWP::TS_RUNNING;
2129 case kSleeping:
2130 return JDWP::TS_SLEEPING;
2131 case kStarting:
2132 case kTerminated:
2133 return JDWP::TS_ZOMBIE;
2134 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002135 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002136 case kWaitingForDebuggerSend:
2137 case kWaitingForDebuggerSuspension:
2138 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002139 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002140 case kWaitingForGcToComplete:
Jeff Hao920af3e2013-08-28 15:46:38 -07002141 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002142 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002143 case kWaitingForSignalCatcherOutput:
Hiroshi Yamauchi0c8c3032015-01-16 16:54:35 -08002144 case kWaitingForVisitObjects:
Jeff Hao920af3e2013-08-28 15:46:38 -07002145 case kWaitingInMainDebuggerLoop:
2146 case kWaitingInMainSignalCatcherLoop:
2147 case kWaitingPerformingGc:
2148 case kWaiting:
2149 return JDWP::TS_WAIT;
2150 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2151 }
2152 LOG(FATAL) << "Unknown thread state: " << state;
2153 return JDWP::TS_ZOMBIE;
2154}
2155
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002156JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2157 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002158 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002159
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002160 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2161
Ian Rogersc0542af2014-09-03 16:16:56 -07002162 JDWP::JdwpError error;
2163 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002164 if (error != JDWP::ERR_NONE) {
2165 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2166 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002167 return JDWP::ERR_NONE;
2168 }
2169 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002170 }
2171
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002172 if (IsSuspendedForDebugger(soa, thread)) {
2173 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002174 }
2175
Jeff Hao920af3e2013-08-28 15:46:38 -07002176 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002177 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002178}
2179
Elliott Hughes221229c2013-01-08 18:17:50 -08002180JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002181 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002182 JDWP::JdwpError error;
2183 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002184 if (error != JDWP::ERR_NONE) {
2185 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002186 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002187 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002188 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002189 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002190}
2191
Elliott Hughesf9501702013-01-11 11:22:27 -08002192JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2193 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002194 JDWP::JdwpError error;
2195 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002196 if (error != JDWP::ERR_NONE) {
2197 return error;
2198 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002199 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002200 return JDWP::ERR_NONE;
2201}
2202
Sebastien Hertz070f7322014-09-09 12:08:49 +02002203static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa,
2204 mirror::Object* desired_thread_group, mirror::Object* peer)
2205 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2206 // Do we want threads from all thread groups?
2207 if (desired_thread_group == nullptr) {
2208 return true;
2209 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07002210 ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Sebastien Hertz070f7322014-09-09 12:08:49 +02002211 DCHECK(thread_group_field != nullptr);
2212 mirror::Object* group = thread_group_field->GetObject(peer);
2213 return (group == desired_thread_group);
2214}
2215
Sebastien Hertza06430c2014-09-15 19:21:30 +02002216void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002217 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz070f7322014-09-09 12:08:49 +02002218 std::list<Thread*> all_threads_list;
2219 {
2220 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2221 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2222 }
2223 for (Thread* t : all_threads_list) {
2224 if (t == Dbg::GetDebugThread()) {
2225 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2226 // query all threads, so it's easier if we just don't tell them about this thread.
2227 continue;
2228 }
2229 if (t->IsStillStarting()) {
2230 // This thread is being started (and has been registered in the thread list). However, it is
2231 // not completely started yet so we must ignore it.
2232 continue;
2233 }
2234 mirror::Object* peer = t->GetPeer();
2235 if (peer == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07002236 // 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 +02002237 // this thread yet.
2238 // TODO: if we identified threads to the debugger by their Thread*
2239 // rather than their peer's mirror::Object*, we could fix this.
2240 // Doing so might help us report ZOMBIE threads too.
2241 continue;
2242 }
2243 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
2244 thread_ids->push_back(gRegistry->Add(peer));
2245 }
2246 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002247}
Elliott Hughesa2155262011-11-16 16:26:58 -08002248
Ian Rogersc0542af2014-09-03 16:16:56 -07002249static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002250 struct CountStackDepthVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002251 explicit CountStackDepthVisitor(Thread* thread_in)
2252 : StackVisitor(thread_in, nullptr), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002253
Elliott Hughes64f574f2013-02-20 14:57:12 -08002254 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2255 // annotalysis.
2256 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002257 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002258 ++depth;
2259 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002260 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002261 }
2262 size_t depth;
2263 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002264
Ian Rogers7a22fa62013-01-23 12:16:16 -08002265 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002266 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002267 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002268}
2269
Ian Rogersc0542af2014-09-03 16:16:56 -07002270JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002271 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002272 JDWP::JdwpError error;
2273 *result = 0;
2274 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002275 if (error != JDWP::ERR_NONE) {
2276 return error;
2277 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002278 if (!IsSuspendedForDebugger(soa, thread)) {
2279 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2280 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002281 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002282 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002283}
2284
Ian Rogers306057f2012-11-26 12:45:53 -08002285JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2286 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002287 class GetFrameVisitor : public StackVisitor {
2288 public:
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002289 GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in,
2290 JDWP::ExpandBuf* buf_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002291 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogersc0542af2014-09-03 16:16:56 -07002292 : StackVisitor(thread, nullptr), depth_(0),
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002293 start_frame_(start_frame_in), frame_count_(frame_count_in), buf_(buf_in) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002294 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002295 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002296
Sebastien Hertz69206392015-04-07 15:54:25 +02002297 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002298 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002299 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002300 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002301 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002302 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002303 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002304 if (depth_ >= start_frame_) {
2305 JDWP::FrameId frame_id(GetFrameId());
2306 JDWP::JdwpLocation location;
Sebastien Hertz6995c602014-09-09 12:10:13 +02002307 SetJdwpLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002308 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002309 expandBufAdd8BE(buf_, frame_id);
2310 expandBufAddLocation(buf_, location);
2311 }
2312 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002313 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002314 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002315
2316 private:
2317 size_t depth_;
2318 const size_t start_frame_;
2319 const size_t frame_count_;
2320 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002321 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002322
2323 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002324 JDWP::JdwpError error;
2325 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002326 if (error != JDWP::ERR_NONE) {
2327 return error;
2328 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002329 if (!IsSuspendedForDebugger(soa, thread)) {
2330 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2331 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002332 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002333 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002334 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002335}
2336
2337JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002338 return GetThreadId(Thread::Current());
2339}
2340
2341JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002342 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002343 return gRegistry->Add(thread->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002344}
2345
Elliott Hughes475fc232011-10-25 15:00:35 -07002346void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002347 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002348}
2349
2350void Dbg::ResumeVM() {
Sebastien Hertz253fa552014-10-14 17:27:15 +02002351 Runtime::Current()->GetThreadList()->ResumeAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002352}
2353
Elliott Hughes221229c2013-01-08 18:17:50 -08002354JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002355 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002356 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002357 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002358 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002359 JDWP::JdwpError error;
2360 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002361 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002362 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002363 return JDWP::ERR_THREAD_NOT_ALIVE;
2364 }
Ian Rogers4ad5cd32014-11-11 23:08:07 -08002365 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002366 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002367 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2368 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2369 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002370 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002371 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002372 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002373 return JDWP::ERR_INTERNAL;
2374 } else {
2375 return JDWP::ERR_THREAD_NOT_ALIVE;
2376 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002377}
2378
Elliott Hughes221229c2013-01-08 18:17:50 -08002379void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002380 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002381 JDWP::JdwpError error;
2382 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2383 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002384 Thread* thread;
2385 {
2386 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2387 thread = Thread::FromManagedThread(soa, peer);
2388 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002389 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002390 LOG(WARNING) << "No such thread for resume: " << peer;
2391 return;
2392 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002393 bool needs_resume;
2394 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002395 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002396 needs_resume = thread->GetSuspendCount() > 0;
2397 }
2398 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002399 Runtime::Current()->GetThreadList()->Resume(thread, true);
2400 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002401}
2402
2403void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002404 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002405}
2406
Ian Rogers0399dde2012-06-06 17:09:28 -07002407struct GetThisVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002408 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002409 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002410 : StackVisitor(thread, context), this_object(nullptr), frame_id(frame_id_in) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002411
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002412 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2413 // annotalysis.
2414 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002415 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002416 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002417 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002418 this_object = GetThisObject();
2419 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002420 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002421 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002422
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002423 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002424 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002425};
2426
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002427JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2428 JDWP::ObjectId* result) {
2429 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002430 JDWP::JdwpError error;
2431 Thread* thread = DecodeThread(soa, thread_id, &error);
2432 if (error != JDWP::ERR_NONE) {
2433 return error;
2434 }
2435 if (!IsSuspendedForDebugger(soa, thread)) {
2436 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002437 }
Ian Rogers700a4022014-05-19 16:49:03 -07002438 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002439 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002440 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002441 *result = gRegistry->Add(visitor.this_object);
2442 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002443}
2444
Sebastien Hertz8009f392014-09-01 17:07:11 +02002445// Walks the stack until we find the frame with the given FrameId.
2446class FindFrameVisitor FINAL : public StackVisitor {
2447 public:
2448 FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
2449 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2450 : StackVisitor(thread, context), frame_id_(frame_id), error_(JDWP::ERR_INVALID_FRAMEID) {}
Ian Rogersca190662012-06-26 15:45:57 -07002451
Sebastien Hertz8009f392014-09-01 17:07:11 +02002452 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2453 // annotalysis.
2454 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
2455 if (GetFrameId() != frame_id_) {
2456 return true; // Not our frame, carry on.
Ian Rogers0399dde2012-06-06 17:09:28 -07002457 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002458 mirror::ArtMethod* m = GetMethod();
2459 if (m->IsNative()) {
2460 // We can't read/write local value from/into native method.
2461 error_ = JDWP::ERR_OPAQUE_FRAME;
2462 } else {
2463 // We found our frame.
2464 error_ = JDWP::ERR_NONE;
2465 }
2466 return false;
2467 }
2468
2469 JDWP::JdwpError GetError() const {
2470 return error_;
2471 }
2472
2473 private:
2474 const JDWP::FrameId frame_id_;
2475 JDWP::JdwpError error_;
2476};
2477
2478JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2479 JDWP::ObjectId thread_id = request->ReadThreadId();
2480 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002481
2482 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002483 JDWP::JdwpError error;
2484 Thread* thread = DecodeThread(soa, thread_id, &error);
2485 if (error != JDWP::ERR_NONE) {
2486 return error;
2487 }
2488 if (!IsSuspendedForDebugger(soa, thread)) {
2489 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes221229c2013-01-08 18:17:50 -08002490 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002491 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002492 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002493 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002494 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002495 if (visitor.GetError() != JDWP::ERR_NONE) {
2496 return visitor.GetError();
2497 }
2498
2499 // Read the values from visitor's context.
2500 int32_t slot_count = request->ReadSigned32("slot count");
2501 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2502 for (int32_t i = 0; i < slot_count; ++i) {
2503 uint32_t slot = request->ReadUnsigned32("slot");
2504 JDWP::JdwpTag reqSigByte = request->ReadTag();
2505
2506 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
2507
2508 size_t width = Dbg::GetTagWidth(reqSigByte);
Sebastien Hertz7d955652014-10-22 10:57:10 +02002509 uint8_t* ptr = expandBufAddSpace(pReply, width + 1);
Sebastien Hertz69206392015-04-07 15:54:25 +02002510 error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002511 if (error != JDWP::ERR_NONE) {
2512 return error;
2513 }
2514 }
2515 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002516}
2517
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002518constexpr JDWP::JdwpError kStackFrameLocalAccessError = JDWP::ERR_ABSENT_INFORMATION;
2519
2520static std::string GetStackContextAsString(const StackVisitor& visitor)
2521 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2522 return StringPrintf(" at DEX pc 0x%08x in method %s", visitor.GetDexPc(false),
2523 PrettyMethod(visitor.GetMethod()).c_str());
2524}
2525
2526static JDWP::JdwpError FailGetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2527 JDWP::JdwpTag tag)
2528 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2529 LOG(ERROR) << "Failed to read " << tag << " local from register v" << vreg
2530 << GetStackContextAsString(visitor);
2531 return kStackFrameLocalAccessError;
2532}
2533
Sebastien Hertz8009f392014-09-01 17:07:11 +02002534JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2535 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
2536 mirror::ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002537 JDWP::JdwpError error = JDWP::ERR_NONE;
2538 uint16_t vreg = DemangleSlot(slot, m, &error);
2539 if (error != JDWP::ERR_NONE) {
2540 return error;
2541 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002542 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002543 switch (tag) {
2544 case JDWP::JT_BOOLEAN: {
2545 CHECK_EQ(width, 1U);
2546 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002547 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2548 return FailGetLocalValue(visitor, vreg, tag);
Ian Rogers0399dde2012-06-06 17:09:28 -07002549 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002550 VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal;
2551 JDWP::Set1(buf + 1, intVal != 0);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002552 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002553 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002554 case JDWP::JT_BYTE: {
2555 CHECK_EQ(width, 1U);
2556 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002557 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2558 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002559 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002560 VLOG(jdwp) << "get byte local " << vreg << " = " << intVal;
2561 JDWP::Set1(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002562 break;
2563 }
2564 case JDWP::JT_SHORT:
2565 case JDWP::JT_CHAR: {
2566 CHECK_EQ(width, 2U);
2567 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002568 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2569 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002570 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002571 VLOG(jdwp) << "get short/char local " << vreg << " = " << intVal;
2572 JDWP::Set2BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002573 break;
2574 }
2575 case JDWP::JT_INT: {
2576 CHECK_EQ(width, 4U);
2577 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002578 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2579 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002580 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002581 VLOG(jdwp) << "get int local " << vreg << " = " << intVal;
2582 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002583 break;
2584 }
2585 case JDWP::JT_FLOAT: {
2586 CHECK_EQ(width, 4U);
2587 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002588 if (!visitor.GetVReg(m, vreg, kFloatVReg, &intVal)) {
2589 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002590 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002591 VLOG(jdwp) << "get float local " << vreg << " = " << intVal;
2592 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002593 break;
2594 }
2595 case JDWP::JT_ARRAY:
2596 case JDWP::JT_CLASS_LOADER:
2597 case JDWP::JT_CLASS_OBJECT:
2598 case JDWP::JT_OBJECT:
2599 case JDWP::JT_STRING:
2600 case JDWP::JT_THREAD:
2601 case JDWP::JT_THREAD_GROUP: {
2602 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2603 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002604 if (!visitor.GetVReg(m, vreg, kReferenceVReg, &intVal)) {
2605 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002606 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002607 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2608 VLOG(jdwp) << "get " << tag << " object local " << vreg << " = " << o;
2609 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2610 LOG(FATAL) << StringPrintf("Found invalid object %#" PRIxPTR " in register v%u",
2611 reinterpret_cast<uintptr_t>(o), vreg)
2612 << GetStackContextAsString(visitor);
2613 UNREACHABLE();
2614 }
2615 tag = TagFromObject(soa, o);
2616 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002617 break;
2618 }
2619 case JDWP::JT_DOUBLE: {
2620 CHECK_EQ(width, 8U);
2621 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002622 if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2623 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002624 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002625 VLOG(jdwp) << "get double local " << vreg << " = " << longVal;
2626 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002627 break;
2628 }
2629 case JDWP::JT_LONG: {
2630 CHECK_EQ(width, 8U);
2631 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002632 if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) {
2633 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002634 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002635 VLOG(jdwp) << "get long local " << vreg << " = " << longVal;
2636 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002637 break;
2638 }
2639 default:
2640 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002641 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002642 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002643
Sebastien Hertz8009f392014-09-01 17:07:11 +02002644 // Prepend tag, which may have been updated.
2645 JDWP::Set1(buf, tag);
2646 return JDWP::ERR_NONE;
2647}
2648
2649JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2650 JDWP::ObjectId thread_id = request->ReadThreadId();
2651 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002652
2653 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002654 JDWP::JdwpError error;
2655 Thread* thread = DecodeThread(soa, thread_id, &error);
2656 if (error != JDWP::ERR_NONE) {
2657 return error;
2658 }
2659 if (!IsSuspendedForDebugger(soa, thread)) {
2660 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes221229c2013-01-08 18:17:50 -08002661 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002662 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002663 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002664 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002665 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002666 if (visitor.GetError() != JDWP::ERR_NONE) {
2667 return visitor.GetError();
2668 }
2669
2670 // Writes the values into visitor's context.
2671 int32_t slot_count = request->ReadSigned32("slot count");
2672 for (int32_t i = 0; i < slot_count; ++i) {
2673 uint32_t slot = request->ReadUnsigned32("slot");
2674 JDWP::JdwpTag sigByte = request->ReadTag();
2675 size_t width = Dbg::GetTagWidth(sigByte);
2676 uint64_t value = request->ReadValue(width);
2677
2678 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
Sebastien Hertz69206392015-04-07 15:54:25 +02002679 error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002680 if (error != JDWP::ERR_NONE) {
2681 return error;
2682 }
2683 }
2684 return JDWP::ERR_NONE;
2685}
2686
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002687template<typename T>
2688static JDWP::JdwpError FailSetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2689 JDWP::JdwpTag tag, T value)
2690 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2691 LOG(ERROR) << "Failed to write " << tag << " local " << value
2692 << " (0x" << std::hex << value << ") into register v" << vreg
2693 << GetStackContextAsString(visitor);
2694 return kStackFrameLocalAccessError;
2695}
2696
Sebastien Hertz8009f392014-09-01 17:07:11 +02002697JDWP::JdwpError Dbg::SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
2698 uint64_t value, size_t width) {
2699 mirror::ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002700 JDWP::JdwpError error = JDWP::ERR_NONE;
2701 uint16_t vreg = DemangleSlot(slot, m, &error);
2702 if (error != JDWP::ERR_NONE) {
2703 return error;
2704 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002705 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002706 switch (tag) {
2707 case JDWP::JT_BOOLEAN:
2708 case JDWP::JT_BYTE:
2709 CHECK_EQ(width, 1U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002710 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2711 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002712 }
2713 break;
2714 case JDWP::JT_SHORT:
2715 case JDWP::JT_CHAR:
2716 CHECK_EQ(width, 2U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002717 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2718 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002719 }
2720 break;
2721 case JDWP::JT_INT:
2722 CHECK_EQ(width, 4U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002723 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
2724 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002725 }
2726 break;
2727 case JDWP::JT_FLOAT:
2728 CHECK_EQ(width, 4U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002729 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) {
2730 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002731 }
2732 break;
2733 case JDWP::JT_ARRAY:
2734 case JDWP::JT_CLASS_LOADER:
2735 case JDWP::JT_CLASS_OBJECT:
2736 case JDWP::JT_OBJECT:
2737 case JDWP::JT_STRING:
2738 case JDWP::JT_THREAD:
2739 case JDWP::JT_THREAD_GROUP: {
2740 CHECK_EQ(width, sizeof(JDWP::ObjectId));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002741 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value),
2742 &error);
2743 if (error != JDWP::ERR_NONE) {
2744 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2745 return JDWP::ERR_INVALID_OBJECT;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002746 }
2747 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
2748 kReferenceVReg)) {
2749 return FailSetLocalValue(visitor, vreg, tag, reinterpret_cast<uintptr_t>(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002750 }
2751 break;
2752 }
2753 case JDWP::JT_DOUBLE: {
2754 CHECK_EQ(width, 8U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002755 if (!visitor.SetVRegPair(m, vreg, value, kDoubleLoVReg, kDoubleHiVReg)) {
2756 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002757 }
2758 break;
2759 }
2760 case JDWP::JT_LONG: {
2761 CHECK_EQ(width, 8U);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002762 if (!visitor.SetVRegPair(m, vreg, value, kLongLoVReg, kLongHiVReg)) {
2763 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002764 }
2765 break;
2766 }
2767 default:
2768 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002769 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002770 }
2771 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002772}
2773
Sebastien Hertz6995c602014-09-09 12:10:13 +02002774static void SetEventLocation(JDWP::EventLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
2775 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2776 DCHECK(location != nullptr);
2777 if (m == nullptr) {
2778 memset(location, 0, sizeof(*location));
2779 } else {
2780 location->method = m;
2781 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002782 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002783}
2784
Ian Rogersef7d42f2014-01-06 12:55:46 -08002785void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002786 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002787 if (!IsDebuggerActive()) {
2788 return;
2789 }
2790 DCHECK(m != nullptr);
2791 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002792 JDWP::EventLocation location;
2793 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002794
Sebastien Hertz6995c602014-09-09 12:10:13 +02002795 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002796}
2797
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002798void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07002799 mirror::Object* this_object, ArtField* f) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002800 if (!IsDebuggerActive()) {
2801 return;
2802 }
2803 DCHECK(m != nullptr);
2804 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002805 JDWP::EventLocation location;
2806 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002807
Sebastien Hertz6995c602014-09-09 12:10:13 +02002808 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002809}
2810
2811void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07002812 mirror::Object* this_object, ArtField* f,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002813 const JValue* field_value) {
2814 if (!IsDebuggerActive()) {
2815 return;
2816 }
2817 DCHECK(m != nullptr);
2818 DCHECK(f != nullptr);
2819 DCHECK(field_value != 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, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002824}
2825
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002826/**
2827 * Finds the location where this exception will be caught. We search until we reach the top
2828 * frame, in which case this exception is considered uncaught.
2829 */
2830class CatchLocationFinder : public StackVisitor {
2831 public:
2832 CatchLocationFinder(Thread* self, const Handle<mirror::Throwable>& exception, Context* context)
2833 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
2834 : StackVisitor(self, context),
2835 self_(self),
2836 exception_(exception),
2837 handle_scope_(self),
2838 this_at_throw_(handle_scope_.NewHandle<mirror::Object>(nullptr)),
2839 catch_method_(handle_scope_.NewHandle<mirror::ArtMethod>(nullptr)),
2840 throw_method_(handle_scope_.NewHandle<mirror::ArtMethod>(nullptr)),
2841 catch_dex_pc_(DexFile::kDexNoIndex),
2842 throw_dex_pc_(DexFile::kDexNoIndex) {
2843 }
2844
2845 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2846 mirror::ArtMethod* method = GetMethod();
2847 DCHECK(method != nullptr);
2848 if (method->IsRuntimeMethod()) {
2849 // Ignore callee save method.
2850 DCHECK(method->IsCalleeSaveMethod());
2851 return true;
2852 }
2853
2854 uint32_t dex_pc = GetDexPc();
2855 if (throw_method_.Get() == nullptr) {
2856 // First Java method found. It is either the method that threw the exception,
2857 // or the Java native method that is reporting an exception thrown by
2858 // native code.
2859 this_at_throw_.Assign(GetThisObject());
2860 throw_method_.Assign(method);
2861 throw_dex_pc_ = dex_pc;
2862 }
2863
2864 if (dex_pc != DexFile::kDexNoIndex) {
2865 StackHandleScope<2> hs(self_);
2866 uint32_t found_dex_pc;
2867 Handle<mirror::Class> exception_class(hs.NewHandle(exception_->GetClass()));
2868 Handle<mirror::ArtMethod> h_method(hs.NewHandle(method));
2869 bool unused_clear_exception;
2870 found_dex_pc = mirror::ArtMethod::FindCatchBlock(
2871 h_method, exception_class, dex_pc, &unused_clear_exception);
2872 if (found_dex_pc != DexFile::kDexNoIndex) {
2873 catch_method_.Assign(method);
2874 catch_dex_pc_ = found_dex_pc;
2875 return false; // End stack walk.
2876 }
2877 }
2878 return true; // Continue stack walk.
2879 }
2880
2881 mirror::ArtMethod* GetCatchMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2882 return catch_method_.Get();
2883 }
2884
2885 mirror::ArtMethod* GetThrowMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2886 return throw_method_.Get();
2887 }
2888
2889 mirror::Object* GetThisAtThrow() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2890 return this_at_throw_.Get();
2891 }
2892
2893 uint32_t GetCatchDexPc() const {
2894 return catch_dex_pc_;
2895 }
2896
2897 uint32_t GetThrowDexPc() const {
2898 return throw_dex_pc_;
2899 }
2900
2901 private:
2902 Thread* const self_;
2903 const Handle<mirror::Throwable>& exception_;
2904 StackHandleScope<3> handle_scope_;
2905 MutableHandle<mirror::Object> this_at_throw_;
2906 MutableHandle<mirror::ArtMethod> catch_method_;
2907 MutableHandle<mirror::ArtMethod> throw_method_;
2908 uint32_t catch_dex_pc_;
2909 uint32_t throw_dex_pc_;
2910
2911 DISALLOW_COPY_AND_ASSIGN(CatchLocationFinder);
2912};
2913
2914void Dbg::PostException(mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002915 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002916 return;
2917 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002918 StackHandleScope<1> handle_scope(Thread::Current());
2919 Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object));
2920 std::unique_ptr<Context> context(Context::Create());
2921 CatchLocationFinder clf(Thread::Current(), h_exception, context.get());
2922 clf.WalkStack(/* include_transitions */ false);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002923 JDWP::EventLocation exception_throw_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002924 SetEventLocation(&exception_throw_location, clf.GetThrowMethod(), clf.GetThrowDexPc());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002925 JDWP::EventLocation exception_catch_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002926 SetEventLocation(&exception_catch_location, clf.GetCatchMethod(), clf.GetCatchDexPc());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002927
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002928 gJdwpState->PostException(&exception_throw_location, h_exception.Get(), &exception_catch_location,
2929 clf.GetThisAtThrow());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002930}
2931
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002932void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002933 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002934 return;
2935 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002936 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002937}
2938
Ian Rogers62d6c772013-02-27 08:32:07 -08002939void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002940 mirror::ArtMethod* m, uint32_t dex_pc,
2941 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002942 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002943 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002944 }
2945
Elliott Hughes86964332012-02-15 19:37:42 -08002946 if (IsBreakpoint(m, dex_pc)) {
2947 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002948 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002949
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002950 // If the debugger is single-stepping one of our threads, check to
2951 // see if we're that thread and we've reached a step point.
2952 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002953 if (single_step_control != nullptr) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002954 CHECK(!m->IsNative());
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002955 if (single_step_control->GetStepDepth() == JDWP::SD_INTO) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002956 // Step into method calls. We break when the line number
2957 // or method pointer changes. If we're in SS_MIN mode, we
2958 // always stop.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002959 if (single_step_control->GetMethod() != m) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002960 event_flags |= kSingleStep;
2961 VLOG(jdwp) << "SS new method";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002962 } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002963 event_flags |= kSingleStep;
2964 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002965 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002966 event_flags |= kSingleStep;
2967 VLOG(jdwp) << "SS new line";
2968 }
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002969 } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002970 // Step over method calls. We break when the line number is
2971 // different and the frame depth is <= the original frame
2972 // depth. (We can't just compare on the method, because we
2973 // might get unrolled past it by an exception, and it's tricky
2974 // to identify recursion.)
2975
2976 int stack_depth = GetStackDepth(thread);
2977
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002978 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002979 // Popped up one or more frames, always trigger.
2980 event_flags |= kSingleStep;
2981 VLOG(jdwp) << "SS method pop";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002982 } else if (stack_depth == single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002983 // Same depth, see if we moved.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002984 if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002985 event_flags |= kSingleStep;
2986 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002987 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002988 event_flags |= kSingleStep;
2989 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002990 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002991 }
2992 } else {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002993 CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002994 // Return from the current method. We break when the frame
2995 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002996
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002997 // This differs from the "method exit" break in that it stops
2998 // with the PC at the next instruction in the returned-to
2999 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08003000
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003001 int stack_depth = GetStackDepth(thread);
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003002 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003003 event_flags |= kSingleStep;
3004 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003005 }
3006 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003007 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003008
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003009 // If there's something interesting going on, see if it matches one
3010 // of the debugger filters.
3011 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01003012 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003013 }
3014}
3015
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003016size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
3017 switch (instrumentation_event) {
3018 case instrumentation::Instrumentation::kMethodEntered:
3019 return &method_enter_event_ref_count_;
3020 case instrumentation::Instrumentation::kMethodExited:
3021 return &method_exit_event_ref_count_;
3022 case instrumentation::Instrumentation::kDexPcMoved:
3023 return &dex_pc_change_event_ref_count_;
3024 case instrumentation::Instrumentation::kFieldRead:
3025 return &field_read_event_ref_count_;
3026 case instrumentation::Instrumentation::kFieldWritten:
3027 return &field_write_event_ref_count_;
3028 case instrumentation::Instrumentation::kExceptionCaught:
3029 return &exception_catch_event_ref_count_;
3030 default:
3031 return nullptr;
3032 }
3033}
3034
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003035// Process request while all mutator threads are suspended.
3036void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003037 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003038 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003039 case DeoptimizationRequest::kNothing:
3040 LOG(WARNING) << "Ignoring empty deoptimization request.";
3041 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003042 case DeoptimizationRequest::kRegisterForEvent:
3043 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003044 request.InstrumentationEvent());
3045 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
3046 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003047 break;
3048 case DeoptimizationRequest::kUnregisterForEvent:
3049 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003050 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003051 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003052 request.InstrumentationEvent());
3053 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003054 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003055 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003056 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003057 instrumentation->DeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003058 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003059 break;
3060 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003061 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003062 instrumentation->UndeoptimizeEverything();
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003063 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003064 break;
3065 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003066 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
3067 instrumentation->Deoptimize(request.Method());
3068 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003069 break;
3070 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003071 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
3072 instrumentation->Undeoptimize(request.Method());
3073 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003074 break;
3075 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003076 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003077 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003078 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003079}
3080
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003081void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003082 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003083 // Nothing to do.
3084 return;
3085 }
Brian Carlstrom306db812014-09-05 13:01:41 -07003086 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003087 RequestDeoptimizationLocked(req);
3088}
3089
3090void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003091 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003092 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003093 DCHECK_NE(req.InstrumentationEvent(), 0u);
3094 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003095 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003096 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003097 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003098 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003099 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003100 deoptimization_requests_.push_back(req);
3101 }
3102 *counter = *counter + 1;
3103 break;
3104 }
3105 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003106 DCHECK_NE(req.InstrumentationEvent(), 0u);
3107 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003108 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003109 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003110 *counter = *counter - 1;
3111 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003112 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003113 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003114 deoptimization_requests_.push_back(req);
3115 }
3116 break;
3117 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003118 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003119 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003120 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003121 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3122 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003123 deoptimization_requests_.push_back(req);
3124 }
3125 ++full_deoptimization_event_count_;
3126 break;
3127 }
3128 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003129 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003130 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003131 --full_deoptimization_event_count_;
3132 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003133 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3134 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003135 deoptimization_requests_.push_back(req);
3136 }
3137 break;
3138 }
3139 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003140 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003141 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003142 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003143 deoptimization_requests_.push_back(req);
3144 break;
3145 }
3146 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003147 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003148 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003149 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003150 deoptimization_requests_.push_back(req);
3151 break;
3152 }
3153 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003154 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003155 break;
3156 }
3157 }
3158}
3159
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003160void Dbg::ManageDeoptimization() {
3161 Thread* const self = Thread::Current();
3162 {
3163 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003164 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003165 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003166 return;
3167 }
3168 }
3169 CHECK_EQ(self->GetState(), kRunnable);
3170 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
3171 // We need to suspend mutator threads first.
3172 Runtime* const runtime = Runtime::Current();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07003173 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003174 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003175 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003176 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003177 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003178 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003179 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003180 ProcessDeoptimizationRequest(request);
3181 }
3182 deoptimization_requests_.clear();
3183 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003184 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
3185 runtime->GetThreadList()->ResumeAll();
3186 self->TransitionFromSuspendedToRunnable();
3187}
3188
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003189static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
3190 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003191 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003192 if (code_item == nullptr) {
3193 // TODO We should not be asked to watch location in a native or abstract method so the code item
3194 // should never be null. We could just check we never encounter this case.
3195 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003196 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003197 // Note: method verifier may cause thread suspension.
3198 self->AssertThreadSuspensionIsAllowable();
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003199 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003200 mirror::Class* declaring_class = m->GetDeclaringClass();
3201 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3202 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003203 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Ian Rogers7b078e82014-09-10 14:44:24 -07003204 verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07003205 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method,
Mathieu Chartier4306ef82014-12-19 18:41:47 -08003206 m->GetAccessFlags(), false, true, false, true);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003207 // Note: we don't need to verify the method.
3208 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3209}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003210
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003211static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003212 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003213 for (Breakpoint& breakpoint : gBreakpoints) {
3214 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003215 return &breakpoint;
3216 }
3217 }
3218 return nullptr;
3219}
3220
Mathieu Chartierd8565452015-03-26 09:41:50 -07003221bool Dbg::MethodHasAnyBreakpoints(mirror::ArtMethod* method) {
3222 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
3223 return FindFirstBreakpointForMethod(method) != nullptr;
3224}
3225
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003226// Sanity checks all existing breakpoints on the same method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003227static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m,
3228 DeoptimizationRequest::Kind deoptimization_kind)
Sebastien Hertzed2be172014-08-19 15:33:43 +02003229 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003230 for (const Breakpoint& breakpoint : gBreakpoints) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003231 if (breakpoint.Method() == m) {
3232 CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind());
3233 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003234 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003235 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
3236 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003237 // We should have deoptimized everything but not "selectively" deoptimized this method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003238 CHECK(instrumentation->AreAllMethodsDeoptimized());
3239 CHECK(!instrumentation->IsDeoptimized(m));
3240 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003241 // We should have "selectively" deoptimized this method.
3242 // Note: while we have not deoptimized everything for this method, we may have done it for
3243 // another event.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003244 CHECK(instrumentation->IsDeoptimized(m));
3245 } else {
3246 // This method does not require deoptimization.
3247 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3248 CHECK(!instrumentation->IsDeoptimized(m));
3249 }
3250}
3251
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003252// Returns the deoptimization kind required to set a breakpoint in a method.
3253// If a breakpoint has already been set, we also return the first breakpoint
3254// through the given 'existing_brkpt' pointer.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003255static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self,
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003256 mirror::ArtMethod* m,
3257 const Breakpoint** existing_brkpt)
Sebastien Hertzf3928792014-11-17 19:00:37 +01003258 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
3259 if (!Dbg::RequiresDeoptimization()) {
3260 // We already run in interpreter-only mode so we don't need to deoptimize anything.
3261 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method "
3262 << PrettyMethod(m);
3263 return DeoptimizationRequest::kNothing;
3264 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003265 const Breakpoint* first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003266 {
3267 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003268 first_breakpoint = FindFirstBreakpointForMethod(m);
3269 *existing_brkpt = first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003270 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003271
3272 if (first_breakpoint == nullptr) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003273 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3274 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3275 // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension.
3276 // Therefore we must not hold any lock when we call it.
3277 bool need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3278 if (need_full_deoptimization) {
3279 VLOG(jdwp) << "Need full deoptimization because of possible inlining of method "
3280 << PrettyMethod(m);
3281 return DeoptimizationRequest::kFullDeoptimization;
3282 } else {
3283 // We don't need to deoptimize if the method has not been compiled.
3284 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
3285 const bool is_compiled = class_linker->GetOatMethodQuickCodeFor(m) != nullptr;
3286 if (is_compiled) {
Sebastien Hertz6963e442014-11-26 22:11:27 +01003287 // If the method may be called through its direct code pointer (without loading
3288 // its updated entrypoint), we need full deoptimization to not miss the breakpoint.
3289 if (class_linker->MayBeCalledWithDirectCodePointer(m)) {
3290 VLOG(jdwp) << "Need full deoptimization because of possible direct code call "
3291 << "into image for compiled method " << PrettyMethod(m);
3292 return DeoptimizationRequest::kFullDeoptimization;
3293 } else {
3294 VLOG(jdwp) << "Need selective deoptimization for compiled method " << PrettyMethod(m);
3295 return DeoptimizationRequest::kSelectiveDeoptimization;
3296 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003297 } else {
3298 // Method is not compiled: we don't need to deoptimize.
3299 VLOG(jdwp) << "No need for deoptimization for non-compiled method " << PrettyMethod(m);
3300 return DeoptimizationRequest::kNothing;
3301 }
3302 }
3303 } else {
3304 // There is at least one breakpoint for this method: we don't need to deoptimize.
3305 // Let's check that all breakpoints are configured the same way for deoptimization.
3306 VLOG(jdwp) << "Breakpoint already set: no deoptimization is required";
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003307 DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003308 if (kIsDebugBuild) {
3309 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3310 SanityCheckExistingBreakpoints(m, deoptimization_kind);
3311 }
3312 return DeoptimizationRequest::kNothing;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003313 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003314}
3315
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003316// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3317// request if we need to deoptimize.
3318void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3319 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07003320 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003321 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003322
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003323 const Breakpoint* existing_breakpoint = nullptr;
3324 const DeoptimizationRequest::Kind deoptimization_kind =
3325 GetRequiredDeoptimizationKind(self, m, &existing_breakpoint);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003326 req->SetKind(deoptimization_kind);
3327 if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
3328 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003329 } else {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003330 CHECK(deoptimization_kind == DeoptimizationRequest::kNothing ||
3331 deoptimization_kind == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003332 req->SetMethod(nullptr);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003333 }
3334
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003335 {
3336 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003337 // If there is at least one existing breakpoint on the same method, the new breakpoint
3338 // must have the same deoptimization kind than the existing breakpoint(s).
3339 DeoptimizationRequest::Kind breakpoint_deoptimization_kind;
3340 if (existing_breakpoint != nullptr) {
3341 breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind();
3342 } else {
3343 breakpoint_deoptimization_kind = deoptimization_kind;
3344 }
3345 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind));
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003346 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3347 << gBreakpoints[gBreakpoints.size() - 1];
3348 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003349}
3350
3351// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3352// request if we need to undeoptimize.
3353void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003354 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003355 mirror::ArtMethod* m = FromMethodId(location->method_id);
3356 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003357 DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003358 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003359 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003360 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Sebastien Hertzf3928792014-11-17 19:00:37 +01003361 deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind();
3362 DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization,
3363 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003364 gBreakpoints.erase(gBreakpoints.begin() + i);
3365 break;
3366 }
3367 }
3368 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3369 if (existing_breakpoint == nullptr) {
3370 // There is no more breakpoint on this method: we need to undeoptimize.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003371 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003372 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003373 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3374 req->SetMethod(nullptr);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003375 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003376 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003377 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3378 req->SetMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003379 } else {
3380 // This method had no need for deoptimization: do nothing.
3381 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3382 req->SetKind(DeoptimizationRequest::kNothing);
3383 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003384 }
3385 } else {
3386 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003387 req->SetKind(DeoptimizationRequest::kNothing);
3388 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003389 if (kIsDebugBuild) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003390 SanityCheckExistingBreakpoints(m, deoptimization_kind);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003391 }
Elliott Hughes86964332012-02-15 19:37:42 -08003392 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003393}
3394
Daniel Mihalyieb076692014-08-22 17:33:31 +02003395bool Dbg::IsForcedInterpreterNeededForCallingImpl(Thread* thread, mirror::ArtMethod* m) {
3396 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3397 if (ssc == nullptr) {
3398 // If we are not single-stepping, then we don't have to force interpreter.
3399 return false;
3400 }
3401 if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) {
3402 // If we are in interpreter only mode, then we don't have to force interpreter.
3403 return false;
3404 }
3405
3406 if (!m->IsNative() && !m->IsProxyMethod()) {
3407 // If we want to step into a method, then we have to force interpreter on that call.
3408 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3409 return true;
3410 }
3411 }
3412 return false;
3413}
3414
3415bool Dbg::IsForcedInterpreterNeededForResolutionImpl(Thread* thread, mirror::ArtMethod* m) {
3416 instrumentation::Instrumentation* const instrumentation =
3417 Runtime::Current()->GetInstrumentation();
3418 // If we are in interpreter only mode, then we don't have to force interpreter.
3419 if (instrumentation->InterpretOnly()) {
3420 return false;
3421 }
3422 // We can only interpret pure Java method.
3423 if (m->IsNative() || m->IsProxyMethod()) {
3424 return false;
3425 }
3426 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3427 if (ssc != nullptr) {
3428 // If we want to step into a method, then we have to force interpreter on that call.
3429 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3430 return true;
3431 }
3432 // If we are stepping out from a static initializer, by issuing a step
3433 // in or step over, that was implicitly invoked by calling a static method,
3434 // then we need to step into that method. Having a lower stack depth than
3435 // the one the single step control has indicates that the step originates
3436 // from the static initializer.
3437 if (ssc->GetStepDepth() != JDWP::SD_OUT &&
3438 ssc->GetStackDepth() > GetStackDepth(thread)) {
3439 return true;
3440 }
3441 }
3442 // There are cases where we have to force interpreter on deoptimized methods,
3443 // because in some cases the call will not be performed by invoking an entry
3444 // point that has been replaced by the deoptimization, but instead by directly
3445 // invoking the compiled code of the method, for example.
3446 return instrumentation->IsDeoptimized(m);
3447}
3448
3449bool Dbg::IsForcedInstrumentationNeededForResolutionImpl(Thread* thread, mirror::ArtMethod* m) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003450 // The upcall can be null and in that case we don't need to do anything.
Daniel Mihalyieb076692014-08-22 17:33:31 +02003451 if (m == nullptr) {
3452 return false;
3453 }
3454 instrumentation::Instrumentation* const instrumentation =
3455 Runtime::Current()->GetInstrumentation();
3456 // If we are in interpreter only mode, then we don't have to force interpreter.
3457 if (instrumentation->InterpretOnly()) {
3458 return false;
3459 }
3460 // We can only interpret pure Java method.
3461 if (m->IsNative() || m->IsProxyMethod()) {
3462 return false;
3463 }
3464 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3465 if (ssc != nullptr) {
3466 // If we are stepping out from a static initializer, by issuing a step
3467 // out, that was implicitly invoked by calling a static method, then we
3468 // need to step into the caller of that method. Having a lower stack
3469 // depth than the one the single step control has indicates that the
3470 // step originates from the static initializer.
3471 if (ssc->GetStepDepth() == JDWP::SD_OUT &&
3472 ssc->GetStackDepth() > GetStackDepth(thread)) {
3473 return true;
3474 }
3475 }
3476 // If we are returning from a static intializer, that was implicitly
3477 // invoked by calling a static method and the caller is deoptimized,
3478 // then we have to deoptimize the stack without forcing interpreter
3479 // on the static method that was called originally. This problem can
3480 // be solved easily by forcing instrumentation on the called method,
3481 // because the instrumentation exit hook will recognise the need of
3482 // stack deoptimization by calling IsForcedInterpreterNeededForUpcall.
3483 return instrumentation->IsDeoptimized(m);
3484}
3485
3486bool Dbg::IsForcedInterpreterNeededForUpcallImpl(Thread* thread, mirror::ArtMethod* m) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003487 // The upcall can be null and in that case we don't need to do anything.
Daniel Mihalyieb076692014-08-22 17:33:31 +02003488 if (m == nullptr) {
3489 return false;
3490 }
3491 instrumentation::Instrumentation* const instrumentation =
3492 Runtime::Current()->GetInstrumentation();
3493 // If we are in interpreter only mode, then we don't have to force interpreter.
3494 if (instrumentation->InterpretOnly()) {
3495 return false;
3496 }
3497 // We can only interpret pure Java method.
3498 if (m->IsNative() || m->IsProxyMethod()) {
3499 return false;
3500 }
3501 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3502 if (ssc != nullptr) {
3503 // The debugger is not interested in what is happening under the level
3504 // of the step, thus we only force interpreter when we are not below of
3505 // the step.
3506 if (ssc->GetStackDepth() >= GetStackDepth(thread)) {
3507 return true;
3508 }
3509 }
3510 // We have to require stack deoptimization if the upcall is deoptimized.
3511 return instrumentation->IsDeoptimized(m);
3512}
3513
Jeff Hao449db332013-04-12 18:30:52 -07003514// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3515// cause suspension if the thread is the current thread.
3516class ScopedThreadSuspension {
3517 public:
Ian Rogers33e95662013-05-20 20:29:14 -07003518 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01003519 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07003520 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003521 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003522 error_(JDWP::ERR_NONE),
3523 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003524 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003525 ScopedObjectAccessUnchecked soa(self);
Sebastien Hertz69206392015-04-07 15:54:25 +02003526 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003527 if (error_ == JDWP::ERR_NONE) {
3528 if (thread_ == soa.Self()) {
3529 self_suspend_ = true;
3530 } else {
3531 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Sebastien Hertz6995c602014-09-09 12:10:13 +02003532 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003533 bool timed_out;
Ian Rogers4ad5cd32014-11-11 23:08:07 -08003534 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3535 Thread* suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true,
3536 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07003537 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
Ian Rogersf3d874c2014-07-17 18:52:42 -07003538 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003539 // Thread terminated from under us while suspending.
3540 error_ = JDWP::ERR_INVALID_THREAD;
3541 } else {
3542 CHECK_EQ(suspended_thread, thread_);
3543 other_suspend_ = true;
3544 }
3545 }
3546 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003547 }
Elliott Hughes86964332012-02-15 19:37:42 -08003548
Jeff Hao449db332013-04-12 18:30:52 -07003549 Thread* GetThread() const {
3550 return thread_;
3551 }
3552
3553 JDWP::JdwpError GetError() const {
3554 return error_;
3555 }
3556
3557 ~ScopedThreadSuspension() {
3558 if (other_suspend_) {
3559 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3560 }
3561 }
3562
3563 private:
3564 Thread* thread_;
3565 JDWP::JdwpError error_;
3566 bool self_suspend_;
3567 bool other_suspend_;
3568};
3569
3570JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3571 JDWP::JdwpStepDepth step_depth) {
3572 Thread* self = Thread::Current();
3573 ScopedThreadSuspension sts(self, thread_id);
3574 if (sts.GetError() != JDWP::ERR_NONE) {
3575 return sts.GetError();
3576 }
3577
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003578 // Work out what ArtMethod* we're in, the current line number, and how deep the stack currently
Elliott Hughes2435a572012-02-17 16:07:41 -08003579 // is for step-out.
Ian Rogers0399dde2012-06-06 17:09:28 -07003580 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003581 explicit SingleStepStackVisitor(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
3582 : StackVisitor(thread, nullptr), stack_depth(0), method(nullptr), line_number(-1) {
Elliott Hughes86964332012-02-15 19:37:42 -08003583 }
Ian Rogersca190662012-06-26 15:45:57 -07003584
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003585 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3586 // annotalysis.
3587 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003588 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003589 if (!m->IsRuntimeMethod()) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003590 ++stack_depth;
3591 if (method == nullptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003592 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003593 method = m;
Ian Rogersc0542af2014-09-03 16:16:56 -07003594 if (dex_cache != nullptr) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003595 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003596 line_number = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003597 }
Elliott Hughes86964332012-02-15 19:37:42 -08003598 }
3599 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003600 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003601 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003602
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003603 int stack_depth;
3604 mirror::ArtMethod* method;
3605 int32_t line_number;
Elliott Hughes86964332012-02-15 19:37:42 -08003606 };
Jeff Hao449db332013-04-12 18:30:52 -07003607
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003608 Thread* const thread = sts.GetThread();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003609 SingleStepStackVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07003610 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003611
Elliott Hughes2435a572012-02-17 16:07:41 -08003612 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
Elliott Hughes2435a572012-02-17 16:07:41 -08003613 struct DebugCallbackContext {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003614 explicit DebugCallbackContext(SingleStepControl* single_step_control_cb,
3615 int32_t line_number_cb, const DexFile::CodeItem* code_item)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003616 : single_step_control_(single_step_control_cb), line_number_(line_number_cb),
3617 code_item_(code_item), last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003618 }
3619
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003620 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number_cb) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003621 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003622 if (static_cast<int32_t>(line_number_cb) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003623 if (!context->last_pc_valid) {
3624 // Everything from this address until the next line change is ours.
3625 context->last_pc = address;
3626 context->last_pc_valid = true;
3627 }
3628 // Otherwise, if we're already in a valid range for this line,
3629 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003630 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003631 // Add everything from the last entry up until here to the set
3632 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003633 context->single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003634 }
3635 context->last_pc_valid = false;
3636 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003637 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003638 }
3639
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003640 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003641 // If the line number was the last in the position table...
3642 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003643 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003644 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003645 single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003646 }
3647 }
3648 }
3649
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003650 SingleStepControl* const single_step_control_;
3651 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003652 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003653 bool last_pc_valid;
3654 uint32_t last_pc;
3655 };
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003656
3657 // Allocate single step.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003658 SingleStepControl* single_step_control =
3659 new (std::nothrow) SingleStepControl(step_size, step_depth,
3660 visitor.stack_depth, visitor.method);
3661 if (single_step_control == nullptr) {
3662 LOG(ERROR) << "Failed to allocate SingleStepControl";
3663 return JDWP::ERR_OUT_OF_MEMORY;
3664 }
3665
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003666 mirror::ArtMethod* m = single_step_control->GetMethod();
3667 const int32_t line_number = visitor.line_number;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003668 if (!m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003669 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003670 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003671 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07003672 DebugCallbackContext::Callback, nullptr, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003673 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003674
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003675 // Activate single-step in the thread.
3676 thread->ActivateSingleStepControl(single_step_control);
Elliott Hughes86964332012-02-15 19:37:42 -08003677
Elliott Hughes2435a572012-02-17 16:07:41 -08003678 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003679 VLOG(jdwp) << "Single-step thread: " << *thread;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003680 VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize();
3681 VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth();
3682 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->GetMethod());
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003683 VLOG(jdwp) << "Single-step current line: " << line_number;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003684 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth();
Elliott Hughes2435a572012-02-17 16:07:41 -08003685 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003686 for (uint32_t dex_pc : single_step_control->GetDexPcs()) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003687 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003688 }
3689 }
3690
3691 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003692}
3693
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003694void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3695 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07003696 JDWP::JdwpError error;
3697 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003698 if (error == JDWP::ERR_NONE) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003699 thread->DeactivateSingleStepControl();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003700 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003701}
3702
Elliott Hughes45651fd2012-02-21 15:48:20 -08003703static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3704 switch (tag) {
3705 default:
3706 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
Ian Rogersfc787ec2014-10-09 21:56:44 -07003707 UNREACHABLE();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003708
3709 // Primitives.
3710 case JDWP::JT_BYTE: return 'B';
3711 case JDWP::JT_CHAR: return 'C';
3712 case JDWP::JT_FLOAT: return 'F';
3713 case JDWP::JT_DOUBLE: return 'D';
3714 case JDWP::JT_INT: return 'I';
3715 case JDWP::JT_LONG: return 'J';
3716 case JDWP::JT_SHORT: return 'S';
3717 case JDWP::JT_VOID: return 'V';
3718 case JDWP::JT_BOOLEAN: return 'Z';
3719
3720 // Reference types.
3721 case JDWP::JT_ARRAY:
3722 case JDWP::JT_OBJECT:
3723 case JDWP::JT_STRING:
3724 case JDWP::JT_THREAD:
3725 case JDWP::JT_THREAD_GROUP:
3726 case JDWP::JT_CLASS_LOADER:
3727 case JDWP::JT_CLASS_OBJECT:
3728 return 'L';
3729 }
3730}
3731
Elliott Hughes88d63092013-01-09 09:55:54 -08003732JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3733 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003734 uint32_t arg_count, uint64_t* arg_values,
3735 JDWP::JdwpTag* arg_types, uint32_t options,
3736 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3737 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003738 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3739
Ian Rogersc0542af2014-09-03 16:16:56 -07003740 Thread* targetThread = nullptr;
Sebastien Hertz1558b572015-02-25 15:05:59 +01003741 std::unique_ptr<DebugInvokeReq> req;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003742 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003743 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003744 ScopedObjectAccessUnchecked soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07003745 JDWP::JdwpError error;
3746 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003747 if (error != JDWP::ERR_NONE) {
3748 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3749 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003750 }
Sebastien Hertz1558b572015-02-25 15:05:59 +01003751 if (targetThread->GetInvokeReq() != nullptr) {
3752 // Thread is already invoking a method on behalf of the debugger.
3753 LOG(ERROR) << "InvokeMethod request for thread already invoking a method: " << *targetThread;
3754 return JDWP::ERR_ALREADY_INVOKING;
3755 }
3756 if (!targetThread->IsReadyForDebugInvoke()) {
3757 // Thread is not suspended by an event so it cannot invoke a method.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003758 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3759 return JDWP::ERR_INVALID_THREAD;
3760 }
3761
3762 /*
3763 * We currently have a bug where we don't successfully resume the
3764 * target thread if the suspend count is too deep. We're expected to
3765 * require one "resume" for each "suspend", but when asked to execute
3766 * a method we have to resume fully and then re-suspend it back to the
3767 * same level. (The easiest way to cause this is to type "suspend"
3768 * multiple times in jdb.)
3769 *
3770 * It's unclear what this means when the event specifies "resume all"
3771 * and some threads are suspended more deeply than others. This is
3772 * a rare problem, so for now we just prevent it from hanging forever
3773 * by rejecting the method invocation request. Without this, we will
3774 * be stuck waiting on a suspended thread.
3775 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003776 int suspend_count;
3777 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003778 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003779 suspend_count = targetThread->GetSuspendCount();
3780 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003781 if (suspend_count > 1) {
3782 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003783 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003784 }
3785
Ian Rogersc0542af2014-09-03 16:16:56 -07003786 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3787 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003788 return JDWP::ERR_INVALID_OBJECT;
3789 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003790
Sebastien Hertz1558b572015-02-25 15:05:59 +01003791 gRegistry->Get<mirror::Object*>(thread_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07003792 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003793 return JDWP::ERR_INVALID_OBJECT;
3794 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003795
Ian Rogersc0542af2014-09-03 16:16:56 -07003796 mirror::Class* c = DecodeClass(class_id, &error);
3797 if (c == nullptr) {
3798 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003799 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003800
Brian Carlstromea46f952013-07-30 01:26:50 -07003801 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003802 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003803 return JDWP::ERR_INVALID_METHODID;
3804 }
3805 if (m->IsStatic()) {
3806 if (m->GetDeclaringClass() != c) {
3807 return JDWP::ERR_INVALID_METHODID;
3808 }
3809 } else {
3810 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3811 return JDWP::ERR_INVALID_METHODID;
3812 }
3813 }
3814
3815 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003816 uint32_t shorty_len = 0;
3817 const char* shorty = m->GetShorty(&shorty_len);
3818 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003819 return JDWP::ERR_ILLEGAL_ARGUMENT;
3820 }
Elliott Hughes09201632013-04-15 15:50:07 -07003821
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003822 {
3823 StackHandleScope<3> hs(soa.Self());
Ian Rogersa0485602014-12-02 15:48:04 -08003824 HandleWrapper<mirror::ArtMethod> h_m(hs.NewHandleWrapper(&m));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003825 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3826 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3827 const DexFile::TypeList* types = m->GetParameterTypeList();
3828 for (size_t i = 0; i < arg_count; ++i) {
3829 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003830 return JDWP::ERR_ILLEGAL_ARGUMENT;
3831 }
3832
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003833 if (shorty[i + 1] == 'L') {
3834 // Did we really get an argument of an appropriate reference type?
Ian Rogersa0485602014-12-02 15:48:04 -08003835 mirror::Class* parameter_type =
3836 h_m->GetClassFromTypeIndex(types->GetTypeItem(i).type_idx_, true);
Ian Rogersc0542af2014-09-03 16:16:56 -07003837 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
3838 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003839 return JDWP::ERR_INVALID_OBJECT;
3840 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003841 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003842 return JDWP::ERR_ILLEGAL_ARGUMENT;
3843 }
3844
3845 // Turn the on-the-wire ObjectId into a jobject.
3846 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3847 v.l = gRegistry->GetJObject(arg_values[i]);
3848 }
Elliott Hughes09201632013-04-15 15:50:07 -07003849 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003850 }
3851
Sebastien Hertz1558b572015-02-25 15:05:59 +01003852 // Allocates a DebugInvokeReq.
3853 req.reset(new (std::nothrow) DebugInvokeReq(receiver, c, m, options, arg_values, arg_count));
3854 if (req.get() == nullptr) {
3855 LOG(ERROR) << "Failed to allocate DebugInvokeReq";
3856 return JDWP::ERR_OUT_OF_MEMORY;
3857 }
3858
3859 // Attach the DebugInvokeReq to the target thread so it executes the method when
3860 // it is resumed. Once the invocation completes, it will detach it and signal us
3861 // before suspending itself.
3862 targetThread->SetDebugInvokeReq(req.get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003863 }
3864
3865 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3866 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3867 // call, and it's unwise to hold it during WaitForSuspend.
3868
3869 {
3870 /*
3871 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003872 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003873 * run out of memory. It's also a good idea to change it before locking
3874 * the invokeReq mutex, although that should never be held for long.
3875 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003876 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003877
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003878 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003879 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003880 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003881
3882 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003883 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003884 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003885 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003886 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003887 thread_list->Resume(targetThread, true);
3888 }
3889
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003890 // The target thread is resumed but needs the JDWP token we're holding.
3891 // We release it now and will acquire it again when the invocation is
3892 // complete and the target thread suspends itself.
3893 gJdwpState->ReleaseJdwpTokenForCommand();
3894
Elliott Hughesd07986f2011-12-06 18:27:45 -08003895 // Wait for the request to finish executing.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003896 while (targetThread->GetInvokeReq() != nullptr) {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003897 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003898 }
3899 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003900 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003901
3902 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003903 SuspendThread(thread_id, false /* request_suspension */);
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003904
3905 // Now the thread is suspended again, we can re-acquire the JDWP token.
3906 gJdwpState->AcquireJdwpTokenForCommand();
3907
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003908 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003909 }
3910
3911 /*
3912 * Suspend the threads. We waited for the target thread to suspend
3913 * itself, so all we need to do is suspend the others.
3914 *
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01003915 * The SuspendAllForDebugger() call will double-suspend the event thread,
Elliott Hughesd07986f2011-12-06 18:27:45 -08003916 * so we want to resume the target thread once to keep the books straight.
3917 */
3918 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003919 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003920 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003921 thread_list->SuspendAllForDebugger();
3922 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003923 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003924 thread_list->Resume(targetThread, true);
3925 }
3926
3927 // Copy the result.
3928 *pResultTag = req->result_tag;
Sebastien Hertz1558b572015-02-25 15:05:59 +01003929 *pResultValue = req->result_value;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003930 *pExceptionId = req->exception;
3931 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003932}
3933
3934void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003935 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003936
Elliott Hughes81ff3182012-03-23 20:35:56 -07003937 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003938 // to preserve that across the method invocation.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003939 StackHandleScope<4> hs(soa.Self());
3940 auto old_exception = hs.NewHandle<mirror::Throwable>(soa.Self()->GetException());
3941 soa.Self()->ClearException();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003942
3943 // Translate the method through the vtable, unless the debugger wants to suppress it.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003944 MutableHandle<mirror::ArtMethod> m(hs.NewHandle(pReq->method.Read()));
3945 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) {
3946 mirror::ArtMethod* actual_method = pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m.Get());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003947 if (actual_method != m.Get()) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01003948 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get())
3949 << " to " << PrettyMethod(actual_method);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003950 m.Assign(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003951 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003952 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003953 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get())
Sebastien Hertz1558b572015-02-25 15:05:59 +01003954 << " receiver=" << pReq->receiver.Read()
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003955 << " arg_count=" << pReq->arg_count;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003956 CHECK(m.Get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003957
3958 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3959
Sebastien Hertz1558b572015-02-25 15:05:59 +01003960 JValue result = InvokeWithJValues(soa, pReq->receiver.Read(), soa.EncodeMethod(m.Get()),
3961 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003962
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003963 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty());
Sebastien Hertz1558b572015-02-25 15:05:59 +01003964 const bool is_object_result = (pReq->result_tag == JDWP::JT_OBJECT);
3965 Handle<mirror::Object> object_result = hs.NewHandle(is_object_result ? result.GetL() : nullptr);
3966 Handle<mirror::Throwable> exception = hs.NewHandle(soa.Self()->GetException());
3967 soa.Self()->ClearException();
3968 pReq->exception = gRegistry->Add(exception.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003969 if (pReq->exception != 0) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01003970 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get()
3971 << " " << exception->Dump();
3972 pReq->result_value = 0;
3973 } else if (is_object_result) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003974 /* if no exception thrown, examine object result more closely */
Sebastien Hertz1558b572015-02-25 15:05:59 +01003975 JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003976 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003977 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003978 pReq->result_tag = new_tag;
3979 }
3980
Sebastien Hertz1558b572015-02-25 15:05:59 +01003981 // Register the object in the registry and reference its ObjectId. This ensures
3982 // GC safety and prevents from accessing stale reference if the object is moved.
3983 pReq->result_value = gRegistry->Add(object_result.Get());
3984 } else {
3985 // Primitive result.
3986 DCHECK(IsPrimitiveTag(pReq->result_tag));
3987 pReq->result_value = result.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003988 }
3989
Ian Rogersc0542af2014-09-03 16:16:56 -07003990 if (old_exception.Get() != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003991 soa.Self()->SetException(old_exception.Get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003992 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003993}
3994
Elliott Hughesd07986f2011-12-06 18:27:45 -08003995/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003996 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003997 * need to process each, accumulate the replies, and ship the whole thing
3998 * back.
3999 *
4000 * Returns "true" if we have a reply. The reply buffer is newly allocated,
4001 * and includes the chunk type/length, followed by the data.
4002 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08004003 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004004 * chunk. If this becomes inconvenient we will need to adapt.
4005 */
Ian Rogersc0542af2014-09-03 16:16:56 -07004006bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004007 Thread* self = Thread::Current();
4008 JNIEnv* env = self->GetJniEnv();
4009
Ian Rogersc0542af2014-09-03 16:16:56 -07004010 uint32_t type = request->ReadUnsigned32("type");
4011 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004012
4013 // Create a byte[] corresponding to 'request'.
Ian Rogersc0542af2014-09-03 16:16:56 -07004014 size_t request_length = request->size();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004015 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Ian Rogersc0542af2014-09-03 16:16:56 -07004016 if (dataArray.get() == nullptr) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004017 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004018 env->ExceptionClear();
4019 return false;
4020 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004021 env->SetByteArrayRegion(dataArray.get(), 0, request_length,
4022 reinterpret_cast<const jbyte*>(request->data()));
4023 request->Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004024
4025 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004026 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004027 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08004028 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004029 return false;
4030 }
4031
4032 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07004033 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4034 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004035 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004036 if (env->ExceptionCheck()) {
4037 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
4038 env->ExceptionDescribe();
4039 env->ExceptionClear();
4040 return false;
4041 }
4042
Ian Rogersc0542af2014-09-03 16:16:56 -07004043 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004044 return false;
4045 }
4046
4047 /*
4048 * Pull the pieces out of the chunk. We copy the results into a
4049 * newly-allocated buffer that the caller can free. We don't want to
4050 * continue using the Chunk object because nothing has a reference to it.
4051 *
4052 * We could avoid this by returning type/data/offset/length and having
4053 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07004054 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004055 * if we have responses for multiple chunks.
4056 *
4057 * So we're pretty much stuck with copying data around multiple times.
4058 */
Elliott Hugheseac76672012-05-24 21:56:51 -07004059 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 -08004060 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07004061 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07004062 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004063
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004064 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 -07004065 if (length == 0 || replyData.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004066 return false;
4067 }
4068
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004069 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004070 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
Ian Rogersc0542af2014-09-03 16:16:56 -07004071 if (reply == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004072 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
4073 return false;
4074 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07004075 JDWP::Set4BE(reply + 0, type);
4076 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004077 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004078
4079 *pReplyBuf = reply;
4080 *pReplyLen = length + kChunkHdrLen;
4081
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004082 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004083 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004084}
4085
Elliott Hughesa2155262011-11-16 16:26:58 -08004086void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004087 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07004088
4089 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07004090 if (self->GetState() != kRunnable) {
4091 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
4092 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07004093 }
4094
4095 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07004096 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07004097 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4098 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
4099 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07004100 if (env->ExceptionCheck()) {
4101 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
4102 env->ExceptionDescribe();
4103 env->ExceptionClear();
4104 }
4105}
4106
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004107void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004108 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004109}
4110
4111void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004112 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07004113 gDdmThreadNotification = false;
4114}
4115
4116/*
Elliott Hughes82188472011-11-07 18:11:48 -08004117 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07004118 *
4119 * Because we broadcast the full set of threads when the notifications are
4120 * first enabled, it's possible for "thread" to be actively executing.
4121 */
Elliott Hughes82188472011-11-07 18:11:48 -08004122void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004123 if (!gDdmThreadNotification) {
4124 return;
4125 }
4126
Elliott Hughes82188472011-11-07 18:11:48 -08004127 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004128 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004129 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07004130 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08004131 } else {
4132 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004133 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004134 StackHandleScope<1> hs(soa.Self());
4135 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
Ian Rogersc0542af2014-09-03 16:16:56 -07004136 size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0;
Jeff Hao848f70a2014-01-15 13:49:50 -08004137 const jchar* chars = (name.Get() != nullptr) ? name->GetValue() : nullptr;
Elliott Hughes82188472011-11-07 18:11:48 -08004138
Elliott Hughes21f32d72011-11-09 17:44:13 -08004139 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004140 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004141 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08004142 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
4143 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07004144 }
4145}
4146
Elliott Hughes47fce012011-10-25 18:37:19 -07004147void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004148 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07004149 gDdmThreadNotification = enable;
4150 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004151 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
4152 // see a suspension in progress and block until that ends. They then post their own start
4153 // notification.
4154 SuspendVM();
4155 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07004156 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004157 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004158 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004159 threads = Runtime::Current()->GetThreadList()->GetList();
4160 }
4161 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004162 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07004163 for (Thread* thread : threads) {
4164 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004165 }
4166 }
4167 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07004168 }
4169}
4170
Elliott Hughesa2155262011-11-16 16:26:58 -08004171void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07004172 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02004173 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004174 }
Elliott Hughes82188472011-11-07 18:11:48 -08004175 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07004176}
4177
4178void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004179 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004180}
4181
4182void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004183 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004184}
4185
Elliott Hughes82188472011-11-07 18:11:48 -08004186void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004187 CHECK(buf != nullptr);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004188 iovec vec[1];
4189 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
4190 vec[0].iov_len = byte_count;
4191 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004192}
4193
Elliott Hughes21f32d72011-11-09 17:44:13 -08004194void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
4195 DdmSendChunk(type, bytes.size(), &bytes[0]);
4196}
4197
Brian Carlstromf5293522013-07-19 00:24:00 -07004198void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004199 if (gJdwpState == nullptr) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004200 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07004201 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08004202 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004203 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004204}
4205
Mathieu Chartierad466ad2015-01-08 16:28:08 -08004206JDWP::JdwpState* Dbg::GetJdwpState() {
4207 return gJdwpState;
4208}
4209
Elliott Hughes767a1472011-10-26 18:49:02 -07004210int Dbg::DdmHandleHpifChunk(HpifWhen when) {
4211 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07004212 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07004213 return true;
4214 }
4215
4216 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4217 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4218 return false;
4219 }
4220
4221 gDdmHpifWhen = when;
4222 return true;
4223}
4224
4225bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4226 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4227 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4228 return false;
4229 }
4230
4231 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4232 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4233 return false;
4234 }
4235
4236 if (native) {
4237 gDdmNhsgWhen = when;
4238 gDdmNhsgWhat = what;
4239 } else {
4240 gDdmHpsgWhen = when;
4241 gDdmHpsgWhat = what;
4242 }
4243 return true;
4244}
4245
Elliott Hughes7162ad92011-10-27 14:08:42 -07004246void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4247 // If there's a one-shot 'when', reset it.
4248 if (reason == gDdmHpifWhen) {
4249 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4250 gDdmHpifWhen = HPIF_WHEN_NEVER;
4251 }
4252 }
4253
4254 /*
4255 * Chunk HPIF (client --> server)
4256 *
4257 * Heap Info. General information about the heap,
4258 * suitable for a summary display.
4259 *
4260 * [u4]: number of heaps
4261 *
4262 * For each heap:
4263 * [u4]: heap ID
4264 * [u8]: timestamp in ms since Unix epoch
4265 * [u1]: capture reason (same as 'when' value from server)
4266 * [u4]: max heap size in bytes (-Xmx)
4267 * [u4]: current heap size in bytes
4268 * [u4]: current number of bytes allocated
4269 * [u4]: current number of objects allocated
4270 */
4271 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004272 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004273 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004274 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004275 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004276 JDWP::Append8BE(bytes, MilliTime());
4277 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004278 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4279 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004280 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4281 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004282 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
4283 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07004284}
4285
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004286enum HpsgSolidity {
4287 SOLIDITY_FREE = 0,
4288 SOLIDITY_HARD = 1,
4289 SOLIDITY_SOFT = 2,
4290 SOLIDITY_WEAK = 3,
4291 SOLIDITY_PHANTOM = 4,
4292 SOLIDITY_FINALIZABLE = 5,
4293 SOLIDITY_SWEEP = 6,
4294};
4295
4296enum HpsgKind {
4297 KIND_OBJECT = 0,
4298 KIND_CLASS_OBJECT = 1,
4299 KIND_ARRAY_1 = 2,
4300 KIND_ARRAY_2 = 3,
4301 KIND_ARRAY_4 = 4,
4302 KIND_ARRAY_8 = 5,
4303 KIND_UNKNOWN = 6,
4304 KIND_NATIVE = 7,
4305};
4306
4307#define HPSG_PARTIAL (1<<7)
4308#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4309
Ian Rogers30fab402012-01-23 15:43:46 -08004310class HeapChunkContext {
4311 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004312 // Maximum chunk size. Obtain this from the formula:
4313 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4314 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004315 : buf_(16384 - 16),
4316 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004317 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004318 Reset();
4319 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004320 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004321 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004322 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004323 }
4324 }
4325
4326 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004327 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004328 Flush();
4329 }
4330 }
4331
Mathieu Chartier36dab362014-07-30 14:59:56 -07004332 void SetChunkOverhead(size_t chunk_overhead) {
4333 chunk_overhead_ = chunk_overhead;
4334 }
4335
4336 void ResetStartOfNextChunk() {
4337 startOfNextMemoryChunk_ = nullptr;
4338 }
4339
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004340 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004341 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004342 return;
4343 }
4344
4345 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004346 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4347 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004348
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004349 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4350 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004351 // [u4]: length of piece, in allocation units
4352 // 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 -08004353 pieceLenField_ = p_;
4354 JDWP::Write4BE(&p_, 0x55555555);
4355 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004356 }
4357
Ian Rogersb726dcb2012-09-05 08:57:23 -07004358 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004359 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004360 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4361 CHECK(needHeader_);
4362 return;
4363 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004364 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004365 CHECK_LE(&buf_[0], pieceLenField_);
4366 CHECK_LE(pieceLenField_, p_);
4367 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004368
Ian Rogers30fab402012-01-23 15:43:46 -08004369 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004370 Reset();
4371 }
4372
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004373 static void HeapChunkJavaCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004374 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
4375 Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004376 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes);
4377 }
4378
4379 static void HeapChunkNativeCallback(void* start, void* end, size_t used_bytes, void* arg)
4380 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4381 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004382 }
4383
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004384 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004385 enum { ALLOCATION_UNIT_SIZE = 8 };
4386
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004387 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004388 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004389 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004390 totalAllocationUnits_ = 0;
4391 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004392 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004393 }
4394
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004395 bool IsNative() const {
4396 return type_ == CHUNK_TYPE("NHSG");
4397 }
4398
4399 // Returns true if the object is not an empty chunk.
4400 bool ProcessRecord(void* start, size_t used_bytes) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004401 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4402 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004403 if (used_bytes == 0) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004404 if (start == nullptr) {
4405 // Reset for start of new heap.
4406 startOfNextMemoryChunk_ = nullptr;
4407 Flush();
4408 }
4409 // Only process in use memory so that free region information
4410 // also includes dlmalloc book keeping.
4411 return false;
Elliott Hughesa2155262011-11-16 16:26:58 -08004412 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004413 if (startOfNextMemoryChunk_ != nullptr) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004414 // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because
4415 // of the use of mmaps, so don't report. If not free memory then start a new segment.
4416 bool flush = true;
4417 if (start > startOfNextMemoryChunk_) {
4418 const size_t kMaxFreeLen = 2 * kPageSize;
4419 void* free_start = startOfNextMemoryChunk_;
4420 void* free_end = start;
4421 const size_t free_len =
4422 reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start);
4423 if (!IsNative() || free_len < kMaxFreeLen) {
4424 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative());
4425 flush = false;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004426 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004427 }
4428 if (flush) {
4429 startOfNextMemoryChunk_ = nullptr;
4430 Flush();
4431 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004432 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004433 return true;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004434 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004435
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004436 void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes)
4437 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4438 if (ProcessRecord(start, used_bytes)) {
4439 uint8_t state = ExamineNativeObject(start);
4440 AppendChunk(state, start, used_bytes + chunk_overhead_, true /*is_native*/);
4441 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4442 }
4443 }
4444
4445 void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes)
4446 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
4447 if (ProcessRecord(start, used_bytes)) {
4448 // Determine the type of this chunk.
4449 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4450 // If it's the same, we should combine them.
4451 uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start));
4452 AppendChunk(state, start, used_bytes + chunk_overhead_, false /*is_native*/);
4453 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4454 }
4455 }
4456
4457 void AppendChunk(uint8_t state, void* ptr, size_t length, bool is_native)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004458 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004459 // Make sure there's enough room left in the buffer.
4460 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4461 // 17 bytes for any header.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004462 const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17;
4463 size_t byte_left = &buf_.back() - p_;
4464 if (byte_left < needed) {
4465 if (is_native) {
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004466 // Cannot trigger memory allocation while walking native heap.
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004467 return;
4468 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004469 Flush();
4470 }
4471
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004472 byte_left = &buf_.back() - p_;
4473 if (byte_left < needed) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004474 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4475 << needed << " bytes)";
4476 return;
4477 }
4478 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004479 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004480 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4481 totalAllocationUnits_ += length;
4482 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004483 *p_++ = state | HPSG_PARTIAL;
4484 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004485 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004486 }
Ian Rogers30fab402012-01-23 15:43:46 -08004487 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004488 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004489 }
4490
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004491 uint8_t ExamineNativeObject(const void* p) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4492 return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4493 }
4494
4495 uint8_t ExamineJavaObject(mirror::Object* o)
Ian Rogersef7d42f2014-01-06 12:55:46 -08004496 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004497 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004498 return HPSG_STATE(SOLIDITY_FREE, 0);
4499 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004500 // It's an allocated chunk. Figure out what it is.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004501 gc::Heap* heap = Runtime::Current()->GetHeap();
4502 if (!heap->IsLiveObjectLocked(o)) {
4503 LOG(ERROR) << "Invalid object in managed heap: " << o;
Elliott Hughesa2155262011-11-16 16:26:58 -08004504 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4505 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004506 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004507 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004508 // The object was probably just created but hasn't been initialized yet.
4509 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4510 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004511 if (!heap->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004512 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004513 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4514 }
Mathieu Chartierf26e1b32015-01-29 10:47:10 -08004515 if (c->GetClass() == nullptr) {
4516 LOG(ERROR) << "Null class of class " << c << " for object " << o;
4517 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4518 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004519 if (c->IsClassClass()) {
4520 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4521 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004522 if (c->IsArrayClass()) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004523 switch (c->GetComponentSize()) {
4524 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4525 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4526 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4527 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4528 }
4529 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004530 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4531 }
4532
Ian Rogers30fab402012-01-23 15:43:46 -08004533 std::vector<uint8_t> buf_;
4534 uint8_t* p_;
4535 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004536 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004537 size_t totalAllocationUnits_;
4538 uint32_t type_;
Ian Rogers30fab402012-01-23 15:43:46 -08004539 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004540 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004541
Elliott Hughesa2155262011-11-16 16:26:58 -08004542 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4543};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004544
Mathieu Chartier36dab362014-07-30 14:59:56 -07004545static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
4546 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
4547 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004548 HeapChunkContext::HeapChunkJavaCallback(
Mathieu Chartier36dab362014-07-30 14:59:56 -07004549 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4550}
4551
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004552void Dbg::DdmSendHeapSegments(bool native) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004553 Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen;
4554 Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004555 if (when == HPSG_WHEN_NEVER) {
4556 return;
4557 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004558 // Figure out what kind of chunks we'll be sending.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004559 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS)
4560 << static_cast<int>(what);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004561
4562 // First, send a heap start chunk.
4563 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004564 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004565 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004566 Thread* self = Thread::Current();
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004567 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004568
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004569 // Send a series of heap segment chunks.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004570 HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native);
Elliott Hughesa2155262011-11-16 16:26:58 -08004571 if (native) {
Ian Rogers872dd822014-10-30 11:19:14 -07004572#if defined(HAVE_ANDROID_OS) && defined(USE_DLMALLOC)
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004573 dlmalloc_inspect_all(HeapChunkContext::HeapChunkNativeCallback, &context);
4574 HeapChunkContext::HeapChunkNativeCallback(nullptr, nullptr, 0, &context); // Indicate end of a space.
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004575#else
4576 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4577#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004578 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004579 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004580 for (const auto& space : heap->GetContinuousSpaces()) {
4581 if (space->IsDlMallocSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004582 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004583 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4584 // allocation then the first sizeof(size_t) may belong to it.
4585 context.SetChunkOverhead(sizeof(size_t));
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004586 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004587 } else if (space->IsRosAllocSpace()) {
4588 context.SetChunkOverhead(0);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004589 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4590 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
4591 self->TransitionFromRunnableToSuspended(kSuspended);
4592 ThreadList* tl = Runtime::Current()->GetThreadList();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07004593 tl->SuspendAll(__FUNCTION__);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004594 {
4595 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004596 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004597 }
4598 tl->ResumeAll();
4599 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004600 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004601 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004602 context.SetChunkOverhead(0);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004603 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004604 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004605 } else if (space->IsRegionSpace()) {
4606 heap->IncrementDisableMovingGC(self);
4607 self->TransitionFromRunnableToSuspended(kSuspended);
4608 ThreadList* tl = Runtime::Current()->GetThreadList();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07004609 tl->SuspendAll(__FUNCTION__);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004610 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4611 context.SetChunkOverhead(0);
4612 space->AsRegionSpace()->Walk(BumpPointerSpaceCallback, &context);
4613 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
4614 tl->ResumeAll();
4615 self->TransitionFromSuspendedToRunnable();
4616 heap->DecrementDisableMovingGC(self);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004617 } else {
4618 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004619 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004620 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004621 }
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004622 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004623 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004624 context.SetChunkOverhead(0);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004625 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004626 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004627
4628 // Finally, send a heap end chunk.
4629 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004630}
4631
Elliott Hughesb1a58792013-07-11 18:10:58 -07004632static size_t GetAllocTrackerMax() {
4633#ifdef HAVE_ANDROID_OS
4634 // Check whether there's a system property overriding the number of records.
4635 const char* propertyName = "dalvik.vm.allocTrackerMax";
4636 char allocRecordMaxString[PROPERTY_VALUE_MAX];
4637 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
4638 char* end;
4639 size_t value = strtoul(allocRecordMaxString, &end, 10);
4640 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004641 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4642 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004643 return kDefaultNumAllocRecords;
4644 }
4645 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07004646 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
4647 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07004648 return kDefaultNumAllocRecords;
4649 }
4650 return value;
4651 }
4652#endif
4653 return kDefaultNumAllocRecords;
4654}
4655
Brian Carlstrom306db812014-09-05 13:01:41 -07004656void Dbg::SetAllocTrackingEnabled(bool enable) {
4657 Thread* self = Thread::Current();
4658 if (enable) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004659 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004660 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4661 if (recent_allocation_records_ != nullptr) {
4662 return; // Already enabled, bail.
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004663 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004664 alloc_record_max_ = GetAllocTrackerMax();
4665 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4666 << kMaxAllocRecordStackDepth << " frames, taking "
4667 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4668 DCHECK_EQ(alloc_record_head_, 0U);
4669 DCHECK_EQ(alloc_record_count_, 0U);
4670 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4671 CHECK(recent_allocation_records_ != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004672 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004673 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004674 } else {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004675 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004676 ScopedObjectAccess soa(self); // For type_cache_.Clear();
4677 MutexLock mu(self, *Locks::alloc_tracker_lock_);
4678 if (recent_allocation_records_ == nullptr) {
4679 return; // Already disabled, bail.
4680 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07004681 LOG(INFO) << "Disabling alloc tracker";
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004682 delete[] recent_allocation_records_;
Ian Rogersc0542af2014-09-03 16:16:56 -07004683 recent_allocation_records_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -07004684 alloc_record_head_ = 0;
4685 alloc_record_count_ = 0;
Mathieu Chartier4345c462014-06-27 10:20:14 -07004686 type_cache_.Clear();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01004687 }
Brian Carlstrom306db812014-09-05 13:01:41 -07004688 // If an allocation comes in before we uninstrument, we will safely drop it on the floor.
Mathieu Chartier9ef78b52014-09-25 17:03:12 -07004689 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08004690 }
4691}
4692
Ian Rogers0399dde2012-06-06 17:09:28 -07004693struct AllocRecordStackVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004694 AllocRecordStackVisitor(Thread* thread, AllocRecord* record_in)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004695 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004696 : StackVisitor(thread, nullptr), record(record_in), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08004697
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004698 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
4699 // annotalysis.
4700 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08004701 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07004702 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08004703 }
Brian Carlstromea46f952013-07-30 01:26:50 -07004704 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07004705 if (!m->IsRuntimeMethod()) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004706 record->StackElement(depth)->SetMethod(m);
4707 record->StackElement(depth)->SetDexPc(GetDexPc());
Elliott Hughes530fa002012-03-12 11:44:49 -07004708 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08004709 }
Elliott Hughes530fa002012-03-12 11:44:49 -07004710 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08004711 }
4712
4713 ~AllocRecordStackVisitor() {
4714 // Clear out any unused stack trace elements.
4715 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004716 record->StackElement(depth)->SetMethod(nullptr);
4717 record->StackElement(depth)->SetDexPc(0);
Elliott Hughes545a0642011-11-08 19:10:03 -08004718 }
4719 }
4720
4721 AllocRecord* record;
4722 size_t depth;
4723};
4724
Ian Rogers844506b2014-09-12 19:59:33 -07004725void Dbg::RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004726 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004727 if (recent_allocation_records_ == nullptr) {
Brian Carlstrom306db812014-09-05 13:01:41 -07004728 // In the process of shutting down recording, bail.
Elliott Hughes545a0642011-11-08 19:10:03 -08004729 return;
4730 }
4731
4732 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08004733 if (++alloc_record_head_ == alloc_record_max_) {
4734 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08004735 }
4736
4737 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08004738 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004739 record->SetType(type);
4740 record->SetByteCount(byte_count);
4741 record->SetThinLockId(self->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004742
4743 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08004744 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07004745 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08004746
Ian Rogers719d1a32014-03-06 12:13:39 -08004747 if (alloc_record_count_ < alloc_record_max_) {
4748 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004749 }
4750}
4751
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004752// Returns the index of the head element.
4753//
Brian Carlstrom306db812014-09-05 13:01:41 -07004754// We point at the most-recently-written record, so if alloc_record_count_ is 1
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004755// we want to use the current element. Take "head+1" and subtract count
4756// from it.
4757//
4758// We need to handle underflow in our circular buffer, so we add
Brian Carlstrom306db812014-09-05 13:01:41 -07004759// alloc_record_max_ and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08004760size_t Dbg::HeadIndex() {
4761 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4762 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004763}
4764
4765void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004766 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004767 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004768 if (recent_allocation_records_ == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004769 LOG(INFO) << "Not recording tracked allocations";
4770 return;
4771 }
4772
4773 // "i" is the head of the list. We want to start at the end of the
4774 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004775 size_t i = HeadIndex();
Brian Carlstrom306db812014-09-05 13:01:41 -07004776 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4777 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004778
Ian Rogers719d1a32014-03-06 12:13:39 -08004779 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004780 while (count--) {
4781 AllocRecord* record = &recent_allocation_records_[i];
4782
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004783 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount())
4784 << PrettyClass(record->Type());
Elliott Hughes545a0642011-11-08 19:10:03 -08004785
4786 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004787 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame);
4788 mirror::ArtMethod* m = stack_element->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004789 if (m == nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004790 break;
4791 }
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004792 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004793 }
4794
4795 // pause periodically to help logcat catch up
4796 if ((count % 5) == 0) {
4797 usleep(40000);
4798 }
4799
Ian Rogers719d1a32014-03-06 12:13:39 -08004800 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004801 }
4802}
4803
4804class StringTable {
4805 public:
4806 StringTable() {
4807 }
4808
Mathieu Chartier4345c462014-06-27 10:20:14 -07004809 void Add(const std::string& str) {
4810 table_.insert(str);
4811 }
4812
4813 void Add(const char* str) {
4814 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004815 }
4816
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004817 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004818 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004819 if (it == table_.end()) {
4820 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4821 }
4822 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004823 }
4824
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004825 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004826 return table_.size();
4827 }
4828
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004829 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004830 for (const std::string& str : table_) {
4831 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004832 size_t s_len = CountModifiedUtf8Chars(s);
Christopher Ferris8a354052015-04-24 17:23:53 -07004833 std::unique_ptr<uint16_t[]> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004834 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4835 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004836 }
4837 }
4838
4839 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004840 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004841 DISALLOW_COPY_AND_ASSIGN(StringTable);
4842};
4843
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004844static const char* GetMethodSourceFile(mirror::ArtMethod* method)
Sebastien Hertz280286a2014-04-28 09:26:50 +02004845 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004846 DCHECK(method != nullptr);
4847 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004848 return (source_file != nullptr) ? source_file : "";
4849}
4850
Elliott Hughes545a0642011-11-08 19:10:03 -08004851/*
4852 * The data we send to DDMS contains everything we have recorded.
4853 *
4854 * Message header (all values big-endian):
4855 * (1b) message header len (to allow future expansion); includes itself
4856 * (1b) entry header len
4857 * (1b) stack frame len
4858 * (2b) number of entries
4859 * (4b) offset to string table from start of message
4860 * (2b) number of class name strings
4861 * (2b) number of method name strings
4862 * (2b) number of source file name strings
4863 * For each entry:
4864 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004865 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004866 * (2b) allocated object's class name index
4867 * (1b) stack depth
4868 * For each stack frame:
4869 * (2b) method's class name
4870 * (2b) method name
4871 * (2b) method source file
4872 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4873 * (xb) class name strings
4874 * (xb) method name strings
4875 * (xb) source file strings
4876 *
4877 * As with other DDM traffic, strings are sent as a 4-byte length
4878 * followed by UTF-16 data.
4879 *
4880 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07004881 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004882 * each table, but in practice there should be far fewer.
4883 *
4884 * The chief reason for using a string table here is to keep the size of
4885 * the DDMS message to a minimum. This is partly to make the protocol
4886 * efficient, but also because we have to form the whole thing up all at
4887 * once in a memory buffer.
4888 *
4889 * We use separate string tables for class names, method names, and source
4890 * files to keep the indexes small. There will generally be no overlap
4891 * between the contents of these tables.
4892 */
4893jbyteArray Dbg::GetRecentAllocations() {
Ian Rogerscf7f1912014-10-22 22:06:39 -07004894 if ((false)) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004895 DumpRecentAllocations();
4896 }
4897
Ian Rogers50b35e22012-10-04 10:09:15 -07004898 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004899 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004900 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004901 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004902 //
4903 // Part 1: generate string tables.
4904 //
4905 StringTable class_names;
4906 StringTable method_names;
4907 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004908
Brian Carlstrom306db812014-09-05 13:01:41 -07004909 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_);
4910 uint16_t count = capped_count;
4911 size_t idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004912 while (count--) {
4913 AllocRecord* record = &recent_allocation_records_[idx];
Ian Rogers1ff3c982014-08-12 02:30:58 -07004914 std::string temp;
4915 class_names.Add(record->Type()->GetDescriptor(&temp));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004916 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004917 mirror::ArtMethod* m = record->StackElement(i)->Method();
Ian Rogersc0542af2014-09-03 16:16:56 -07004918 if (m != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004919 class_names.Add(m->GetDeclaringClassDescriptor());
4920 method_names.Add(m->GetName());
4921 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004922 }
4923 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004924
Ian Rogers719d1a32014-03-06 12:13:39 -08004925 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004926 }
4927
Brian Carlstrom306db812014-09-05 13:01:41 -07004928 LOG(INFO) << "allocation records: " << capped_count;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004929
4930 //
4931 // Part 2: Generate the output and store it in the buffer.
4932 //
4933
4934 // (1b) message header len (to allow future expansion); includes itself
4935 // (1b) entry header len
4936 // (1b) stack frame len
4937 const int kMessageHeaderLen = 15;
4938 const int kEntryHeaderLen = 9;
4939 const int kStackFrameLen = 8;
4940 JDWP::Append1BE(bytes, kMessageHeaderLen);
4941 JDWP::Append1BE(bytes, kEntryHeaderLen);
4942 JDWP::Append1BE(bytes, kStackFrameLen);
4943
4944 // (2b) number of entries
4945 // (4b) offset to string table from start of message
4946 // (2b) number of class name strings
4947 // (2b) number of method name strings
4948 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07004949 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004950 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004951 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004952 JDWP::Append2BE(bytes, class_names.Size());
4953 JDWP::Append2BE(bytes, method_names.Size());
4954 JDWP::Append2BE(bytes, filenames.Size());
4955
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004956 idx = HeadIndex();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004957 std::string temp;
Brian Carlstrom306db812014-09-05 13:01:41 -07004958 for (count = capped_count; count != 0; --count) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004959 // For each entry:
4960 // (4b) total allocation size
4961 // (2b) thread id
4962 // (2b) allocated object's class name index
4963 // (1b) stack depth
4964 AllocRecord* record = &recent_allocation_records_[idx];
4965 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07004966 size_t allocated_object_class_name_index =
Ian Rogers1ff3c982014-08-12 02:30:58 -07004967 class_names.IndexOf(record->Type()->GetDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004968 JDWP::Append4BE(bytes, record->ByteCount());
4969 JDWP::Append2BE(bytes, record->ThinLockId());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004970 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4971 JDWP::Append1BE(bytes, stack_depth);
4972
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004973 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4974 // For each stack frame:
4975 // (2b) method's class name
4976 // (2b) method name
4977 // (2b) method source file
4978 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004979 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004980 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
4981 size_t method_name_index = method_names.IndexOf(m->GetName());
4982 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004983 JDWP::Append2BE(bytes, class_name_index);
4984 JDWP::Append2BE(bytes, method_name_index);
4985 JDWP::Append2BE(bytes, file_name_index);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07004986 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004987 }
Ian Rogers719d1a32014-03-06 12:13:39 -08004988 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004989 }
4990
4991 // (xb) class name strings
4992 // (xb) method name strings
4993 // (xb) source file strings
4994 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4995 class_names.WriteTo(bytes);
4996 method_names.WriteTo(bytes);
4997 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004998 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004999 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08005000 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07005001 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08005002 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
5003 }
5004 return result;
5005}
5006
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07005007mirror::ArtMethod* DeoptimizationRequest::Method() const {
5008 ScopedObjectAccessUnchecked soa(Thread::Current());
5009 return soa.DecodeMethod(method_);
5010}
5011
5012void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) {
5013 ScopedObjectAccessUnchecked soa(Thread::Current());
5014 method_ = soa.EncodeMethod(m);
5015}
5016
Elliott Hughes872d4ec2011-10-21 17:07:15 -07005017} // namespace art