blob: 3784212ef0f5aec39ed87cbf3ddd97e773e2ecf2 [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
Alex Light8c2b9292017-11-09 13:21:01 -080021#include <functional>
Andreas Gampef774a4e2017-07-06 22:15:18 -070022#include <memory>
Elliott Hughes545a0642011-11-08 19:10:03 -080023#include <set>
Andreas Gampef774a4e2017-07-06 22:15:18 -070024#include <vector>
Elliott Hughes545a0642011-11-08 19:10:03 -080025
Andreas Gampe46ee31b2016-12-14 10:11:49 -080026#include "android-base/stringprintf.h"
27
Ian Rogers166db042013-07-26 12:05:57 -070028#include "arch/context.h"
Mathieu Chartierc7853442015-03-27 14:35:38 -070029#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070030#include "art_method-inl.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070031#include "base/enums.h"
Andreas Gampef774a4e2017-07-06 22:15:18 -070032#include "base/strlcpy.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010033#include "base/time_utils.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034#include "class_linker-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070035#include "class_linker.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070036#include "dex_file-inl.h"
David Sehr9323e6e2016-09-13 08:58:35 -070037#include "dex_file_annotations.h"
Andreas Gampee2abbc62017-09-15 11:59:26 -070038#include "dex_file_types.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070039#include "dex_instruction.h"
Mingyao Yang6ea1a0e2016-01-29 12:12:49 -080040#include "entrypoints/runtime_asm_entrypoints.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070041#include "gc/accounting/card_table-inl.h"
Man Cao8c2ff642015-05-27 17:25:30 -070042#include "gc/allocation_record.h"
Mathieu Chartieraa516822015-10-02 15:53:37 -070043#include "gc/scoped_gc_critical_section.h"
Andreas Gampe0c183382017-07-13 22:26:24 -070044#include "gc/space/bump_pointer_space-walk-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070045#include "gc/space/large_object_space.h"
46#include "gc/space/space-inl.h"
Andreas Gampe513061a2017-06-01 09:17:34 -070047#include "handle_scope-inl.h"
Sebastien Hertzcbc50642015-06-01 17:33:12 +020048#include "jdwp/jdwp_priv.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080049#include "jdwp/object_registry.h"
Andreas Gampe13b27842016-11-07 16:48:23 -080050#include "jni_internal.h"
Mathieu Chartier28bd2e42016-10-04 13:54:57 -070051#include "jvalue-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080052#include "mirror/class-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070053#include "mirror/class.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080054#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080055#include "mirror/object-inl.h"
56#include "mirror/object_array-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070057#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080058#include "mirror/throwable.h"
Andreas Gampe373a9b52017-10-18 09:01:57 -070059#include "nativehelper/scoped_local_ref.h"
60#include "nativehelper/scoped_primitive_array.h"
Mathieu Chartier3398c782016-09-30 10:27:43 -070061#include "obj_ptr-inl.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070062#include "reflection.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070063#include "safe_map.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070064#include "scoped_thread_state_change-inl.h"
Andreas Gampe513061a2017-06-01 09:17:34 -070065#include "stack.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070066#include "thread_list.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080067#include "utf.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070068#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070069
Elliott Hughes872d4ec2011-10-21 17:07:15 -070070namespace art {
71
Andreas Gampe46ee31b2016-12-14 10:11:49 -080072using android::base::StringPrintf;
73
Sebastien Hertz0462c4c2015-04-01 16:34:17 +020074// The key identifying the debugger to update instrumentation.
75static constexpr const char* kDbgInstrumentationKey = "Debugger";
76
Man Cao8c2ff642015-05-27 17:25:30 -070077// Limit alloc_record_count to the 2BE value (64k-1) that is the limit of the current protocol.
Brian Carlstrom306db812014-09-05 13:01:41 -070078static uint16_t CappedAllocRecordCount(size_t alloc_record_count) {
Man Cao1ed11b92015-06-11 22:47:35 -070079 const size_t cap = 0xffff;
Man Cao8c2ff642015-05-27 17:25:30 -070080 if (alloc_record_count > cap) {
81 return cap;
Brian Carlstrom306db812014-09-05 13:01:41 -070082 }
83 return alloc_record_count;
84}
Elliott Hughes475fc232011-10-25 15:00:35 -070085
Mathieu Chartier41af5e52015-10-28 11:10:46 -070086class Breakpoint : public ValueObject {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -070087 public:
Mathieu Chartier41af5e52015-10-28 11:10:46 -070088 Breakpoint(ArtMethod* method, uint32_t dex_pc, DeoptimizationRequest::Kind deoptimization_kind)
Alex Light97e78032017-06-27 17:51:55 -070089 : method_(method->GetCanonicalMethod(kRuntimePointerSize)),
Mathieu Chartier41af5e52015-10-28 11:10:46 -070090 dex_pc_(dex_pc),
91 deoptimization_kind_(deoptimization_kind) {
Sebastien Hertzf3928792014-11-17 19:00:37 +010092 CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing ||
93 deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization ||
94 deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -070095 }
96
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070097 Breakpoint(const Breakpoint& other) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartier41af5e52015-10-28 11:10:46 -070098 : method_(other.method_),
99 dex_pc_(other.dex_pc_),
100 deoptimization_kind_(other.deoptimization_kind_) {}
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700101
Mathieu Chartier41af5e52015-10-28 11:10:46 -0700102 // Method() is called from root visiting, do not use ScopedObjectAccess here or it can cause
103 // GC to deadlock if another thread tries to call SuspendAll while the GC is in a runnable state.
104 ArtMethod* Method() const {
105 return method_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700106 }
107
108 uint32_t DexPc() const {
109 return dex_pc_;
110 }
111
Sebastien Hertzf3928792014-11-17 19:00:37 +0100112 DeoptimizationRequest::Kind GetDeoptimizationKind() const {
113 return deoptimization_kind_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700114 }
115
Alex Light6c8467f2015-11-20 15:03:26 -0800116 // Returns true if the method of this breakpoint and the passed in method should be considered the
117 // same. That is, they are either the same method or they are copied from the same method.
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700118 bool IsInMethod(ArtMethod* m) const REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Light97e78032017-06-27 17:51:55 -0700119 return method_ == m->GetCanonicalMethod(kRuntimePointerSize);
Alex Light6c8467f2015-11-20 15:03:26 -0800120 }
121
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700122 private:
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100123 // The location of this breakpoint.
Mathieu Chartier41af5e52015-10-28 11:10:46 -0700124 ArtMethod* method_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700125 uint32_t dex_pc_;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100126
127 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
Sebastien Hertzf3928792014-11-17 19:00:37 +0100128 DeoptimizationRequest::Kind deoptimization_kind_;
Elliott Hughes86964332012-02-15 19:37:42 -0800129};
130
Sebastien Hertzed2be172014-08-19 15:33:43 +0200131static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700132 REQUIRES_SHARED(Locks::mutator_lock_) {
David Sehr709b0702016-10-13 09:12:37 -0700133 os << StringPrintf("Breakpoint[%s @%#x]", ArtMethod::PrettyMethod(rhs.Method()).c_str(),
134 rhs.DexPc());
Elliott Hughes86964332012-02-15 19:37:42 -0800135 return os;
136}
137
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200138class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800139 public:
140 DebugInstrumentationListener() {}
141 virtual ~DebugInstrumentationListener() {}
142
Alex Lightd7661582017-05-01 13:48:16 -0700143 void MethodEntered(Thread* thread,
144 Handle<mirror::Object> this_object,
145 ArtMethod* method,
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200146 uint32_t dex_pc)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700147 OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800148 if (method->IsNative()) {
149 // TODO: post location events is a suspension point and native method entry stubs aren't.
150 return;
151 }
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200152 if (IsListeningToDexPcMoved()) {
153 // We also listen to kDexPcMoved instrumentation event so we know the DexPcMoved method is
154 // going to be called right after us. To avoid sending JDWP events twice for this location,
155 // we report the event in DexPcMoved. However, we must remind this is method entry so we
156 // send the METHOD_ENTRY event. And we can also group it with other events for this location
157 // like BREAKPOINT or SINGLE_STEP (or even METHOD_EXIT if this is a RETURN instruction).
158 thread->SetDebugMethodEntry();
159 } else if (IsListeningToMethodExit() && IsReturn(method, dex_pc)) {
160 // We also listen to kMethodExited instrumentation event and the current instruction is a
161 // RETURN so we know the MethodExited method is going to be called right after us. To avoid
162 // sending JDWP events twice for this location, we report the event(s) in MethodExited.
163 // However, we must remind this is method entry so we send the METHOD_ENTRY event. And we can
164 // also group it with other events for this location like BREAKPOINT or SINGLE_STEP.
165 thread->SetDebugMethodEntry();
166 } else {
Alex Lightd7661582017-05-01 13:48:16 -0700167 Dbg::UpdateDebugger(thread, this_object.Get(), method, 0, Dbg::kMethodEntry, nullptr);
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200168 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800169 }
170
Alex Lightd7661582017-05-01 13:48:16 -0700171 void MethodExited(Thread* thread,
172 Handle<mirror::Object> this_object,
173 ArtMethod* method,
174 uint32_t dex_pc,
175 const JValue& return_value)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700176 OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800177 if (method->IsNative()) {
178 // TODO: post location events is a suspension point and native method entry stubs aren't.
179 return;
180 }
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200181 uint32_t events = Dbg::kMethodExit;
182 if (thread->IsDebugMethodEntry()) {
183 // It is also the method entry.
184 DCHECK(IsReturn(method, dex_pc));
185 events |= Dbg::kMethodEntry;
186 thread->ClearDebugMethodEntry();
187 }
Alex Lightd7661582017-05-01 13:48:16 -0700188 Dbg::UpdateDebugger(thread, this_object.Get(), method, dex_pc, events, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800189 }
190
Alex Lightd7661582017-05-01 13:48:16 -0700191 void MethodUnwind(Thread* thread ATTRIBUTE_UNUSED,
192 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
193 ArtMethod* method,
194 uint32_t dex_pc)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700195 OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800196 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700197 LOG(ERROR) << "Unexpected method unwind event in debugger " << ArtMethod::PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100198 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800199 }
200
Alex Lightd7661582017-05-01 13:48:16 -0700201 void DexPcMoved(Thread* thread,
202 Handle<mirror::Object> this_object,
203 ArtMethod* method,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200204 uint32_t new_dex_pc)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700205 OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200206 if (IsListeningToMethodExit() && IsReturn(method, new_dex_pc)) {
207 // We also listen to kMethodExited instrumentation event and the current instruction is a
208 // RETURN so we know the MethodExited method is going to be called right after us. Like in
209 // MethodEntered, we delegate event reporting to MethodExited.
210 // Besides, if this RETURN instruction is the only one in the method, we can send multiple
211 // JDWP events in the same packet: METHOD_ENTRY, METHOD_EXIT, BREAKPOINT and/or SINGLE_STEP.
212 // Therefore, we must not clear the debug method entry flag here.
213 } else {
214 uint32_t events = 0;
215 if (thread->IsDebugMethodEntry()) {
216 // It is also the method entry.
217 events = Dbg::kMethodEntry;
218 thread->ClearDebugMethodEntry();
219 }
Alex Lightd7661582017-05-01 13:48:16 -0700220 Dbg::UpdateDebugger(thread, this_object.Get(), method, new_dex_pc, events, nullptr);
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200221 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800222 }
223
Alex Lightd7661582017-05-01 13:48:16 -0700224 void FieldRead(Thread* thread ATTRIBUTE_UNUSED,
225 Handle<mirror::Object> this_object,
226 ArtMethod* method,
227 uint32_t dex_pc,
228 ArtField* field)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700229 OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lightd7661582017-05-01 13:48:16 -0700230 Dbg::PostFieldAccessEvent(method, dex_pc, this_object.Get(), field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800231 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200232
Alex Lightd7661582017-05-01 13:48:16 -0700233 void FieldWritten(Thread* thread ATTRIBUTE_UNUSED,
234 Handle<mirror::Object> this_object,
235 ArtMethod* method,
236 uint32_t dex_pc,
237 ArtField* field,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700238 const JValue& field_value)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700239 OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lightd7661582017-05-01 13:48:16 -0700240 Dbg::PostFieldModificationEvent(method, dex_pc, this_object.Get(), field, &field_value);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200241 }
242
Alex Light6e1607e2017-08-23 10:06:18 -0700243 void ExceptionThrown(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700244 Handle<mirror::Throwable> exception_object)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700245 OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lightd7661582017-05-01 13:48:16 -0700246 Dbg::PostException(exception_object.Get());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200247 }
248
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000249 // We only care about branches in the Jit.
250 void Branch(Thread* /*thread*/, ArtMethod* method, uint32_t dex_pc, int32_t dex_pc_offset)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700251 OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
David Sehr709b0702016-10-13 09:12:37 -0700252 LOG(ERROR) << "Unexpected branch event in debugger " << ArtMethod::PrettyMethod(method)
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000253 << " " << dex_pc << ", " << dex_pc_offset;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800254 }
255
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100256 // We only care about invokes in the Jit.
257 void InvokeVirtualOrInterface(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700258 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100259 ArtMethod* method,
260 uint32_t dex_pc,
Alex Lightd7661582017-05-01 13:48:16 -0700261 ArtMethod* target ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700262 OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
David Sehr709b0702016-10-13 09:12:37 -0700263 LOG(ERROR) << "Unexpected invoke event in debugger " << ArtMethod::PrettyMethod(method)
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100264 << " " << dex_pc;
265 }
266
Alex Light798eab02017-08-23 12:54:53 -0700267 // TODO Might be worth it to post ExceptionCatch event.
268 void ExceptionHandled(Thread* thread ATTRIBUTE_UNUSED,
269 Handle<mirror::Throwable> throwable ATTRIBUTE_UNUSED) OVERRIDE {
270 LOG(ERROR) << "Unexpected exception handled event in debugger";
271 }
272
Alex Light05f47742017-09-14 00:34:44 +0000273 // TODO Might be worth it to implement this.
274 void WatchedFramePop(Thread* thread ATTRIBUTE_UNUSED,
275 const ShadowFrame& frame ATTRIBUTE_UNUSED) OVERRIDE {
276 LOG(ERROR) << "Unexpected WatchedFramePop event in debugger";
277 }
Alex Light798eab02017-08-23 12:54:53 -0700278
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200279 private:
Mathieu Chartiere401d142015-04-22 13:56:20 -0700280 static bool IsReturn(ArtMethod* method, uint32_t dex_pc)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700281 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200282 const DexFile::CodeItem* code_item = method->GetCodeItem();
283 const Instruction* instruction = Instruction::At(&code_item->insns_[dex_pc]);
284 return instruction->IsReturn();
285 }
286
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700287 static bool IsListeningToDexPcMoved() REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200288 return IsListeningTo(instrumentation::Instrumentation::kDexPcMoved);
289 }
290
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700291 static bool IsListeningToMethodExit() REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200292 return IsListeningTo(instrumentation::Instrumentation::kMethodExited);
293 }
294
295 static bool IsListeningTo(instrumentation::Instrumentation::InstrumentationEvent event)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700296 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200297 return (Dbg::GetInstrumentationEvents() & event) != 0;
298 }
299
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200300 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800301} gDebugInstrumentationListener;
302
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700303// JDWP is allowed unless the Zygote forbids it.
304static bool gJdwpAllowed = true;
305
Elliott Hughesc0f09332012-03-26 13:27:06 -0700306// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700307static bool gJdwpConfigured = false;
308
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100309// JDWP options for debugging. Only valid if IsJdwpConfigured() is true.
310static JDWP::JdwpOptions gJdwpOptions;
311
Elliott Hughes3bb81562011-10-21 18:52:59 -0700312// Runtime JDWP state.
Ian Rogersc0542af2014-09-03 16:16:56 -0700313static JDWP::JdwpState* gJdwpState = nullptr;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700314static bool gDebuggerConnected; // debugger or DDMS is connected.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700315
Elliott Hughes47fce012011-10-25 18:37:19 -0700316static bool gDdmThreadNotification = false;
317
Elliott Hughes767a1472011-10-26 18:49:02 -0700318// DDMS GC-related settings.
319static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
320static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
321static Dbg::HpsgWhat gDdmHpsgWhat;
322static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
323static Dbg::HpsgWhat gDdmNhsgWhat;
324
Daniel Mihalyieb076692014-08-22 17:33:31 +0200325bool Dbg::gDebuggerActive = false;
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100326bool Dbg::gDisposed = false;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200327ObjectRegistry* Dbg::gRegistry = nullptr;
Alex Light21611932017-09-26 13:07:39 -0700328DebuggerActiveMethodInspectionCallback Dbg::gDebugActiveCallback;
Alex Light8c2b9292017-11-09 13:21:01 -0800329DebuggerDdmCallback Dbg::gDebugDdmCallback;
Elliott Hughes475fc232011-10-25 15:00:35 -0700330
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100331// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100332std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
333size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100334
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200335// Instrumentation event reference counters.
336size_t Dbg::dex_pc_change_event_ref_count_ = 0;
337size_t Dbg::method_enter_event_ref_count_ = 0;
338size_t Dbg::method_exit_event_ref_count_ = 0;
339size_t Dbg::field_read_event_ref_count_ = 0;
340size_t Dbg::field_write_event_ref_count_ = 0;
341size_t Dbg::exception_catch_event_ref_count_ = 0;
342uint32_t Dbg::instrumentation_events_ = 0;
343
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000344Dbg::DbgThreadLifecycleCallback Dbg::thread_lifecycle_callback_;
Andreas Gampe0f01b582017-01-18 15:22:37 -0800345Dbg::DbgClassLoadCallback Dbg::class_load_callback_;
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000346
Alex Light8c2b9292017-11-09 13:21:01 -0800347void DebuggerDdmCallback::DdmPublishChunk(uint32_t type, const ArrayRef<const uint8_t>& data) {
Alex Light772099a2017-11-21 14:05:04 -0800348 if (gJdwpState == nullptr) {
349 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
350 } else {
351 iovec vec[1];
352 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(data.data()));
353 vec[0].iov_len = data.size();
354 gJdwpState->DdmSendChunkV(type, vec, 1);
355 }
Alex Light8c2b9292017-11-09 13:21:01 -0800356}
357
Alex Light21611932017-09-26 13:07:39 -0700358bool DebuggerActiveMethodInspectionCallback::IsMethodBeingInspected(ArtMethod* m ATTRIBUTE_UNUSED) {
359 return Dbg::IsDebuggerActive();
360}
361
Alex Light0fa17862017-10-24 13:43:05 -0700362bool DebuggerActiveMethodInspectionCallback::IsMethodSafeToJit(ArtMethod* m) {
363 return !Dbg::MethodHasAnyBreakpoints(m);
364}
365
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100366// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800367static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800368
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700369void DebugInvokeReq::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
370 receiver.VisitRootIfNonNull(visitor, root_info); // null for static method call.
371 klass.VisitRoot(visitor, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700372}
373
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100374void SingleStepControl::AddDexPc(uint32_t dex_pc) {
375 dex_pcs_.insert(dex_pc);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200376}
377
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100378bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
379 return dex_pcs_.find(dex_pc) == dex_pcs_.end();
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200380}
381
Alex Light6c8467f2015-11-20 15:03:26 -0800382static bool IsBreakpoint(ArtMethod* m, uint32_t dex_pc)
Mathieu Chartier90443472015-07-16 20:32:27 -0700383 REQUIRES(!Locks::breakpoint_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700384 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzed2be172014-08-19 15:33:43 +0200385 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100386 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Alex Light6c8467f2015-11-20 15:03:26 -0800387 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].IsInMethod(m)) {
Elliott Hughes86964332012-02-15 19:37:42 -0800388 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
389 return true;
390 }
391 }
392 return false;
393}
394
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100395static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
Mathieu Chartier90443472015-07-16 20:32:27 -0700396 REQUIRES(!Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800397 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
398 // A thread may be suspended for GC; in this code, we really want to know whether
399 // there's a debugger suspension active.
400 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
401}
402
Ian Rogersc0542af2014-09-03 16:16:56 -0700403static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700404 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200405 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700406 if (o == nullptr) {
407 *error = JDWP::ERR_INVALID_OBJECT;
408 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800409 }
410 if (!o->IsArrayInstance()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700411 *error = JDWP::ERR_INVALID_ARRAY;
412 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800413 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700414 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800415 return o->AsArray();
416}
417
Ian Rogersc0542af2014-09-03 16:16:56 -0700418static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700419 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200420 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700421 if (o == nullptr) {
422 *error = JDWP::ERR_INVALID_OBJECT;
423 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800424 }
425 if (!o->IsClass()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700426 *error = JDWP::ERR_INVALID_CLASS;
427 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800428 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700429 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800430 return o->AsClass();
431}
432
Ian Rogersc0542af2014-09-03 16:16:56 -0700433static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
434 JDWP::JdwpError* error)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700435 REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartier90443472015-07-16 20:32:27 -0700436 REQUIRES(!Locks::thread_list_lock_, !Locks::thread_suspend_count_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200437 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700438 if (thread_peer == nullptr) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800439 // This isn't even an object.
Ian Rogersc0542af2014-09-03 16:16:56 -0700440 *error = JDWP::ERR_INVALID_OBJECT;
441 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800442 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800443
Mathieu Chartier0795f232016-09-27 18:43:30 -0700444 ObjPtr<mirror::Class> java_lang_Thread =
445 soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800446 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
447 // This isn't a thread.
Ian Rogersc0542af2014-09-03 16:16:56 -0700448 *error = JDWP::ERR_INVALID_THREAD;
449 return nullptr;
Elliott Hughes221229c2013-01-08 18:17:50 -0800450 }
451
Sebastien Hertz69206392015-04-07 15:54:25 +0200452 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700453 Thread* thread = Thread::FromManagedThread(soa, thread_peer);
454 // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a
455 // zombie.
456 *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE;
457 return thread;
Elliott Hughes436e3722012-02-17 20:01:47 -0800458}
459
Elliott Hughes24437992011-11-30 14:49:33 -0800460static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
461 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
462 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
463 return static_cast<JDWP::JdwpTag>(descriptor[0]);
464}
465
Ian Rogers1ff3c982014-08-12 02:30:58 -0700466static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700467 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700468 std::string temp;
469 const char* descriptor = klass->GetDescriptor(&temp);
470 return BasicTagFromDescriptor(descriptor);
471}
472
Ian Rogers98379392014-02-24 16:53:16 -0800473static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700474 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700475 CHECK(c != nullptr);
Elliott Hughes24437992011-11-30 14:49:33 -0800476 if (c->IsArrayClass()) {
477 return JDWP::JT_ARRAY;
478 }
Elliott Hughes24437992011-11-30 14:49:33 -0800479 if (c->IsStringClass()) {
480 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800481 }
Ian Rogers98379392014-02-24 16:53:16 -0800482 if (c->IsClassClass()) {
483 return JDWP::JT_CLASS_OBJECT;
484 }
485 {
Mathieu Chartier0795f232016-09-27 18:43:30 -0700486 ObjPtr<mirror::Class> thread_class =
487 soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread);
Ian Rogers98379392014-02-24 16:53:16 -0800488 if (thread_class->IsAssignableFrom(c)) {
489 return JDWP::JT_THREAD;
490 }
491 }
492 {
Mathieu Chartier0795f232016-09-27 18:43:30 -0700493 ObjPtr<mirror::Class> thread_group_class =
494 soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ThreadGroup);
Ian Rogers98379392014-02-24 16:53:16 -0800495 if (thread_group_class->IsAssignableFrom(c)) {
496 return JDWP::JT_THREAD_GROUP;
497 }
498 }
499 {
Mathieu Chartier0795f232016-09-27 18:43:30 -0700500 ObjPtr<mirror::Class> class_loader_class =
501 soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ClassLoader);
Ian Rogers98379392014-02-24 16:53:16 -0800502 if (class_loader_class->IsAssignableFrom(c)) {
503 return JDWP::JT_CLASS_LOADER;
504 }
505 }
506 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800507}
508
509/*
510 * Objects declared to hold Object might actually hold a more specific
511 * type. The debugger may take a special interest in these (e.g. it
512 * wants to display the contents of Strings), so we want to return an
513 * appropriate tag.
514 *
515 * Null objects are tagged JT_OBJECT.
516 */
Sebastien Hertz6995c602014-09-09 12:10:13 +0200517JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700518 return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800519}
520
521static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
522 switch (tag) {
523 case JDWP::JT_BOOLEAN:
524 case JDWP::JT_BYTE:
525 case JDWP::JT_CHAR:
526 case JDWP::JT_FLOAT:
527 case JDWP::JT_DOUBLE:
528 case JDWP::JT_INT:
529 case JDWP::JT_LONG:
530 case JDWP::JT_SHORT:
531 case JDWP::JT_VOID:
532 return true;
533 default:
534 return false;
535 }
536}
537
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100538void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700539 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700540 // No JDWP for you!
541 return;
542 }
543
Ian Rogers719d1a32014-03-06 12:13:39 -0800544 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700545 gRegistry = new ObjectRegistry;
546
Alex Light8c2b9292017-11-09 13:21:01 -0800547 {
548 // Setup the Ddm listener
549 ScopedObjectAccess soa(Thread::Current());
550 Runtime::Current()->GetRuntimeCallbacks()->AddDdmCallback(&gDebugDdmCallback);
551 }
552
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700553 // Init JDWP if the debugger is enabled. This may connect out to a
554 // debugger, passively listen for a debugger, or block waiting for a
555 // debugger.
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100556 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
Ian Rogersc0542af2014-09-03 16:16:56 -0700557 if (gJdwpState == nullptr) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800558 // We probably failed because some other process has the port already, which means that
559 // if we don't abort the user is likely to think they're talking to us when they're actually
560 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800561 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700562 }
563
564 // If a debugger has already attached, send the "welcome" message.
565 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700566 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700567 ScopedObjectAccess soa(Thread::Current());
Sebastien Hertz7d955652014-10-22 10:57:10 +0200568 gJdwpState->PostVMStart();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700569 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700570}
571
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700572void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200573 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
574 // destruction of gJdwpState).
575 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
576 gJdwpState->PostVMDeath();
577 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100578 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100579 Dispose();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700580 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800581 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700582 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800583 gRegistry = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700584}
585
Elliott Hughes767a1472011-10-26 18:49:02 -0700586void Dbg::GcDidFinish() {
587 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700588 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700589 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700590 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700591 }
592 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700593 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700594 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700595 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700596 }
597 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700598 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700599 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700600 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700601 }
602}
603
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700604void Dbg::SetJdwpAllowed(bool allowed) {
605 gJdwpAllowed = allowed;
606}
607
Leonard Mosescueb842212016-10-06 17:26:36 -0700608bool Dbg::IsJdwpAllowed() {
609 return gJdwpAllowed;
610}
611
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700612DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700613 return Thread::Current()->GetInvokeReq();
614}
615
616Thread* Dbg::GetDebugThread() {
Ian Rogersc0542af2014-09-03 16:16:56 -0700617 return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700618}
619
620void Dbg::ClearWaitForEventThread() {
Sebastien Hertz2bf93f42015-01-09 18:44:05 +0100621 gJdwpState->ReleaseJdwpTokenForEvent();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700622}
623
624void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700625 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800626 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700627 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800628 gDisposed = false;
629}
630
Sebastien Hertzf3928792014-11-17 19:00:37 +0100631bool Dbg::RequiresDeoptimization() {
632 // We don't need deoptimization if everything runs with interpreter after
633 // enabling -Xint mode.
634 return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly();
635}
636
Elliott Hughesa2155262011-11-16 16:26:58 -0800637void Dbg::GoActive() {
638 // Enable all debugging features, including scans for breakpoints.
639 // This is a no-op if we're already active.
640 // Only called from the JDWP handler thread.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200641 if (IsDebuggerActive()) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800642 return;
643 }
644
Mathieu Chartieraa516822015-10-02 15:53:37 -0700645 Thread* const self = Thread::Current();
Elliott Hughesc0f09332012-03-26 13:27:06 -0700646 {
647 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Mathieu Chartieraa516822015-10-02 15:53:37 -0700648 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700649 CHECK_EQ(gBreakpoints.size(), 0U);
650 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800651
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100652 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700653 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100654 CHECK_EQ(deoptimization_requests_.size(), 0U);
655 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200656 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
657 CHECK_EQ(method_enter_event_ref_count_, 0U);
658 CHECK_EQ(method_exit_event_ref_count_, 0U);
659 CHECK_EQ(field_read_event_ref_count_, 0U);
660 CHECK_EQ(field_write_event_ref_count_, 0U);
661 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100662 }
663
Ian Rogers62d6c772013-02-27 08:32:07 -0800664 Runtime* runtime = Runtime::Current();
Nicolas Geoffray433b79a2017-01-30 20:54:45 +0000665 // Best effort deoptimization if the runtime is non-Java debuggable. This happens when
666 // ro.debuggable is set, but the application is not debuggable, or when a standalone
667 // dalvikvm invocation is not passed the debuggable option (-Xcompiler-option --debuggable).
668 //
669 // The performance cost of this is non-negligible during native-debugging due to the
David Srbeckyf4480162016-03-16 00:06:24 +0000670 // forced JIT, so we keep the AOT code in that case in exchange for limited native debugging.
Nicolas Geoffray433b79a2017-01-30 20:54:45 +0000671 if (!runtime->IsJavaDebuggable() &&
672 !runtime->GetInstrumentation()->IsForcedInterpretOnly() &&
673 !runtime->IsNativeDebuggable()) {
674 runtime->DeoptimizeBootImage();
Mingyao Yang6ea1a0e2016-01-29 12:12:49 -0800675 }
676
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700677 ScopedSuspendAll ssa(__FUNCTION__);
Sebastien Hertzf3928792014-11-17 19:00:37 +0100678 if (RequiresDeoptimization()) {
679 runtime->GetInstrumentation()->EnableDeoptimization();
680 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200681 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800682 gDebuggerActive = true;
Alex Light21611932017-09-26 13:07:39 -0700683 Runtime::Current()->GetRuntimeCallbacks()->AddMethodInspectionCallback(&gDebugActiveCallback);
Ian Rogers62d6c772013-02-27 08:32:07 -0800684 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700685}
686
687void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700688 CHECK(gDebuggerConnected);
689
Elliott Hughesc0f09332012-03-26 13:27:06 -0700690 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700691
Hiroshi Yamauchi98810e32016-05-24 14:55:40 -0700692 // Suspend all threads and exclusively acquire the mutator lock. Remove the debugger as a listener
Ian Rogers62d6c772013-02-27 08:32:07 -0800693 // and clear the object registry.
694 Runtime* runtime = Runtime::Current();
Ian Rogers62d6c772013-02-27 08:32:07 -0800695 Thread* self = Thread::Current();
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700696 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700697 // Required for DisableDeoptimization.
698 gc::ScopedGCCriticalSection gcs(self,
699 gc::kGcCauseInstrumentation,
700 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700701 ScopedSuspendAll ssa(__FUNCTION__);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700702 // Debugger may not be active at this point.
703 if (IsDebuggerActive()) {
704 {
705 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
706 // This prevents us from having any pending deoptimization request when the debugger attaches
707 // to us again while no event has been requested yet.
Mathieu Chartiera6b1ead2015-10-06 10:32:38 -0700708 MutexLock mu(self, *Locks::deoptimization_lock_);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700709 deoptimization_requests_.clear();
710 full_deoptimization_event_count_ = 0U;
711 }
712 if (instrumentation_events_ != 0) {
713 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
714 instrumentation_events_);
715 instrumentation_events_ = 0;
716 }
717 if (RequiresDeoptimization()) {
718 runtime->GetInstrumentation()->DisableDeoptimization(kDbgInstrumentationKey);
719 }
720 gDebuggerActive = false;
Alex Light21611932017-09-26 13:07:39 -0700721 Runtime::Current()->GetRuntimeCallbacks()->RemoveMethodInspectionCallback(
722 &gDebugActiveCallback);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100723 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100724 }
Sebastien Hertz55f65342015-01-13 22:48:34 +0100725
726 {
727 ScopedObjectAccess soa(self);
728 gRegistry->Clear();
729 }
730
731 gDebuggerConnected = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700732}
733
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100734void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) {
735 CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown);
736 gJdwpOptions = jdwp_options;
737 gJdwpConfigured = true;
738}
739
Elliott Hughesc0f09332012-03-26 13:27:06 -0700740bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700741 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700742}
743
744int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800745 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700746}
747
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700748void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700749 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700750}
751
Elliott Hughes88d63092013-01-09 09:55:54 -0800752std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700753 JDWP::JdwpError error;
754 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error);
755 if (o == nullptr) {
756 if (error == JDWP::ERR_NONE) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700757 return "null";
Ian Rogersc0542af2014-09-03 16:16:56 -0700758 } else {
759 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
760 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800761 }
762 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700763 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800764 }
Sebastien Hertz6995c602014-09-09 12:10:13 +0200765 return GetClassName(o->AsClass());
766}
767
768std::string Dbg::GetClassName(mirror::Class* klass) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200769 if (klass == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700770 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200771 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700772 std::string temp;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200773 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700774}
775
Ian Rogersc0542af2014-09-03 16:16:56 -0700776JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800777 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700778 mirror::Class* c = DecodeClass(id, &status);
779 if (c == nullptr) {
780 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800781 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800782 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700783 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800784 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800785}
786
Ian Rogersc0542af2014-09-03 16:16:56 -0700787JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800788 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700789 mirror::Class* c = DecodeClass(id, &status);
790 if (c == nullptr) {
791 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800792 return status;
793 }
794 if (c->IsInterface()) {
795 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700796 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800797 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700798 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800799 }
800 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700801}
802
Elliott Hughes436e3722012-02-17 20:01:47 -0800803JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700804 JDWP::JdwpError error;
Andreas Gampe7929a482015-12-30 19:33:49 -0800805 mirror::Class* c = DecodeClass(id, &error);
806 if (c == nullptr) {
807 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -0800808 }
Andreas Gampe7929a482015-12-30 19:33:49 -0800809 expandBufAddObjectId(pReply, gRegistry->Add(c->GetClassLoader()));
Elliott Hughes436e3722012-02-17 20:01:47 -0800810 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700811}
812
Elliott Hughes436e3722012-02-17 20:01:47 -0800813JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700814 JDWP::JdwpError error;
815 mirror::Class* c = DecodeClass(id, &error);
816 if (c == nullptr) {
817 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800818 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800819
820 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
821
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700822 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
823 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800824 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700825 if ((access_flags & kAccInterface) == 0) {
826 access_flags |= kAccSuper;
827 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800828
829 expandBufAdd4BE(pReply, access_flags);
830
831 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700832}
833
Ian Rogersc0542af2014-09-03 16:16:56 -0700834JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
835 JDWP::JdwpError error;
836 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
837 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800838 return JDWP::ERR_INVALID_OBJECT;
839 }
840
841 // Ensure all threads are suspended while we read objects' lock words.
842 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100843 CHECK_EQ(self->GetState(), kRunnable);
Elliott Hughesf327e072013-01-09 16:01:26 -0800844
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700845 MonitorInfo monitor_info;
846 {
847 ScopedThreadSuspension sts(self, kSuspended);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700848 ScopedSuspendAll ssa(__FUNCTION__);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700849 monitor_info = MonitorInfo(o);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700850 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700851 if (monitor_info.owner_ != nullptr) {
Nicolas Geoffraycafa0812017-02-15 18:27:34 +0000852 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeerFromOtherThread()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800853 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700854 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800855 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700856 expandBufAdd4BE(reply, monitor_info.entry_count_);
857 expandBufAdd4BE(reply, monitor_info.waiters_.size());
858 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
Nicolas Geoffraycafa0812017-02-15 18:27:34 +0000859 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeerFromOtherThread()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800860 }
861 return JDWP::ERR_NONE;
862}
863
Elliott Hughes734b8c62013-01-11 15:32:45 -0800864JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700865 std::vector<JDWP::ObjectId>* monitors,
866 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800867 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700868 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700869 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700870 std::vector<uint32_t>* stack_depth_vector)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700871 REQUIRES_SHARED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100872 : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
873 current_stack_depth(0),
874 monitors(monitor_vector),
875 stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800876
877 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
878 // annotalysis.
879 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
880 if (!GetMethod()->IsRuntimeMethod()) {
881 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800882 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800883 }
884 return true;
885 }
886
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700887 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700888 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800889 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700890 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700891 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800892 }
893
Elliott Hughes734b8c62013-01-11 15:32:45 -0800894 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700895 std::vector<JDWP::ObjectId>* const monitors;
896 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800897 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800898
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700899 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +0200900 JDWP::JdwpError error;
901 Thread* thread = DecodeThread(soa, thread_id, &error);
902 if (thread == nullptr) {
903 return error;
904 }
905 if (!IsSuspendedForDebugger(soa, thread)) {
906 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700907 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700908 std::unique_ptr<Context> context(Context::Create());
Ian Rogersc0542af2014-09-03 16:16:56 -0700909 OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700910 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800911 return JDWP::ERR_NONE;
912}
913
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100914JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700915 JDWP::ObjectId* contended_monitor) {
Elliott Hughesf9501702013-01-11 11:22:27 -0800916 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -0700917 *contended_monitor = 0;
Sebastien Hertz69206392015-04-07 15:54:25 +0200918 JDWP::JdwpError error;
919 Thread* thread = DecodeThread(soa, thread_id, &error);
920 if (thread == nullptr) {
921 return error;
Elliott Hughesf9501702013-01-11 11:22:27 -0800922 }
Sebastien Hertz69206392015-04-07 15:54:25 +0200923 if (!IsSuspendedForDebugger(soa, thread)) {
924 return JDWP::ERR_THREAD_NOT_SUSPENDED;
925 }
926 mirror::Object* contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700927 // Add() requires the thread_list_lock_ not held to avoid the lock
928 // level violation.
Ian Rogersc0542af2014-09-03 16:16:56 -0700929 *contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -0800930 return JDWP::ERR_NONE;
931}
932
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800933JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -0700934 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800935 gc::Heap* heap = Runtime::Current()->GetHeap();
936 heap->CollectGarbage(false);
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700937 VariableSizedHandleScope hs(Thread::Current());
Mathieu Chartier9d156d52016-10-06 17:44:26 -0700938 std::vector<Handle<mirror::Class>> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700939 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800940 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700941 JDWP::JdwpError error;
Mathieu Chartier9d156d52016-10-06 17:44:26 -0700942 ObjPtr<mirror::Class> c = DecodeClass(class_ids[i], &error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700943 if (c == nullptr) {
944 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800945 }
Mathieu Chartier9d156d52016-10-06 17:44:26 -0700946 classes.push_back(hs.NewHandle(c));
Ian Rogersc0542af2014-09-03 16:16:56 -0700947 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800948 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700949 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800950 return JDWP::ERR_NONE;
951}
952
Ian Rogersc0542af2014-09-03 16:16:56 -0700953JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
954 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800955 gc::Heap* heap = Runtime::Current()->GetHeap();
956 // We only want reachable instances, so do a GC.
957 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700958 JDWP::JdwpError error;
Mathieu Chartier9d156d52016-10-06 17:44:26 -0700959 ObjPtr<mirror::Class> c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800960 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700961 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800962 }
Mathieu Chartier2d855952016-10-12 19:37:59 -0700963 VariableSizedHandleScope hs(Thread::Current());
964 std::vector<Handle<mirror::Object>> raw_instances;
965 Runtime::Current()->GetHeap()->GetInstances(hs, hs.NewHandle(c), max_count, raw_instances);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800966 for (size_t i = 0; i < raw_instances.size(); ++i) {
Mathieu Chartier2d855952016-10-12 19:37:59 -0700967 instances->push_back(gRegistry->Add(raw_instances[i].Get()));
Elliott Hughes3b78c942013-01-15 17:35:41 -0800968 }
969 return JDWP::ERR_NONE;
970}
971
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800972JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700973 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800974 gc::Heap* heap = Runtime::Current()->GetHeap();
975 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700976 JDWP::JdwpError error;
Mathieu Chartier9d156d52016-10-06 17:44:26 -0700977 ObjPtr<mirror::Object> o = gRegistry->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700978 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800979 return JDWP::ERR_INVALID_OBJECT;
980 }
Mathieu Chartieraea9bfb2016-10-12 19:19:56 -0700981 VariableSizedHandleScope hs(Thread::Current());
982 std::vector<Handle<mirror::Object>> raw_instances;
983 heap->GetReferringObjects(hs, hs.NewHandle(o), max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800984 for (size_t i = 0; i < raw_instances.size(); ++i) {
Mathieu Chartieraea9bfb2016-10-12 19:19:56 -0700985 referring_objects->push_back(gRegistry->Add(raw_instances[i].Get()));
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800986 }
987 return JDWP::ERR_NONE;
988}
989
Ian Rogersc0542af2014-09-03 16:16:56 -0700990JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
991 JDWP::JdwpError error;
992 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
993 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100994 return JDWP::ERR_INVALID_OBJECT;
995 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800996 gRegistry->DisableCollection(object_id);
997 return JDWP::ERR_NONE;
998}
999
Ian Rogersc0542af2014-09-03 16:16:56 -07001000JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
1001 JDWP::JdwpError error;
1002 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +01001003 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
1004 // also ignores these cases and never return an error. However it's not obvious why this command
1005 // should behave differently from DisableCollection and IsCollected commands. So let's be more
1006 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -07001007 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001008 return JDWP::ERR_INVALID_OBJECT;
1009 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001010 gRegistry->EnableCollection(object_id);
1011 return JDWP::ERR_NONE;
1012}
1013
Ian Rogersc0542af2014-09-03 16:16:56 -07001014JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
1015 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001016 if (object_id == 0) {
1017 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +01001018 return JDWP::ERR_INVALID_OBJECT;
1019 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001020 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1021 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -07001022 JDWP::JdwpError error;
1023 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1024 if (o != nullptr) {
1025 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001026 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001027 return JDWP::ERR_NONE;
1028}
1029
Ian Rogersc0542af2014-09-03 16:16:56 -07001030void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001031 gRegistry->DisposeObject(object_id, reference_count);
1032}
1033
Mathieu Chartier3398c782016-09-30 10:27:43 -07001034JDWP::JdwpTypeTag Dbg::GetTypeTag(ObjPtr<mirror::Class> klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001035 DCHECK(klass != nullptr);
1036 if (klass->IsArrayClass()) {
1037 return JDWP::TT_ARRAY;
1038 } else if (klass->IsInterface()) {
1039 return JDWP::TT_INTERFACE;
1040 } else {
1041 return JDWP::TT_CLASS;
1042 }
1043}
1044
Elliott Hughes88d63092013-01-09 09:55:54 -08001045JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001046 JDWP::JdwpError error;
1047 mirror::Class* c = DecodeClass(class_id, &error);
1048 if (c == nullptr) {
1049 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001050 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001051
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001052 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1053 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001054 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001055 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001056}
1057
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001058// Get the complete list of reference classes (i.e. all classes except
1059// the primitive types).
1060// Returns a newly-allocated buffer full of RefTypeId values.
1061class ClassListCreator : public ClassVisitor {
1062 public:
1063 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes) : classes_(classes) {}
1064
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001065 bool operator()(ObjPtr<mirror::Class> c) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001066 if (!c->IsPrimitive()) {
1067 classes_->push_back(Dbg::GetObjectRegistry()->AddRefType(c));
1068 }
1069 return true;
1070 }
1071
1072 private:
1073 std::vector<JDWP::RefTypeId>* const classes_;
1074};
1075
Ian Rogersc0542af2014-09-03 16:16:56 -07001076void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001077 ClassListCreator clc(classes);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001078 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001079}
1080
Ian Rogers1ff3c982014-08-12 02:30:58 -07001081JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1082 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001083 JDWP::JdwpError error;
1084 mirror::Class* c = DecodeClass(class_id, &error);
1085 if (c == nullptr) {
1086 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001087 }
1088
Elliott Hughesa2155262011-11-16 16:26:58 -08001089 if (c->IsArrayClass()) {
1090 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1091 *pTypeTag = JDWP::TT_ARRAY;
1092 } else {
1093 if (c->IsErroneous()) {
1094 *pStatus = JDWP::CS_ERROR;
1095 } else {
1096 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1097 }
1098 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1099 }
1100
Ian Rogersc0542af2014-09-03 16:16:56 -07001101 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001102 std::string temp;
1103 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001104 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001105 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001106}
1107
Ian Rogersc0542af2014-09-03 16:16:56 -07001108void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001109 std::vector<ObjPtr<mirror::Class>> classes;
Igor Murashkinb1d8c312015-08-04 11:18:43 -07001110 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001111 ids->clear();
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001112 for (ObjPtr<mirror::Class> c : classes) {
1113 ids->push_back(gRegistry->Add(c));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001114 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001115}
1116
Ian Rogersc0542af2014-09-03 16:16:56 -07001117JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1118 JDWP::JdwpError error;
1119 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1120 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001121 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001122 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001123
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001124 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001125 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001126
1127 expandBufAdd1(pReply, type_tag);
1128 expandBufAddRefTypeId(pReply, type_id);
1129
1130 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001131}
1132
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001133JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001134 JDWP::JdwpError error;
1135 mirror::Class* c = DecodeClass(class_id, &error);
1136 if (c == nullptr) {
1137 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001138 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001139 std::string temp;
1140 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001141 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001142}
1143
Orion Hodson77d8a1c2017-04-24 14:53:19 +01001144JDWP::JdwpError Dbg::GetSourceDebugExtension(JDWP::RefTypeId class_id,
1145 std::string* extension_data) {
1146 JDWP::JdwpError error;
1147 mirror::Class* c = DecodeClass(class_id, &error);
1148 if (c == nullptr) {
1149 return error;
1150 }
1151 StackHandleScope<1> hs(Thread::Current());
1152 Handle<mirror::Class> klass(hs.NewHandle(c));
1153 const char* data = annotations::GetSourceDebugExtension(klass);
1154 if (data == nullptr) {
1155 return JDWP::ERR_ABSENT_INFORMATION;
1156 }
1157 *extension_data = data;
1158 return JDWP::ERR_NONE;
1159}
1160
Ian Rogersc0542af2014-09-03 16:16:56 -07001161JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1162 JDWP::JdwpError error;
1163 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001164 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001165 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001166 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001167 const char* source_file = c->GetSourceFile();
1168 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001169 return JDWP::ERR_ABSENT_INFORMATION;
1170 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001171 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001172 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001173}
1174
Ian Rogersc0542af2014-09-03 16:16:56 -07001175JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001176 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001177 JDWP::JdwpError error;
1178 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1179 if (error != JDWP::ERR_NONE) {
1180 *tag = JDWP::JT_VOID;
1181 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001182 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001183 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001184 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001185}
1186
Elliott Hughesaed4be92011-12-02 16:16:23 -08001187size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001188 switch (tag) {
1189 case JDWP::JT_VOID:
1190 return 0;
1191 case JDWP::JT_BYTE:
1192 case JDWP::JT_BOOLEAN:
1193 return 1;
1194 case JDWP::JT_CHAR:
1195 case JDWP::JT_SHORT:
1196 return 2;
1197 case JDWP::JT_FLOAT:
1198 case JDWP::JT_INT:
1199 return 4;
1200 case JDWP::JT_ARRAY:
1201 case JDWP::JT_OBJECT:
1202 case JDWP::JT_STRING:
1203 case JDWP::JT_THREAD:
1204 case JDWP::JT_THREAD_GROUP:
1205 case JDWP::JT_CLASS_LOADER:
1206 case JDWP::JT_CLASS_OBJECT:
1207 return sizeof(JDWP::ObjectId);
1208 case JDWP::JT_DOUBLE:
1209 case JDWP::JT_LONG:
1210 return 8;
1211 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001212 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001213 return -1;
1214 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001215}
1216
Ian Rogersc0542af2014-09-03 16:16:56 -07001217JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1218 JDWP::JdwpError error;
1219 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1220 if (a == nullptr) {
1221 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001222 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001223 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001224 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001225}
1226
Elliott Hughes88d63092013-01-09 09:55:54 -08001227JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001228 JDWP::JdwpError error;
1229 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001230 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001231 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001232 }
Elliott Hughes24437992011-11-30 14:49:33 -08001233
1234 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1235 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001236 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001237 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001238 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1239 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001240 expandBufAdd4BE(pReply, count);
1241
Ian Rogers1ff3c982014-08-12 02:30:58 -07001242 if (IsPrimitiveTag(element_tag)) {
1243 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001244 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1245 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001246 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001247 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1248 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001249 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001250 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1251 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001252 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001253 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1254 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001255 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001256 memcpy(dst, &src[offset * width], count * width);
1257 }
1258 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001259 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001260 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001261 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001262 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001263 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001264 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001265 expandBufAdd1(pReply, specific_tag);
1266 expandBufAddObjectId(pReply, gRegistry->Add(element));
1267 }
1268 }
1269
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001270 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001271}
1272
Ian Rogersef7d42f2014-01-06 12:55:46 -08001273template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001274static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001275 NO_THREAD_SAFETY_ANALYSIS {
1276 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001277 DCHECK(a->GetClass()->IsPrimitiveArray());
1278
Ian Rogersef7d42f2014-01-06 12:55:46 -08001279 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001280 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001281 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001282 }
1283}
1284
Elliott Hughes88d63092013-01-09 09:55:54 -08001285JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001286 JDWP::Request* request) {
1287 JDWP::JdwpError error;
1288 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1289 if (dst == nullptr) {
1290 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001291 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001292
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001293 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001294 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001295 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001296 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001297 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001298
Ian Rogers1ff3c982014-08-12 02:30:58 -07001299 if (IsPrimitiveTag(element_tag)) {
1300 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001301 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001302 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001303 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001304 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001305 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001306 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001307 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001308 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001309 }
1310 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001311 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001312 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001313 JDWP::ObjectId id = request->ReadObjectId();
Ian Rogersc0542af2014-09-03 16:16:56 -07001314 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1315 if (error != JDWP::ERR_NONE) {
1316 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001317 }
Sebastien Hertz2e1c16d2015-08-28 11:57:49 +02001318 // Check if the object's type is compatible with the array's type.
1319 if (o != nullptr && !o->InstanceOf(oa->GetClass()->GetComponentType())) {
1320 return JDWP::ERR_TYPE_MISMATCH;
1321 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001322 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001323 }
1324 }
1325
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001326 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001327}
1328
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001329JDWP::JdwpError Dbg::CreateString(const std::string& str, JDWP::ObjectId* new_string_id) {
1330 Thread* self = Thread::Current();
1331 mirror::String* new_string = mirror::String::AllocFromModifiedUtf8(self, str.c_str());
1332 if (new_string == nullptr) {
1333 DCHECK(self->IsExceptionPending());
1334 self->ClearException();
1335 LOG(ERROR) << "Could not allocate string";
1336 *new_string_id = 0;
1337 return JDWP::ERR_OUT_OF_MEMORY;
1338 }
1339 *new_string_id = gRegistry->Add(new_string);
1340 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001341}
1342
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001343JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001344 JDWP::JdwpError error;
1345 mirror::Class* c = DecodeClass(class_id, &error);
1346 if (c == nullptr) {
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001347 *new_object_id = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -07001348 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001349 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001350 Thread* self = Thread::Current();
Mathieu Chartier28bd2e42016-10-04 13:54:57 -07001351 ObjPtr<mirror::Object> new_object;
Sebastien Hertz56d5e502015-11-03 17:38:35 +01001352 if (c->IsStringClass()) {
1353 // Special case for java.lang.String.
1354 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
jessicahandojo3aaa37b2016-07-29 14:46:37 -07001355 new_object = mirror::String::AllocEmptyString<true>(self, allocator_type);
Sebastien Hertz56d5e502015-11-03 17:38:35 +01001356 } else {
1357 new_object = c->AllocObject(self);
1358 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001359 if (new_object == nullptr) {
1360 DCHECK(self->IsExceptionPending());
1361 self->ClearException();
David Sehr709b0702016-10-13 09:12:37 -07001362 LOG(ERROR) << "Could not allocate object of type " << mirror::Class::PrettyDescriptor(c);
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001363 *new_object_id = 0;
1364 return JDWP::ERR_OUT_OF_MEMORY;
1365 }
Mathieu Chartier28bd2e42016-10-04 13:54:57 -07001366 *new_object_id = gRegistry->Add(new_object.Ptr());
Elliott Hughes436e3722012-02-17 20:01:47 -08001367 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001368}
1369
Elliott Hughesbf13d362011-12-08 15:51:37 -08001370/*
1371 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1372 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001373JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001374 JDWP::ObjectId* new_array_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001375 JDWP::JdwpError error;
1376 mirror::Class* c = DecodeClass(array_class_id, &error);
1377 if (c == nullptr) {
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001378 *new_array_id = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -07001379 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001380 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001381 Thread* self = Thread::Current();
1382 gc::Heap* heap = Runtime::Current()->GetHeap();
1383 mirror::Array* new_array = mirror::Array::Alloc<true>(self, c, length,
1384 c->GetComponentSizeShift(),
1385 heap->GetCurrentAllocator());
1386 if (new_array == nullptr) {
1387 DCHECK(self->IsExceptionPending());
1388 self->ClearException();
David Sehr709b0702016-10-13 09:12:37 -07001389 LOG(ERROR) << "Could not allocate array of type " << mirror::Class::PrettyDescriptor(c);
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001390 *new_array_id = 0;
1391 return JDWP::ERR_OUT_OF_MEMORY;
1392 }
1393 *new_array_id = gRegistry->Add(new_array);
Elliott Hughes436e3722012-02-17 20:01:47 -08001394 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001395}
1396
Mathieu Chartierc7853442015-03-27 14:35:38 -07001397JDWP::FieldId Dbg::ToFieldId(const ArtField* f) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001398 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001399}
1400
Alex Light6c8467f2015-11-20 15:03:26 -08001401static JDWP::MethodId ToMethodId(ArtMethod* m)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001402 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Light97e78032017-06-27 17:51:55 -07001403 return static_cast<JDWP::MethodId>(
1404 reinterpret_cast<uintptr_t>(m->GetCanonicalMethod(kRuntimePointerSize)));
Elliott Hughes03181a82011-11-17 17:22:21 -08001405}
1406
Mathieu Chartierc7853442015-03-27 14:35:38 -07001407static ArtField* FromFieldId(JDWP::FieldId fid)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001408 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001409 return reinterpret_cast<ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001410}
1411
Mathieu Chartiere401d142015-04-22 13:56:20 -07001412static ArtMethod* FromMethodId(JDWP::MethodId mid)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001413 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001414 return reinterpret_cast<ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001415}
1416
Sebastien Hertz6995c602014-09-09 12:10:13 +02001417bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1418 CHECK(event_thread != nullptr);
1419 JDWP::JdwpError error;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001420 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(
1421 expected_thread_id, &error);
Nicolas Geoffraycafa0812017-02-15 18:27:34 +00001422 return expected_thread_peer == event_thread->GetPeerFromOtherThread();
Sebastien Hertz6995c602014-09-09 12:10:13 +02001423}
1424
1425bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1426 const JDWP::EventLocation& event_location) {
1427 if (expected_location.dex_pc != event_location.dex_pc) {
1428 return false;
1429 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07001430 ArtMethod* m = FromMethodId(expected_location.method_id);
Sebastien Hertz6995c602014-09-09 12:10:13 +02001431 return m == event_location.method;
1432}
1433
Mathieu Chartier3398c782016-09-30 10:27:43 -07001434bool Dbg::MatchType(ObjPtr<mirror::Class> event_class, JDWP::RefTypeId class_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001435 if (event_class == nullptr) {
1436 return false;
1437 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02001438 JDWP::JdwpError error;
Mathieu Chartier3398c782016-09-30 10:27:43 -07001439 ObjPtr<mirror::Class> expected_class = DecodeClass(class_id, &error);
Sebastien Hertz6995c602014-09-09 12:10:13 +02001440 CHECK(expected_class != nullptr);
1441 return expected_class->IsAssignableFrom(event_class);
1442}
1443
1444bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001445 ArtField* event_field) {
1446 ArtField* expected_field = FromFieldId(expected_field_id);
Sebastien Hertz6995c602014-09-09 12:10:13 +02001447 if (expected_field != event_field) {
1448 return false;
1449 }
1450 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1451}
1452
1453bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1454 JDWP::JdwpError error;
1455 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error);
1456 return modifier_instance == event_instance;
1457}
1458
Mathieu Chartier90443472015-07-16 20:32:27 -07001459void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, ArtMethod* m, uint32_t dex_pc) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001460 if (m == nullptr) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001461 memset(location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001462 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001463 mirror::Class* c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001464 location->type_tag = GetTypeTag(c);
1465 location->class_id = gRegistry->AddRefType(c);
Alex Light73376312017-04-06 10:10:51 -07001466 // The RI Seems to return 0 for all obsolete methods. For compatibility we shall do the same.
1467 location->method_id = m->IsObsolete() ? 0 : ToMethodId(m);
Ian Rogersc0542af2014-09-03 16:16:56 -07001468 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001469 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001470}
1471
Ian Rogersc0542af2014-09-03 16:16:56 -07001472std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001473 ArtMethod* m = FromMethodId(method_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001474 if (m == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001475 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001476 }
Andreas Gampe542451c2016-07-26 09:02:02 -07001477 return m->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001478}
1479
Alex Light73376312017-04-06 10:10:51 -07001480bool Dbg::IsMethodObsolete(JDWP::MethodId method_id) {
1481 ArtMethod* m = FromMethodId(method_id);
1482 if (m == nullptr) {
1483 // NB Since we return 0 as MID for obsolete methods we want to default to true here.
1484 return true;
1485 }
1486 return m->IsObsolete();
1487}
1488
Ian Rogersc0542af2014-09-03 16:16:56 -07001489std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001490 ArtField* f = FromFieldId(field_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001491 if (f == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001492 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001493 }
1494 return f->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001495}
1496
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001497/*
1498 * Augment the access flags for synthetic methods and fields by setting
1499 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1500 * flags not specified by the Java programming language.
1501 */
1502static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1503 accessFlags &= kAccJavaFlagsMask;
1504 if ((accessFlags & kAccSynthetic) != 0) {
1505 accessFlags |= 0xf0000000;
1506 }
1507 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001508}
1509
Elliott Hughesdbb40792011-11-18 17:05:22 -08001510/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001511 * Circularly shifts registers so that arguments come first. Debuggers
1512 * expect slots to begin with arguments, but dex code places them at
1513 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001514 */
Mathieu Chartiere401d142015-04-22 13:56:20 -07001515static uint16_t MangleSlot(uint16_t slot, ArtMethod* m)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001516 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001517 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001518 if (code_item == nullptr) {
1519 // We should not get here for a method without code (native, proxy or abstract). Log it and
1520 // return the slot as is since all registers are arguments.
David Sehr709b0702016-10-13 09:12:37 -07001521 LOG(WARNING) << "Trying to mangle slot for method without code " << m->PrettyMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001522 return slot;
1523 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001524 uint16_t ins_size = code_item->ins_size_;
1525 uint16_t locals_size = code_item->registers_size_ - ins_size;
1526 if (slot >= locals_size) {
1527 return slot - locals_size;
1528 } else {
1529 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001530 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001531}
1532
Sebastien Hertzaef0c912016-08-08 10:20:28 +02001533static size_t GetMethodNumArgRegistersIncludingThis(ArtMethod* method)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001534 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzaef0c912016-08-08 10:20:28 +02001535 uint32_t num_registers = ArtMethod::NumArgRegisters(method->GetShorty());
1536 if (!method->IsStatic()) {
1537 ++num_registers;
1538 }
1539 return num_registers;
1540}
1541
Jeff Haob7cefc72013-11-14 14:51:09 -08001542/*
1543 * Circularly shifts registers so that arguments come last. Reverts
1544 * slots to dex style argument placement.
1545 */
Mathieu Chartiere401d142015-04-22 13:56:20 -07001546static uint16_t DemangleSlot(uint16_t slot, ArtMethod* m, JDWP::JdwpError* error)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001547 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001548 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001549 if (code_item == nullptr) {
1550 // We should not get here for a method without code (native, proxy or abstract). Log it and
1551 // return the slot as is since all registers are arguments.
David Sehr709b0702016-10-13 09:12:37 -07001552 LOG(WARNING) << "Trying to demangle slot for method without code "
1553 << m->PrettyMethod();
Sebastien Hertzaef0c912016-08-08 10:20:28 +02001554 uint16_t vreg_count = GetMethodNumArgRegistersIncludingThis(m);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001555 if (slot < vreg_count) {
1556 *error = JDWP::ERR_NONE;
1557 return slot;
1558 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001559 } else {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001560 if (slot < code_item->registers_size_) {
1561 uint16_t ins_size = code_item->ins_size_;
1562 uint16_t locals_size = code_item->registers_size_ - ins_size;
1563 *error = JDWP::ERR_NONE;
1564 return (slot < ins_size) ? slot + locals_size : slot - ins_size;
1565 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001566 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001567
1568 // Slot is invalid in the method.
David Sehr709b0702016-10-13 09:12:37 -07001569 LOG(ERROR) << "Invalid local slot " << slot << " for method " << m->PrettyMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001570 *error = JDWP::ERR_INVALID_SLOT;
1571 return DexFile::kDexNoIndex16;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001572}
1573
Mathieu Chartier90443472015-07-16 20:32:27 -07001574JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic,
1575 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001576 JDWP::JdwpError error;
1577 mirror::Class* c = DecodeClass(class_id, &error);
1578 if (c == nullptr) {
1579 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001580 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001581
1582 size_t instance_field_count = c->NumInstanceFields();
1583 size_t static_field_count = c->NumStaticFields();
1584
1585 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1586
1587 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001588 ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) :
1589 c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001590 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001591 expandBufAddUtf8String(pReply, f->GetName());
1592 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
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(f->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::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001603 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001604 JDWP::JdwpError error;
1605 mirror::Class* c = DecodeClass(class_id, &error);
1606 if (c == nullptr) {
1607 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001608 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001609
Alex Light51a64d52015-12-17 13:55:59 -08001610 expandBufAdd4BE(pReply, c->NumMethods());
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001611
Mathieu Chartiere401d142015-04-22 13:56:20 -07001612 auto* cl = Runtime::Current()->GetClassLinker();
1613 auto ptr_size = cl->GetImagePointerSize();
Alex Light51a64d52015-12-17 13:55:59 -08001614 for (ArtMethod& m : c->GetMethods(ptr_size)) {
1615 expandBufAddMethodId(pReply, ToMethodId(&m));
Andreas Gampe542451c2016-07-26 09:02:02 -07001616 expandBufAddUtf8String(pReply, m.GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetName());
1617 expandBufAddUtf8String(
1618 pReply, m.GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001619 if (with_generic) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001620 const char* generic_signature = "";
1621 expandBufAddUtf8String(pReply, generic_signature);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001622 }
Alex Light51a64d52015-12-17 13:55:59 -08001623 expandBufAdd4BE(pReply, MangleAccessFlags(m.GetAccessFlags()));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001624 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001625 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001626}
1627
Elliott Hughes88d63092013-01-09 09:55:54 -08001628JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001629 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001630 Thread* self = Thread::Current();
Vladimir Marko19a4d372016-12-08 14:41:46 +00001631 ObjPtr<mirror::Class> c = DecodeClass(class_id, &error);
1632 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001633 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001634 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001635 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001636 expandBufAdd4BE(pReply, interface_count);
1637 for (size_t i = 0; i < interface_count; ++i) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001638 ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, c, i);
1639 DCHECK(interface != nullptr);
1640 expandBufAddRefTypeId(pReply, gRegistry->AddRefType(interface));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001641 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001642 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001643}
1644
Ian Rogersc0542af2014-09-03 16:16:56 -07001645void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001646 struct DebugCallbackContext {
1647 int numItems;
1648 JDWP::ExpandBuf* pReply;
1649
David Srbeckyb06e28e2015-12-10 13:15:00 +00001650 static bool Callback(void* context, const DexFile::PositionInfo& entry) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001651 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
David Srbeckyb06e28e2015-12-10 13:15:00 +00001652 expandBufAdd8BE(pContext->pReply, entry.address_);
1653 expandBufAdd4BE(pContext->pReply, entry.line_);
Elliott Hughes03181a82011-11-17 17:22:21 -08001654 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001655 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001656 }
1657 };
Mathieu Chartiere401d142015-04-22 13:56:20 -07001658 ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001659 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001660 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001661 if (code_item == nullptr) {
1662 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001663 start = -1;
1664 end = -1;
1665 } else {
1666 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001667 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001668 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001669 }
1670
1671 expandBufAdd8BE(pReply, start);
1672 expandBufAdd8BE(pReply, end);
1673
1674 // Add numLines later
1675 size_t numLinesOffset = expandBufGetLength(pReply);
1676 expandBufAdd4BE(pReply, 0);
1677
1678 DebugCallbackContext context;
1679 context.numItems = 0;
1680 context.pReply = pReply;
1681
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001682 if (code_item != nullptr) {
David Srbeckyb06e28e2015-12-10 13:15:00 +00001683 m->GetDexFile()->DecodeDebugPositionInfo(code_item, DebugCallbackContext::Callback, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001684 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001685
1686 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001687}
1688
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001689void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1690 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001691 struct DebugCallbackContext {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001692 ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001693 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001694 size_t variable_count;
1695 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001696
David Srbeckyb06e28e2015-12-10 13:15:00 +00001697 static void Callback(void* context, const DexFile::LocalInfo& entry)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001698 REQUIRES_SHARED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001699 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1700
David Srbeckyb06e28e2015-12-10 13:15:00 +00001701 uint16_t slot = entry.reg_;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001702 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
David Srbeckyb06e28e2015-12-10 13:15:00 +00001703 pContext->variable_count, entry.start_address_,
1704 entry.end_address_ - entry.start_address_,
1705 entry.name_, entry.descriptor_, entry.signature_, slot,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001706 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001707
Jeff Haob7cefc72013-11-14 14:51:09 -08001708 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001709
David Srbeckyb06e28e2015-12-10 13:15:00 +00001710 expandBufAdd8BE(pContext->pReply, entry.start_address_);
1711 expandBufAddUtf8String(pContext->pReply, entry.name_);
1712 expandBufAddUtf8String(pContext->pReply, entry.descriptor_);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001713 if (pContext->with_generic) {
David Srbeckyb06e28e2015-12-10 13:15:00 +00001714 expandBufAddUtf8String(pContext->pReply, entry.signature_);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001715 }
David Srbeckyb06e28e2015-12-10 13:15:00 +00001716 expandBufAdd4BE(pContext->pReply, entry.end_address_- entry.start_address_);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001717 expandBufAdd4BE(pContext->pReply, slot);
1718
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001719 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001720 }
1721 };
Mathieu Chartiere401d142015-04-22 13:56:20 -07001722 ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001723
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001724 // arg_count considers doubles and longs to take 2 units.
1725 // variable_count considers everything to take 1 unit.
Sebastien Hertzaef0c912016-08-08 10:20:28 +02001726 expandBufAdd4BE(pReply, GetMethodNumArgRegistersIncludingThis(m));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001727
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001728 // We don't know the total number of variables yet, so leave a blank and update it later.
1729 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001730 expandBufAdd4BE(pReply, 0);
1731
1732 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001733 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001734 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001735 context.variable_count = 0;
1736 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001737
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001738 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001739 if (code_item != nullptr) {
David Srbeckyb06e28e2015-12-10 13:15:00 +00001740 m->GetDexFile()->DecodeDebugLocalInfo(
1741 code_item, m->IsStatic(), m->GetDexMethodIndex(), DebugCallbackContext::Callback,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001742 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001743 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001744
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001745 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001746}
1747
Jeff Hao579b0242013-11-18 13:16:49 -08001748void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1749 JDWP::ExpandBuf* pReply) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001750 ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001751 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001752 OutputJValue(tag, return_value, pReply);
1753}
1754
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001755void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1756 JDWP::ExpandBuf* pReply) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001757 ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001758 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001759 OutputJValue(tag, field_value, pReply);
1760}
1761
Elliott Hughes9777ba22013-01-17 09:04:19 -08001762JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001763 std::vector<uint8_t>* bytecodes) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001764 ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001765 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001766 return JDWP::ERR_INVALID_METHODID;
1767 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001768 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001769 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1770 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1771 const uint8_t* end = begin + byte_count;
1772 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001773 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001774 }
1775 return JDWP::ERR_NONE;
1776}
1777
Elliott Hughes88d63092013-01-09 09:55:54 -08001778JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001779 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001780}
1781
Elliott Hughes88d63092013-01-09 09:55:54 -08001782JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001783 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001784}
1785
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001786static JValue GetArtFieldValue(ArtField* f, mirror::Object* o)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001787 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001788 Primitive::Type fieldType = f->GetTypeAsPrimitiveType();
1789 JValue field_value;
1790 switch (fieldType) {
1791 case Primitive::kPrimBoolean:
1792 field_value.SetZ(f->GetBoolean(o));
1793 return field_value;
1794
1795 case Primitive::kPrimByte:
1796 field_value.SetB(f->GetByte(o));
1797 return field_value;
1798
1799 case Primitive::kPrimChar:
1800 field_value.SetC(f->GetChar(o));
1801 return field_value;
1802
1803 case Primitive::kPrimShort:
1804 field_value.SetS(f->GetShort(o));
1805 return field_value;
1806
1807 case Primitive::kPrimInt:
1808 case Primitive::kPrimFloat:
1809 // Int and Float must be treated as 32-bit values in JDWP.
1810 field_value.SetI(f->GetInt(o));
1811 return field_value;
1812
1813 case Primitive::kPrimLong:
1814 case Primitive::kPrimDouble:
1815 // Long and Double must be treated as 64-bit values in JDWP.
1816 field_value.SetJ(f->GetLong(o));
1817 return field_value;
1818
1819 case Primitive::kPrimNot:
Mathieu Chartier1cc62e42016-10-03 18:01:28 -07001820 field_value.SetL(f->GetObject(o).Ptr());
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001821 return field_value;
1822
1823 case Primitive::kPrimVoid:
1824 LOG(FATAL) << "Attempt to read from field of type 'void'";
1825 UNREACHABLE();
1826 }
1827 LOG(FATAL) << "Attempt to read from field of unknown type";
1828 UNREACHABLE();
1829}
1830
Elliott Hughes88d63092013-01-09 09:55:54 -08001831static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1832 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001833 bool is_static)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001834 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001835 JDWP::JdwpError error;
1836 mirror::Class* c = DecodeClass(ref_type_id, &error);
1837 if (ref_type_id != 0 && c == nullptr) {
1838 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001839 }
1840
Jeff Haode19a252016-09-14 15:56:35 -07001841 Thread* self = Thread::Current();
1842 StackHandleScope<2> hs(self);
1843 MutableHandle<mirror::Object>
1844 o(hs.NewHandle(Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001845 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001846 return JDWP::ERR_INVALID_OBJECT;
1847 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07001848 ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001849
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001850 mirror::Class* receiver_class = c;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001851 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001852 receiver_class = o->GetClass();
1853 }
Jeff Haode19a252016-09-14 15:56:35 -07001854
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001855 // TODO: should we give up now if receiver_class is null?
Ian Rogersc0542af2014-09-03 16:16:56 -07001856 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
David Sehr709b0702016-10-13 09:12:37 -07001857 LOG(INFO) << "ERR_INVALID_FIELDID: " << f->PrettyField() << " "
1858 << receiver_class->PrettyClass();
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001859 return JDWP::ERR_INVALID_FIELDID;
1860 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001861
Jeff Haode19a252016-09-14 15:56:35 -07001862 // Ensure the field's class is initialized.
1863 Handle<mirror::Class> klass(hs.NewHandle(f->GetDeclaringClass()));
1864 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, klass, true, false)) {
David Sehr709b0702016-10-13 09:12:37 -07001865 LOG(WARNING) << "Not able to initialize class for SetValues: "
1866 << mirror::Class::PrettyClass(klass.Get());
Jeff Haode19a252016-09-14 15:56:35 -07001867 }
1868
Elliott Hughes0cf74332012-02-23 23:14:00 -08001869 // The RI only enforces the static/non-static mismatch in one direction.
1870 // TODO: should we change the tests and check both?
1871 if (is_static) {
1872 if (!f->IsStatic()) {
1873 return JDWP::ERR_INVALID_FIELDID;
1874 }
1875 } else {
1876 if (f->IsStatic()) {
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001877 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.GetValues"
David Sehr709b0702016-10-13 09:12:37 -07001878 << " on static field " << f->PrettyField();
Elliott Hughes0cf74332012-02-23 23:14:00 -08001879 }
1880 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001881 if (f->IsStatic()) {
Jeff Haode19a252016-09-14 15:56:35 -07001882 o.Assign(f->GetDeclaringClass());
jeffhao0dfbb7e2012-11-28 15:26:03 -08001883 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001884
Jeff Haode19a252016-09-14 15:56:35 -07001885 JValue field_value(GetArtFieldValue(f, o.Get()));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001886 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001887 Dbg::OutputJValue(tag, &field_value, pReply);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001888 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001889}
1890
Elliott Hughes88d63092013-01-09 09:55:54 -08001891JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001892 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001893 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001894}
1895
Ian Rogersc0542af2014-09-03 16:16:56 -07001896JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1897 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001898 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001899}
1900
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001901static JDWP::JdwpError SetArtFieldValue(ArtField* f, mirror::Object* o, uint64_t value, int width)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001902 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001903 Primitive::Type fieldType = f->GetTypeAsPrimitiveType();
1904 // Debugging only happens at runtime so we know we are not running in a transaction.
1905 static constexpr bool kNoTransactionMode = false;
1906 switch (fieldType) {
1907 case Primitive::kPrimBoolean:
1908 CHECK_EQ(width, 1);
1909 f->SetBoolean<kNoTransactionMode>(o, static_cast<uint8_t>(value));
1910 return JDWP::ERR_NONE;
1911
1912 case Primitive::kPrimByte:
1913 CHECK_EQ(width, 1);
1914 f->SetByte<kNoTransactionMode>(o, static_cast<uint8_t>(value));
1915 return JDWP::ERR_NONE;
1916
1917 case Primitive::kPrimChar:
1918 CHECK_EQ(width, 2);
1919 f->SetChar<kNoTransactionMode>(o, static_cast<uint16_t>(value));
1920 return JDWP::ERR_NONE;
1921
1922 case Primitive::kPrimShort:
1923 CHECK_EQ(width, 2);
1924 f->SetShort<kNoTransactionMode>(o, static_cast<int16_t>(value));
1925 return JDWP::ERR_NONE;
1926
1927 case Primitive::kPrimInt:
1928 case Primitive::kPrimFloat:
1929 CHECK_EQ(width, 4);
1930 // Int and Float must be treated as 32-bit values in JDWP.
1931 f->SetInt<kNoTransactionMode>(o, static_cast<int32_t>(value));
1932 return JDWP::ERR_NONE;
1933
1934 case Primitive::kPrimLong:
1935 case Primitive::kPrimDouble:
1936 CHECK_EQ(width, 8);
1937 // Long and Double must be treated as 64-bit values in JDWP.
1938 f->SetLong<kNoTransactionMode>(o, value);
1939 return JDWP::ERR_NONE;
1940
1941 case Primitive::kPrimNot: {
1942 JDWP::JdwpError error;
1943 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error);
1944 if (error != JDWP::ERR_NONE) {
1945 return JDWP::ERR_INVALID_OBJECT;
1946 }
1947 if (v != nullptr) {
Mathieu Chartier3398c782016-09-30 10:27:43 -07001948 ObjPtr<mirror::Class> field_type;
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001949 {
1950 StackHandleScope<2> hs(Thread::Current());
1951 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1952 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
Vladimir Marko4098a7a2017-11-06 16:00:51 +00001953 field_type = f->ResolveType();
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001954 }
1955 if (!field_type->IsAssignableFrom(v->GetClass())) {
1956 return JDWP::ERR_INVALID_OBJECT;
1957 }
1958 }
1959 f->SetObject<kNoTransactionMode>(o, v);
1960 return JDWP::ERR_NONE;
1961 }
1962
1963 case Primitive::kPrimVoid:
1964 LOG(FATAL) << "Attempt to write to field of type 'void'";
1965 UNREACHABLE();
1966 }
1967 LOG(FATAL) << "Attempt to write to field of unknown type";
1968 UNREACHABLE();
1969}
1970
Elliott Hughes88d63092013-01-09 09:55:54 -08001971static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001972 uint64_t value, int width, bool is_static)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001973 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001974 JDWP::JdwpError error;
Jeff Haode19a252016-09-14 15:56:35 -07001975 Thread* self = Thread::Current();
1976 StackHandleScope<2> hs(self);
1977 MutableHandle<mirror::Object>
1978 o(hs.NewHandle(Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001979 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001980 return JDWP::ERR_INVALID_OBJECT;
1981 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07001982 ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001983
Jeff Haode19a252016-09-14 15:56:35 -07001984 // Ensure the field's class is initialized.
1985 Handle<mirror::Class> klass(hs.NewHandle(f->GetDeclaringClass()));
1986 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, klass, true, false)) {
David Sehr709b0702016-10-13 09:12:37 -07001987 LOG(WARNING) << "Not able to initialize class for SetValues: "
1988 << mirror::Class::PrettyClass(klass.Get());
Jeff Haode19a252016-09-14 15:56:35 -07001989 }
1990
Elliott Hughes0cf74332012-02-23 23:14:00 -08001991 // The RI only enforces the static/non-static mismatch in one direction.
1992 // TODO: should we change the tests and check both?
1993 if (is_static) {
1994 if (!f->IsStatic()) {
1995 return JDWP::ERR_INVALID_FIELDID;
1996 }
1997 } else {
1998 if (f->IsStatic()) {
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001999 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues"
David Sehr709b0702016-10-13 09:12:37 -07002000 << " on static field " << f->PrettyField();
Elliott Hughes0cf74332012-02-23 23:14:00 -08002001 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002002 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08002003 if (f->IsStatic()) {
Jeff Haode19a252016-09-14 15:56:35 -07002004 o.Assign(f->GetDeclaringClass());
jeffhao0dfbb7e2012-11-28 15:26:03 -08002005 }
Jeff Haode19a252016-09-14 15:56:35 -07002006 return SetArtFieldValue(f, o.Get(), value, width);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002007}
2008
Elliott Hughes88d63092013-01-09 09:55:54 -08002009JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002010 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08002011 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002012}
2013
Elliott Hughes88d63092013-01-09 09:55:54 -08002014JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
2015 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002016}
2017
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02002018JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
Ian Rogersc0542af2014-09-03 16:16:56 -07002019 JDWP::JdwpError error;
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02002020 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error);
2021 if (error != JDWP::ERR_NONE) {
2022 return error;
2023 }
2024 if (obj == nullptr) {
2025 return JDWP::ERR_INVALID_OBJECT;
2026 }
2027 {
2028 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier0795f232016-09-27 18:43:30 -07002029 ObjPtr<mirror::Class> java_lang_String =
2030 soa.Decode<mirror::Class>(WellKnownClasses::java_lang_String);
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02002031 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
2032 // This isn't a string.
2033 return JDWP::ERR_INVALID_STRING;
2034 }
2035 }
2036 *str = obj->AsString()->ToModifiedUtf8();
2037 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002038}
2039
Jeff Hao579b0242013-11-18 13:16:49 -08002040void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
2041 if (IsPrimitiveTag(tag)) {
2042 expandBufAdd1(pReply, tag);
2043 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
2044 expandBufAdd1(pReply, return_value->GetI());
2045 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
2046 expandBufAdd2BE(pReply, return_value->GetI());
2047 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
2048 expandBufAdd4BE(pReply, return_value->GetI());
2049 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
2050 expandBufAdd8BE(pReply, return_value->GetJ());
2051 } else {
2052 CHECK_EQ(tag, JDWP::JT_VOID);
2053 }
2054 } else {
Ian Rogers98379392014-02-24 16:53:16 -08002055 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08002056 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08002057 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08002058 expandBufAddObjectId(pReply, gRegistry->Add(value));
2059 }
2060}
2061
Ian Rogersc0542af2014-09-03 16:16:56 -07002062JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08002063 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002064 JDWP::JdwpError error;
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002065 DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002066 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
2067 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002068 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002069
2070 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07002071 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
2072 CHECK(thread_object != nullptr) << error;
Mathieu Chartierc7853442015-03-27 14:35:38 -07002073 ArtField* java_lang_Thread_name_field =
Andreas Gampe08883de2016-11-08 13:20:52 -08002074 jni::DecodeArtField(WellKnownClasses::java_lang_Thread_name);
Mathieu Chartierf8ac97f2016-10-05 15:56:52 -07002075 ObjPtr<mirror::String> s(java_lang_Thread_name_field->GetObject(thread_object)->AsString());
Ian Rogersc0542af2014-09-03 16:16:56 -07002076 if (s != nullptr) {
2077 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08002078 }
2079 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002080}
2081
Elliott Hughes221229c2013-01-08 18:17:50 -08002082JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02002083 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002084 JDWP::JdwpError error;
2085 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
2086 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002087 return JDWP::ERR_INVALID_OBJECT;
2088 }
Mathieu Chartier268764d2016-09-13 12:09:38 -07002089 ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08002090 // Okay, so it's an object, but is it actually a thread?
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002091 DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002092 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2093 // Zombie threads are in the null group.
2094 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002095 error = JDWP::ERR_NONE;
2096 } else if (error == JDWP::ERR_NONE) {
Mathieu Chartier0795f232016-09-27 18:43:30 -07002097 ObjPtr<mirror::Class> c = soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002098 CHECK(c != nullptr);
Andreas Gampe08883de2016-11-08 13:20:52 -08002099 ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_Thread_group);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002100 CHECK(f != nullptr);
Mathieu Chartier3398c782016-09-30 10:27:43 -07002101 ObjPtr<mirror::Object> group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002102 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002103 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
2104 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08002105 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002106 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002107}
2108
Sebastien Hertza06430c2014-09-15 19:21:30 +02002109static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
2110 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002111 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002112 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,
2113 error);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002114 if (*error != JDWP::ERR_NONE) {
2115 return nullptr;
2116 }
2117 if (thread_group == nullptr) {
2118 *error = JDWP::ERR_INVALID_OBJECT;
2119 return nullptr;
2120 }
Mathieu Chartier0795f232016-09-27 18:43:30 -07002121 ObjPtr<mirror::Class> c =
2122 soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ThreadGroup);
Ian Rogers98379392014-02-24 16:53:16 -08002123 CHECK(c != nullptr);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002124 if (!c->IsAssignableFrom(thread_group->GetClass())) {
2125 // This is not a java.lang.ThreadGroup.
2126 *error = JDWP::ERR_INVALID_THREAD_GROUP;
2127 return nullptr;
2128 }
2129 *error = JDWP::ERR_NONE;
2130 return thread_group;
2131}
2132
2133JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
2134 ScopedObjectAccessUnchecked soa(Thread::Current());
2135 JDWP::JdwpError error;
2136 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2137 if (error != JDWP::ERR_NONE) {
2138 return error;
2139 }
Mathieu Chartier268764d2016-09-13 12:09:38 -07002140 ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroupName");
Andreas Gampe08883de2016-11-08 13:20:52 -08002141 ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_name);
Ian Rogersc0542af2014-09-03 16:16:56 -07002142 CHECK(f != nullptr);
Mathieu Chartier3398c782016-09-30 10:27:43 -07002143 ObjPtr<mirror::String> s = f->GetObject(thread_group)->AsString();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002144
2145 std::string thread_group_name(s->ToModifiedUtf8());
2146 expandBufAddUtf8String(pReply, thread_group_name);
2147 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002148}
2149
Sebastien Hertza06430c2014-09-15 19:21:30 +02002150JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08002151 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002152 JDWP::JdwpError error;
Sebastien Hertza06430c2014-09-15 19:21:30 +02002153 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2154 if (error != JDWP::ERR_NONE) {
2155 return error;
2156 }
Mathieu Chartier3398c782016-09-30 10:27:43 -07002157 ObjPtr<mirror::Object> parent;
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002158 {
Mathieu Chartier268764d2016-09-13 12:09:38 -07002159 ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroupParent");
Andreas Gampe08883de2016-11-08 13:20:52 -08002160 ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_parent);
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002161 CHECK(f != nullptr);
2162 parent = f->GetObject(thread_group);
2163 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002164 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
2165 expandBufAddObjectId(pReply, parent_group_id);
2166 return JDWP::ERR_NONE;
2167}
2168
Andreas Gampe08883de2016-11-08 13:20:52 -08002169static void GetChildThreadGroups(mirror::Object* thread_group,
Sebastien Hertza06430c2014-09-15 19:21:30 +02002170 std::vector<JDWP::ObjectId>* child_thread_group_ids)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002171 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02002172 CHECK(thread_group != nullptr);
2173
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +00002174 // Get the int "ngroups" count of this thread group...
Andreas Gampe08883de2016-11-08 13:20:52 -08002175 ArtField* ngroups_field = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_ngroups);
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +00002176 CHECK(ngroups_field != nullptr);
2177 const int32_t size = ngroups_field->GetInt(thread_group);
2178 if (size == 0) {
2179 return;
Sebastien Hertze49e1952014-10-13 11:27:13 +02002180 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002181
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +00002182 // Get the ThreadGroup[] "groups" out of this thread group...
Andreas Gampe08883de2016-11-08 13:20:52 -08002183 ArtField* groups_field = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_groups);
Mathieu Chartier3398c782016-09-30 10:27:43 -07002184 ObjPtr<mirror::Object> groups_array = groups_field->GetObject(thread_group);
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +00002185
2186 CHECK(groups_array != nullptr);
2187 CHECK(groups_array->IsObjectArray());
2188
Mathieu Chartier3398c782016-09-30 10:27:43 -07002189 ObjPtr<mirror::ObjectArray<mirror::Object>> groups_array_as_array =
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +00002190 groups_array->AsObjectArray<mirror::Object>();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002191
2192 // Copy the first 'size' elements out of the array into the result.
Sebastien Hertz6995c602014-09-09 12:10:13 +02002193 ObjectRegistry* registry = Dbg::GetObjectRegistry();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002194 for (int32_t i = 0; i < size; ++i) {
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +00002195 child_thread_group_ids->push_back(registry->Add(groups_array_as_array->Get(i)));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002196 }
2197}
2198
2199JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2200 JDWP::ExpandBuf* pReply) {
2201 ScopedObjectAccessUnchecked soa(Thread::Current());
2202 JDWP::JdwpError error;
2203 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2204 if (error != JDWP::ERR_NONE) {
2205 return error;
2206 }
2207
2208 // Add child threads.
2209 {
2210 std::vector<JDWP::ObjectId> child_thread_ids;
2211 GetThreads(thread_group, &child_thread_ids);
2212 expandBufAdd4BE(pReply, child_thread_ids.size());
2213 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2214 expandBufAddObjectId(pReply, child_thread_id);
2215 }
2216 }
2217
2218 // Add child thread groups.
2219 {
2220 std::vector<JDWP::ObjectId> child_thread_groups_ids;
Andreas Gampe08883de2016-11-08 13:20:52 -08002221 GetChildThreadGroups(thread_group, &child_thread_groups_ids);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002222 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2223 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2224 expandBufAddObjectId(pReply, child_thread_group_id);
2225 }
2226 }
2227
2228 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002229}
2230
2231JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002232 ScopedObjectAccessUnchecked soa(Thread::Current());
Andreas Gampe08883de2016-11-08 13:20:52 -08002233 ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Mathieu Chartier3398c782016-09-30 10:27:43 -07002234 ObjPtr<mirror::Object> group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002235 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002236}
2237
Jeff Hao920af3e2013-08-28 15:46:38 -07002238JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2239 switch (state) {
2240 case kBlocked:
2241 return JDWP::TS_MONITOR;
2242 case kNative:
2243 case kRunnable:
2244 case kSuspended:
2245 return JDWP::TS_RUNNING;
2246 case kSleeping:
2247 return JDWP::TS_SLEEPING;
2248 case kStarting:
2249 case kTerminated:
2250 return JDWP::TS_ZOMBIE;
2251 case kTimedWaiting:
Alex Light77fee872017-09-05 14:51:49 -07002252 case kWaitingForTaskProcessor:
2253 case kWaitingForLockInflation:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002254 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002255 case kWaitingForDebuggerSend:
2256 case kWaitingForDebuggerSuspension:
2257 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002258 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002259 case kWaitingForGcToComplete:
Mathieu Chartierb43390c2015-05-12 10:47:11 -07002260 case kWaitingForGetObjectsAllocated:
Jeff Hao920af3e2013-08-28 15:46:38 -07002261 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002262 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002263 case kWaitingForSignalCatcherOutput:
Hiroshi Yamauchi0c8c3032015-01-16 16:54:35 -08002264 case kWaitingForVisitObjects:
Jeff Hao920af3e2013-08-28 15:46:38 -07002265 case kWaitingInMainDebuggerLoop:
2266 case kWaitingInMainSignalCatcherLoop:
2267 case kWaitingPerformingGc:
Mathieu Chartier90ef3db2015-08-04 15:19:41 -07002268 case kWaitingWeakGcRootRead:
Hiroshi Yamauchi76f55b02015-08-21 16:10:39 -07002269 case kWaitingForGcThreadFlip:
Jeff Hao920af3e2013-08-28 15:46:38 -07002270 case kWaiting:
2271 return JDWP::TS_WAIT;
2272 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2273 }
2274 LOG(FATAL) << "Unknown thread state: " << state;
2275 return JDWP::TS_ZOMBIE;
2276}
2277
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002278JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2279 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002280 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002281
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002282 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2283
Ian Rogersc0542af2014-09-03 16:16:56 -07002284 JDWP::JdwpError error;
2285 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002286 if (error != JDWP::ERR_NONE) {
2287 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2288 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002289 return JDWP::ERR_NONE;
2290 }
2291 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002292 }
2293
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002294 if (IsSuspendedForDebugger(soa, thread)) {
2295 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002296 }
2297
Jeff Hao920af3e2013-08-28 15:46:38 -07002298 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002299 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002300}
2301
Elliott Hughes221229c2013-01-08 18:17:50 -08002302JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002303 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002304 JDWP::JdwpError error;
2305 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002306 if (error != JDWP::ERR_NONE) {
2307 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002308 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002309 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002310 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002311 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002312}
2313
Elliott Hughesf9501702013-01-11 11:22:27 -08002314JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2315 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002316 JDWP::JdwpError error;
2317 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002318 if (error != JDWP::ERR_NONE) {
2319 return error;
2320 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002321 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002322 return JDWP::ERR_NONE;
2323}
2324
Andreas Gampe08883de2016-11-08 13:20:52 -08002325static bool IsInDesiredThreadGroup(mirror::Object* desired_thread_group, mirror::Object* peer)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002326 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz070f7322014-09-09 12:08:49 +02002327 // Do we want threads from all thread groups?
2328 if (desired_thread_group == nullptr) {
2329 return true;
2330 }
Andreas Gampe08883de2016-11-08 13:20:52 -08002331 ArtField* thread_group_field = jni::DecodeArtField(WellKnownClasses::java_lang_Thread_group);
Sebastien Hertz070f7322014-09-09 12:08:49 +02002332 DCHECK(thread_group_field != nullptr);
Mathieu Chartier3398c782016-09-30 10:27:43 -07002333 ObjPtr<mirror::Object> group = thread_group_field->GetObject(peer);
Sebastien Hertz070f7322014-09-09 12:08:49 +02002334 return (group == desired_thread_group);
2335}
2336
Sebastien Hertza06430c2014-09-15 19:21:30 +02002337void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002338 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz070f7322014-09-09 12:08:49 +02002339 std::list<Thread*> all_threads_list;
2340 {
2341 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2342 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2343 }
2344 for (Thread* t : all_threads_list) {
2345 if (t == Dbg::GetDebugThread()) {
2346 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2347 // query all threads, so it's easier if we just don't tell them about this thread.
2348 continue;
2349 }
2350 if (t->IsStillStarting()) {
2351 // This thread is being started (and has been registered in the thread list). However, it is
2352 // not completely started yet so we must ignore it.
2353 continue;
2354 }
Nicolas Geoffraycafa0812017-02-15 18:27:34 +00002355 mirror::Object* peer = t->GetPeerFromOtherThread();
Sebastien Hertz070f7322014-09-09 12:08:49 +02002356 if (peer == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07002357 // 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 +02002358 // this thread yet.
2359 // TODO: if we identified threads to the debugger by their Thread*
2360 // rather than their peer's mirror::Object*, we could fix this.
2361 // Doing so might help us report ZOMBIE threads too.
2362 continue;
2363 }
Andreas Gampe08883de2016-11-08 13:20:52 -08002364 if (IsInDesiredThreadGroup(thread_group, peer)) {
Sebastien Hertz070f7322014-09-09 12:08:49 +02002365 thread_ids->push_back(gRegistry->Add(peer));
2366 }
2367 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002368}
Elliott Hughesa2155262011-11-16 16:26:58 -08002369
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002370static int GetStackDepth(Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002371 struct CountStackDepthVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002372 explicit CountStackDepthVisitor(Thread* thread_in)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01002373 : StackVisitor(thread_in, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2374 depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002375
Elliott Hughes64f574f2013-02-20 14:57:12 -08002376 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2377 // annotalysis.
2378 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002379 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002380 ++depth;
2381 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002382 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002383 }
2384 size_t depth;
2385 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002386
Ian Rogers7a22fa62013-01-23 12:16:16 -08002387 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002388 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002389 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002390}
2391
Ian Rogersc0542af2014-09-03 16:16:56 -07002392JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002393 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002394 JDWP::JdwpError error;
2395 *result = 0;
2396 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002397 if (error != JDWP::ERR_NONE) {
2398 return error;
2399 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002400 if (!IsSuspendedForDebugger(soa, thread)) {
2401 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2402 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002403 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002404 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002405}
2406
Ian Rogers306057f2012-11-26 12:45:53 -08002407JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2408 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002409 class GetFrameVisitor : public StackVisitor {
2410 public:
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002411 GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in,
2412 JDWP::ExpandBuf* buf_in)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002413 REQUIRES_SHARED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01002414 : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2415 depth_(0),
2416 start_frame_(start_frame_in),
2417 frame_count_(frame_count_in),
2418 buf_(buf_in) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002419 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002420 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002421
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002422 bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002423 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002424 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002425 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002426 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002427 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002428 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002429 if (depth_ >= start_frame_) {
2430 JDWP::FrameId frame_id(GetFrameId());
2431 JDWP::JdwpLocation location;
Sebastien Hertz6995c602014-09-09 12:10:13 +02002432 SetJdwpLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002433 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002434 expandBufAdd8BE(buf_, frame_id);
2435 expandBufAddLocation(buf_, location);
2436 }
2437 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002438 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002439 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002440
2441 private:
2442 size_t depth_;
2443 const size_t start_frame_;
2444 const size_t frame_count_;
2445 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002446 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002447
2448 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002449 JDWP::JdwpError error;
2450 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002451 if (error != JDWP::ERR_NONE) {
2452 return error;
2453 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002454 if (!IsSuspendedForDebugger(soa, thread)) {
2455 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2456 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002457 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002458 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002459 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002460}
2461
2462JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002463 return GetThreadId(Thread::Current());
2464}
2465
2466JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002467 ScopedObjectAccessUnchecked soa(Thread::Current());
Nicolas Geoffraycafa0812017-02-15 18:27:34 +00002468 return gRegistry->Add(thread->GetPeerFromOtherThread());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002469}
2470
Elliott Hughes475fc232011-10-25 15:00:35 -07002471void Dbg::SuspendVM() {
Hiroshi Yamauchi8f95cf32016-04-19 11:14:06 -07002472 // Avoid a deadlock between GC and debugger where GC gets suspended during GC. b/25800335.
2473 gc::ScopedGCCriticalSection gcs(Thread::Current(),
2474 gc::kGcCauseDebugger,
2475 gc::kCollectorTypeDebugger);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002476 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002477}
2478
2479void Dbg::ResumeVM() {
Sebastien Hertz253fa552014-10-14 17:27:15 +02002480 Runtime::Current()->GetThreadList()->ResumeAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002481}
2482
Elliott Hughes221229c2013-01-08 18:17:50 -08002483JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002484 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002485 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002486 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002487 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002488 JDWP::JdwpError error;
2489 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002490 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002491 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002492 return JDWP::ERR_THREAD_NOT_ALIVE;
2493 }
Ian Rogers4ad5cd32014-11-11 23:08:07 -08002494 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002495 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002496 ThreadList* thread_list = Runtime::Current()->GetThreadList();
Sebastien Hertzcdd798d2017-04-18 18:28:51 +02002497 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(),
2498 request_suspension,
Alex Light46f93402017-06-29 11:59:50 -07002499 SuspendReason::kForDebugger,
Brian Carlstromba32de42014-08-27 23:43:46 -07002500 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002501 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002502 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002503 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002504 return JDWP::ERR_INTERNAL;
2505 } else {
2506 return JDWP::ERR_THREAD_NOT_ALIVE;
2507 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002508}
2509
Elliott Hughes221229c2013-01-08 18:17:50 -08002510void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002511 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002512 JDWP::JdwpError error;
2513 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2514 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002515 Thread* thread;
2516 {
2517 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2518 thread = Thread::FromManagedThread(soa, peer);
2519 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002520 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002521 LOG(WARNING) << "No such thread for resume: " << peer;
2522 return;
2523 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002524 bool needs_resume;
2525 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002526 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Sebastien Hertz70d60272017-04-14 14:18:36 +02002527 needs_resume = thread->GetDebugSuspendCount() > 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002528 }
2529 if (needs_resume) {
Alex Light88fd7202017-06-30 08:31:59 -07002530 bool resumed = Runtime::Current()->GetThreadList()->Resume(thread, SuspendReason::kForDebugger);
2531 DCHECK(resumed);
Elliott Hughes546b9862012-06-20 16:06:13 -07002532 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002533}
2534
2535void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002536 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002537}
2538
Ian Rogers0399dde2012-06-06 17:09:28 -07002539struct GetThisVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002540 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002541 REQUIRES_SHARED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01002542 : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2543 this_object(nullptr),
2544 frame_id(frame_id_in) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002545
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002546 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2547 // annotalysis.
2548 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002549 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002550 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002551 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002552 this_object = GetThisObject();
2553 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002554 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002555 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002556
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002557 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002558 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002559};
2560
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002561JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2562 JDWP::ObjectId* result) {
2563 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002564 JDWP::JdwpError error;
2565 Thread* thread = DecodeThread(soa, thread_id, &error);
2566 if (error != JDWP::ERR_NONE) {
2567 return error;
2568 }
2569 if (!IsSuspendedForDebugger(soa, thread)) {
2570 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002571 }
Ian Rogers700a4022014-05-19 16:49:03 -07002572 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002573 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002574 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002575 *result = gRegistry->Add(visitor.this_object);
2576 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002577}
2578
Sebastien Hertz8009f392014-09-01 17:07:11 +02002579// Walks the stack until we find the frame with the given FrameId.
2580class FindFrameVisitor FINAL : public StackVisitor {
2581 public:
2582 FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002583 REQUIRES_SHARED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01002584 : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2585 frame_id_(frame_id),
2586 error_(JDWP::ERR_INVALID_FRAMEID) {}
Ian Rogersca190662012-06-26 15:45:57 -07002587
Sebastien Hertz8009f392014-09-01 17:07:11 +02002588 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2589 // annotalysis.
2590 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
2591 if (GetFrameId() != frame_id_) {
2592 return true; // Not our frame, carry on.
Ian Rogers0399dde2012-06-06 17:09:28 -07002593 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07002594 ArtMethod* m = GetMethod();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002595 if (m->IsNative()) {
2596 // We can't read/write local value from/into native method.
2597 error_ = JDWP::ERR_OPAQUE_FRAME;
2598 } else {
2599 // We found our frame.
2600 error_ = JDWP::ERR_NONE;
2601 }
2602 return false;
2603 }
2604
2605 JDWP::JdwpError GetError() const {
2606 return error_;
2607 }
2608
2609 private:
2610 const JDWP::FrameId frame_id_;
2611 JDWP::JdwpError error_;
Sebastien Hertz26f72862015-09-15 09:52:07 +02002612
2613 DISALLOW_COPY_AND_ASSIGN(FindFrameVisitor);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002614};
2615
2616JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2617 JDWP::ObjectId thread_id = request->ReadThreadId();
2618 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002619
2620 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002621 JDWP::JdwpError error;
2622 Thread* thread = DecodeThread(soa, thread_id, &error);
2623 if (error != JDWP::ERR_NONE) {
2624 return error;
2625 }
2626 if (!IsSuspendedForDebugger(soa, thread)) {
2627 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes221229c2013-01-08 18:17:50 -08002628 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002629 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002630 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002631 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002632 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002633 if (visitor.GetError() != JDWP::ERR_NONE) {
2634 return visitor.GetError();
2635 }
2636
2637 // Read the values from visitor's context.
2638 int32_t slot_count = request->ReadSigned32("slot count");
2639 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2640 for (int32_t i = 0; i < slot_count; ++i) {
2641 uint32_t slot = request->ReadUnsigned32("slot");
2642 JDWP::JdwpTag reqSigByte = request->ReadTag();
2643
2644 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
2645
2646 size_t width = Dbg::GetTagWidth(reqSigByte);
Sebastien Hertz7d955652014-10-22 10:57:10 +02002647 uint8_t* ptr = expandBufAddSpace(pReply, width + 1);
Sebastien Hertz69206392015-04-07 15:54:25 +02002648 error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002649 if (error != JDWP::ERR_NONE) {
2650 return error;
2651 }
2652 }
2653 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002654}
2655
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002656constexpr JDWP::JdwpError kStackFrameLocalAccessError = JDWP::ERR_ABSENT_INFORMATION;
2657
2658static std::string GetStackContextAsString(const StackVisitor& visitor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002659 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002660 return StringPrintf(" at DEX pc 0x%08x in method %s", visitor.GetDexPc(false),
David Sehr709b0702016-10-13 09:12:37 -07002661 ArtMethod::PrettyMethod(visitor.GetMethod()).c_str());
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002662}
2663
2664static JDWP::JdwpError FailGetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2665 JDWP::JdwpTag tag)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002666 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002667 LOG(ERROR) << "Failed to read " << tag << " local from register v" << vreg
2668 << GetStackContextAsString(visitor);
2669 return kStackFrameLocalAccessError;
2670}
2671
Sebastien Hertz8009f392014-09-01 17:07:11 +02002672JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2673 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002674 ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002675 JDWP::JdwpError error = JDWP::ERR_NONE;
2676 uint16_t vreg = DemangleSlot(slot, m, &error);
2677 if (error != JDWP::ERR_NONE) {
2678 return error;
2679 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002680 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002681 switch (tag) {
2682 case JDWP::JT_BOOLEAN: {
2683 CHECK_EQ(width, 1U);
2684 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002685 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2686 return FailGetLocalValue(visitor, vreg, tag);
Ian Rogers0399dde2012-06-06 17:09:28 -07002687 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002688 VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal;
2689 JDWP::Set1(buf + 1, intVal != 0);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002690 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002691 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002692 case JDWP::JT_BYTE: {
2693 CHECK_EQ(width, 1U);
2694 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002695 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2696 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002697 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002698 VLOG(jdwp) << "get byte local " << vreg << " = " << intVal;
2699 JDWP::Set1(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002700 break;
2701 }
2702 case JDWP::JT_SHORT:
2703 case JDWP::JT_CHAR: {
2704 CHECK_EQ(width, 2U);
2705 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002706 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2707 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002708 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002709 VLOG(jdwp) << "get short/char local " << vreg << " = " << intVal;
2710 JDWP::Set2BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002711 break;
2712 }
2713 case JDWP::JT_INT: {
2714 CHECK_EQ(width, 4U);
2715 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002716 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2717 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002718 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002719 VLOG(jdwp) << "get int local " << vreg << " = " << intVal;
2720 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002721 break;
2722 }
2723 case JDWP::JT_FLOAT: {
2724 CHECK_EQ(width, 4U);
2725 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002726 if (!visitor.GetVReg(m, vreg, kFloatVReg, &intVal)) {
2727 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002728 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002729 VLOG(jdwp) << "get float local " << vreg << " = " << intVal;
2730 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002731 break;
2732 }
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));
2741 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002742 if (!visitor.GetVReg(m, vreg, kReferenceVReg, &intVal)) {
2743 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002744 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002745 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2746 VLOG(jdwp) << "get " << tag << " object local " << vreg << " = " << o;
2747 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2748 LOG(FATAL) << StringPrintf("Found invalid object %#" PRIxPTR " in register v%u",
2749 reinterpret_cast<uintptr_t>(o), vreg)
2750 << GetStackContextAsString(visitor);
2751 UNREACHABLE();
2752 }
2753 tag = TagFromObject(soa, o);
2754 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002755 break;
2756 }
2757 case JDWP::JT_DOUBLE: {
2758 CHECK_EQ(width, 8U);
2759 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002760 if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2761 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002762 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002763 VLOG(jdwp) << "get double local " << vreg << " = " << longVal;
2764 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002765 break;
2766 }
2767 case JDWP::JT_LONG: {
2768 CHECK_EQ(width, 8U);
2769 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002770 if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) {
2771 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002772 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002773 VLOG(jdwp) << "get long local " << vreg << " = " << longVal;
2774 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002775 break;
2776 }
2777 default:
2778 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002779 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002780 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002781
Sebastien Hertz8009f392014-09-01 17:07:11 +02002782 // Prepend tag, which may have been updated.
2783 JDWP::Set1(buf, tag);
2784 return JDWP::ERR_NONE;
2785}
2786
2787JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2788 JDWP::ObjectId thread_id = request->ReadThreadId();
2789 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002790
2791 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002792 JDWP::JdwpError error;
2793 Thread* thread = DecodeThread(soa, thread_id, &error);
2794 if (error != JDWP::ERR_NONE) {
2795 return error;
2796 }
2797 if (!IsSuspendedForDebugger(soa, thread)) {
2798 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes221229c2013-01-08 18:17:50 -08002799 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002800 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002801 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002802 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002803 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002804 if (visitor.GetError() != JDWP::ERR_NONE) {
2805 return visitor.GetError();
2806 }
2807
2808 // Writes the values into visitor's context.
2809 int32_t slot_count = request->ReadSigned32("slot count");
2810 for (int32_t i = 0; i < slot_count; ++i) {
2811 uint32_t slot = request->ReadUnsigned32("slot");
2812 JDWP::JdwpTag sigByte = request->ReadTag();
2813 size_t width = Dbg::GetTagWidth(sigByte);
2814 uint64_t value = request->ReadValue(width);
2815
2816 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
Mingyao Yang99170c62015-07-06 11:10:37 -07002817 error = Dbg::SetLocalValue(thread, visitor, slot, sigByte, value, width);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002818 if (error != JDWP::ERR_NONE) {
2819 return error;
2820 }
2821 }
2822 return JDWP::ERR_NONE;
2823}
2824
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002825template<typename T>
2826static JDWP::JdwpError FailSetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2827 JDWP::JdwpTag tag, T value)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002828 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002829 LOG(ERROR) << "Failed to write " << tag << " local " << value
2830 << " (0x" << std::hex << value << ") into register v" << vreg
2831 << GetStackContextAsString(visitor);
2832 return kStackFrameLocalAccessError;
2833}
2834
Mingyao Yang99170c62015-07-06 11:10:37 -07002835JDWP::JdwpError Dbg::SetLocalValue(Thread* thread, StackVisitor& visitor, int slot,
2836 JDWP::JdwpTag tag, uint64_t value, size_t width) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002837 ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002838 JDWP::JdwpError error = JDWP::ERR_NONE;
2839 uint16_t vreg = DemangleSlot(slot, m, &error);
2840 if (error != JDWP::ERR_NONE) {
2841 return error;
2842 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002843 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002844 switch (tag) {
2845 case JDWP::JT_BOOLEAN:
2846 case JDWP::JT_BYTE:
2847 CHECK_EQ(width, 1U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002848 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002849 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002850 }
2851 break;
2852 case JDWP::JT_SHORT:
2853 case JDWP::JT_CHAR:
2854 CHECK_EQ(width, 2U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002855 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002856 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002857 }
2858 break;
2859 case JDWP::JT_INT:
2860 CHECK_EQ(width, 4U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002861 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002862 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002863 }
2864 break;
2865 case JDWP::JT_FLOAT:
2866 CHECK_EQ(width, 4U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002867 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002868 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002869 }
2870 break;
2871 case JDWP::JT_ARRAY:
2872 case JDWP::JT_CLASS_LOADER:
2873 case JDWP::JT_CLASS_OBJECT:
2874 case JDWP::JT_OBJECT:
2875 case JDWP::JT_STRING:
2876 case JDWP::JT_THREAD:
2877 case JDWP::JT_THREAD_GROUP: {
2878 CHECK_EQ(width, sizeof(JDWP::ObjectId));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002879 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value),
2880 &error);
2881 if (error != JDWP::ERR_NONE) {
2882 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2883 return JDWP::ERR_INVALID_OBJECT;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002884 }
Mingyao Yang636b9252015-07-31 16:40:24 -07002885 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002886 kReferenceVReg)) {
2887 return FailSetLocalValue(visitor, vreg, tag, reinterpret_cast<uintptr_t>(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002888 }
2889 break;
2890 }
2891 case JDWP::JT_DOUBLE: {
2892 CHECK_EQ(width, 8U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002893 if (!visitor.SetVRegPair(m, vreg, value, kDoubleLoVReg, kDoubleHiVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002894 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002895 }
2896 break;
2897 }
2898 case JDWP::JT_LONG: {
2899 CHECK_EQ(width, 8U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002900 if (!visitor.SetVRegPair(m, vreg, value, kLongLoVReg, kLongHiVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002901 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002902 }
2903 break;
2904 }
2905 default:
2906 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002907 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002908 }
Mingyao Yang99170c62015-07-06 11:10:37 -07002909
2910 // If we set the local variable in a compiled frame, we need to trigger a deoptimization of
2911 // the stack so we continue execution with the interpreter using the new value(s) of the updated
2912 // local variable(s). To achieve this, we install instrumentation exit stub on each method of the
2913 // thread's stack. The stub will cause the deoptimization to happen.
2914 if (!visitor.IsShadowFrame() && thread->HasDebuggerShadowFrames()) {
2915 Runtime::Current()->GetInstrumentation()->InstrumentThreadStack(thread);
2916 }
2917
Sebastien Hertz8009f392014-09-01 17:07:11 +02002918 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002919}
2920
Mathieu Chartiere401d142015-04-22 13:56:20 -07002921static void SetEventLocation(JDWP::EventLocation* location, ArtMethod* m, uint32_t dex_pc)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002922 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002923 DCHECK(location != nullptr);
2924 if (m == nullptr) {
2925 memset(location, 0, sizeof(*location));
2926 } else {
Alex Light97e78032017-06-27 17:51:55 -07002927 location->method = m->GetCanonicalMethod(kRuntimePointerSize);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002928 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002929 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002930}
2931
Mathieu Chartiere401d142015-04-22 13:56:20 -07002932void Dbg::PostLocationEvent(ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002933 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002934 if (!IsDebuggerActive()) {
2935 return;
2936 }
2937 DCHECK(m != nullptr);
2938 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002939 JDWP::EventLocation location;
2940 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002941
Sebastien Hertzde48aa62015-05-26 11:53:39 +02002942 // We need to be sure no exception is pending when calling JdwpState::PostLocationEvent.
2943 // This is required to be able to call JNI functions to create JDWP ids. To achieve this,
2944 // we temporarily clear the current thread's exception (if any) and will restore it after
2945 // the call.
2946 // Note: the only way to get a pending exception here is to suspend on a move-exception
2947 // instruction.
2948 Thread* const self = Thread::Current();
2949 StackHandleScope<1> hs(self);
2950 Handle<mirror::Throwable> pending_exception(hs.NewHandle(self->GetException()));
2951 self->ClearException();
Andreas Gampefa4333d2017-02-14 11:10:34 -08002952 if (kIsDebugBuild && pending_exception != nullptr) {
Sebastien Hertzde48aa62015-05-26 11:53:39 +02002953 const DexFile::CodeItem* code_item = location.method->GetCodeItem();
2954 const Instruction* instr = Instruction::At(&code_item->insns_[location.dex_pc]);
2955 CHECK_EQ(Instruction::MOVE_EXCEPTION, instr->Opcode());
2956 }
2957
Sebastien Hertz6995c602014-09-09 12:10:13 +02002958 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Sebastien Hertzde48aa62015-05-26 11:53:39 +02002959
Andreas Gampefa4333d2017-02-14 11:10:34 -08002960 if (pending_exception != nullptr) {
Sebastien Hertzde48aa62015-05-26 11:53:39 +02002961 self->SetException(pending_exception.Get());
2962 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002963}
2964
Mathieu Chartiere401d142015-04-22 13:56:20 -07002965void Dbg::PostFieldAccessEvent(ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07002966 mirror::Object* this_object, ArtField* f) {
Alex Lighte00ec302017-06-16 08:56:43 -07002967 // TODO We should send events for native methods.
2968 if (!IsDebuggerActive() || m->IsNative()) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002969 return;
2970 }
2971 DCHECK(m != nullptr);
2972 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002973 JDWP::EventLocation location;
2974 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002975
Sebastien Hertz6995c602014-09-09 12:10:13 +02002976 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002977}
2978
Mathieu Chartiere401d142015-04-22 13:56:20 -07002979void Dbg::PostFieldModificationEvent(ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07002980 mirror::Object* this_object, ArtField* f,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002981 const JValue* field_value) {
Alex Lighte00ec302017-06-16 08:56:43 -07002982 // TODO We should send events for native methods.
2983 if (!IsDebuggerActive() || m->IsNative()) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002984 return;
2985 }
2986 DCHECK(m != nullptr);
2987 DCHECK(f != nullptr);
2988 DCHECK(field_value != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002989 JDWP::EventLocation location;
2990 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002991
Sebastien Hertz6995c602014-09-09 12:10:13 +02002992 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002993}
2994
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002995/**
2996 * Finds the location where this exception will be caught. We search until we reach the top
2997 * frame, in which case this exception is considered uncaught.
2998 */
2999class CatchLocationFinder : public StackVisitor {
3000 public:
3001 CatchLocationFinder(Thread* self, const Handle<mirror::Throwable>& exception, Context* context)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003002 REQUIRES_SHARED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01003003 : StackVisitor(self, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003004 exception_(exception),
3005 handle_scope_(self),
3006 this_at_throw_(handle_scope_.NewHandle<mirror::Object>(nullptr)),
Mathieu Chartiere401d142015-04-22 13:56:20 -07003007 catch_method_(nullptr),
3008 throw_method_(nullptr),
Andreas Gampee2abbc62017-09-15 11:59:26 -07003009 catch_dex_pc_(dex::kDexNoIndex),
3010 throw_dex_pc_(dex::kDexNoIndex) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003011 }
3012
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003013 bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003014 ArtMethod* method = GetMethod();
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003015 DCHECK(method != nullptr);
3016 if (method->IsRuntimeMethod()) {
3017 // Ignore callee save method.
3018 DCHECK(method->IsCalleeSaveMethod());
3019 return true;
3020 }
3021
3022 uint32_t dex_pc = GetDexPc();
Mathieu Chartiere401d142015-04-22 13:56:20 -07003023 if (throw_method_ == nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003024 // First Java method found. It is either the method that threw the exception,
3025 // or the Java native method that is reporting an exception thrown by
3026 // native code.
3027 this_at_throw_.Assign(GetThisObject());
Mathieu Chartiere401d142015-04-22 13:56:20 -07003028 throw_method_ = method;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003029 throw_dex_pc_ = dex_pc;
3030 }
3031
Andreas Gampee2abbc62017-09-15 11:59:26 -07003032 if (dex_pc != dex::kDexNoIndex) {
Sebastien Hertz26f72862015-09-15 09:52:07 +02003033 StackHandleScope<1> hs(GetThread());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003034 uint32_t found_dex_pc;
3035 Handle<mirror::Class> exception_class(hs.NewHandle(exception_->GetClass()));
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003036 bool unused_clear_exception;
Mathieu Chartiere401d142015-04-22 13:56:20 -07003037 found_dex_pc = method->FindCatchBlock(exception_class, dex_pc, &unused_clear_exception);
Andreas Gampee2abbc62017-09-15 11:59:26 -07003038 if (found_dex_pc != dex::kDexNoIndex) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003039 catch_method_ = method;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003040 catch_dex_pc_ = found_dex_pc;
3041 return false; // End stack walk.
3042 }
3043 }
3044 return true; // Continue stack walk.
3045 }
3046
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003047 ArtMethod* GetCatchMethod() REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003048 return catch_method_;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003049 }
3050
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003051 ArtMethod* GetThrowMethod() REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003052 return throw_method_;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003053 }
3054
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003055 mirror::Object* GetThisAtThrow() REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003056 return this_at_throw_.Get();
3057 }
3058
3059 uint32_t GetCatchDexPc() const {
3060 return catch_dex_pc_;
3061 }
3062
3063 uint32_t GetThrowDexPc() const {
3064 return throw_dex_pc_;
3065 }
3066
3067 private:
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003068 const Handle<mirror::Throwable>& exception_;
Mathieu Chartiere401d142015-04-22 13:56:20 -07003069 StackHandleScope<1> handle_scope_;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003070 MutableHandle<mirror::Object> this_at_throw_;
Mathieu Chartiere401d142015-04-22 13:56:20 -07003071 ArtMethod* catch_method_;
3072 ArtMethod* throw_method_;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003073 uint32_t catch_dex_pc_;
3074 uint32_t throw_dex_pc_;
3075
3076 DISALLOW_COPY_AND_ASSIGN(CatchLocationFinder);
3077};
3078
3079void Dbg::PostException(mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003080 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08003081 return;
3082 }
Sebastien Hertz261bc042015-04-08 09:36:07 +02003083 Thread* const self = Thread::Current();
3084 StackHandleScope<1> handle_scope(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003085 Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object));
3086 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz261bc042015-04-08 09:36:07 +02003087 CatchLocationFinder clf(self, h_exception, context.get());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003088 clf.WalkStack(/* include_transitions */ false);
Sebastien Hertz6995c602014-09-09 12:10:13 +02003089 JDWP::EventLocation exception_throw_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003090 SetEventLocation(&exception_throw_location, clf.GetThrowMethod(), clf.GetThrowDexPc());
Sebastien Hertz6995c602014-09-09 12:10:13 +02003091 JDWP::EventLocation exception_catch_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003092 SetEventLocation(&exception_catch_location, clf.GetCatchMethod(), clf.GetCatchDexPc());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08003093
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003094 gJdwpState->PostException(&exception_throw_location, h_exception.Get(), &exception_catch_location,
3095 clf.GetThisAtThrow());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003096}
3097
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003098void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003099 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08003100 return;
3101 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02003102 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003103}
3104
Ian Rogers62d6c772013-02-27 08:32:07 -08003105void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -07003106 ArtMethod* m, uint32_t dex_pc,
Sebastien Hertz8379b222014-02-24 17:38:15 +01003107 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003108 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08003109 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003110 }
3111
Elliott Hughes86964332012-02-15 19:37:42 -08003112 if (IsBreakpoint(m, dex_pc)) {
3113 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003114 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003115
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003116 // If the debugger is single-stepping one of our threads, check to
3117 // see if we're that thread and we've reached a step point.
3118 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003119 if (single_step_control != nullptr) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003120 CHECK(!m->IsNative());
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003121 if (single_step_control->GetStepDepth() == JDWP::SD_INTO) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003122 // Step into method calls. We break when the line number
3123 // or method pointer changes. If we're in SS_MIN mode, we
3124 // always stop.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003125 if (single_step_control->GetMethod() != m) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003126 event_flags |= kSingleStep;
3127 VLOG(jdwp) << "SS new method";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003128 } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003129 event_flags |= kSingleStep;
3130 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003131 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003132 event_flags |= kSingleStep;
3133 VLOG(jdwp) << "SS new line";
3134 }
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003135 } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003136 // Step over method calls. We break when the line number is
3137 // different and the frame depth is <= the original frame
3138 // depth. (We can't just compare on the method, because we
3139 // might get unrolled past it by an exception, and it's tricky
3140 // to identify recursion.)
3141
3142 int stack_depth = GetStackDepth(thread);
3143
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003144 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003145 // Popped up one or more frames, always trigger.
3146 event_flags |= kSingleStep;
3147 VLOG(jdwp) << "SS method pop";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003148 } else if (stack_depth == single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003149 // Same depth, see if we moved.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003150 if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08003151 event_flags |= kSingleStep;
3152 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003153 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003154 event_flags |= kSingleStep;
3155 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003156 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003157 }
3158 } else {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003159 CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003160 // Return from the current method. We break when the frame
3161 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003162
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003163 // This differs from the "method exit" break in that it stops
3164 // with the PC at the next instruction in the returned-to
3165 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08003166
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003167 int stack_depth = GetStackDepth(thread);
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003168 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003169 event_flags |= kSingleStep;
3170 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003171 }
3172 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003173 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003174
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003175 // If there's something interesting going on, see if it matches one
3176 // of the debugger filters.
3177 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01003178 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003179 }
3180}
3181
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003182size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
3183 switch (instrumentation_event) {
3184 case instrumentation::Instrumentation::kMethodEntered:
3185 return &method_enter_event_ref_count_;
3186 case instrumentation::Instrumentation::kMethodExited:
3187 return &method_exit_event_ref_count_;
3188 case instrumentation::Instrumentation::kDexPcMoved:
3189 return &dex_pc_change_event_ref_count_;
3190 case instrumentation::Instrumentation::kFieldRead:
3191 return &field_read_event_ref_count_;
3192 case instrumentation::Instrumentation::kFieldWritten:
3193 return &field_write_event_ref_count_;
Alex Light6e1607e2017-08-23 10:06:18 -07003194 case instrumentation::Instrumentation::kExceptionThrown:
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003195 return &exception_catch_event_ref_count_;
3196 default:
3197 return nullptr;
3198 }
3199}
3200
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003201// Process request while all mutator threads are suspended.
3202void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003203 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003204 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003205 case DeoptimizationRequest::kNothing:
3206 LOG(WARNING) << "Ignoring empty deoptimization request.";
3207 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003208 case DeoptimizationRequest::kRegisterForEvent:
3209 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003210 request.InstrumentationEvent());
3211 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
3212 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003213 break;
3214 case DeoptimizationRequest::kUnregisterForEvent:
3215 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003216 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003217 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003218 request.InstrumentationEvent());
3219 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003220 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003221 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003222 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz0462c4c2015-04-01 16:34:17 +02003223 instrumentation->DeoptimizeEverything(kDbgInstrumentationKey);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003224 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003225 break;
3226 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003227 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz0462c4c2015-04-01 16:34:17 +02003228 instrumentation->UndeoptimizeEverything(kDbgInstrumentationKey);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003229 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003230 break;
3231 case DeoptimizationRequest::kSelectiveDeoptimization:
David Sehr709b0702016-10-13 09:12:37 -07003232 VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ...";
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003233 instrumentation->Deoptimize(request.Method());
David Sehr709b0702016-10-13 09:12:37 -07003234 VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003235 break;
3236 case DeoptimizationRequest::kSelectiveUndeoptimization:
David Sehr709b0702016-10-13 09:12:37 -07003237 VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ...";
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003238 instrumentation->Undeoptimize(request.Method());
David Sehr709b0702016-10-13 09:12:37 -07003239 VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003240 break;
3241 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003242 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003243 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003244 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003245}
3246
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003247void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003248 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003249 // Nothing to do.
3250 return;
3251 }
Brian Carlstrom306db812014-09-05 13:01:41 -07003252 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003253 RequestDeoptimizationLocked(req);
3254}
3255
3256void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003257 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003258 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003259 DCHECK_NE(req.InstrumentationEvent(), 0u);
3260 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003261 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003262 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003263 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003264 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003265 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003266 deoptimization_requests_.push_back(req);
3267 }
3268 *counter = *counter + 1;
3269 break;
3270 }
3271 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003272 DCHECK_NE(req.InstrumentationEvent(), 0u);
3273 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003274 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003275 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003276 *counter = *counter - 1;
3277 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003278 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003279 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003280 deoptimization_requests_.push_back(req);
3281 }
3282 break;
3283 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003284 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003285 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003286 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003287 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3288 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003289 deoptimization_requests_.push_back(req);
3290 }
3291 ++full_deoptimization_event_count_;
3292 break;
3293 }
3294 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003295 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003296 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003297 --full_deoptimization_event_count_;
3298 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003299 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3300 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003301 deoptimization_requests_.push_back(req);
3302 }
3303 break;
3304 }
3305 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003306 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003307 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
David Sehr709b0702016-10-13 09:12:37 -07003308 << " for deoptimization of " << req.Method()->PrettyMethod();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003309 deoptimization_requests_.push_back(req);
3310 break;
3311 }
3312 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003313 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003314 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
David Sehr709b0702016-10-13 09:12:37 -07003315 << " for undeoptimization of " << req.Method()->PrettyMethod();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003316 deoptimization_requests_.push_back(req);
3317 break;
3318 }
3319 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003320 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003321 break;
3322 }
3323 }
3324}
3325
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003326void Dbg::ManageDeoptimization() {
3327 Thread* const self = Thread::Current();
3328 {
3329 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003330 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003331 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003332 return;
3333 }
3334 }
3335 CHECK_EQ(self->GetState(), kRunnable);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003336 ScopedThreadSuspension sts(self, kWaitingForDeoptimization);
Mathieu Chartieraa516822015-10-02 15:53:37 -07003337 // Required for ProcessDeoptimizationRequest.
3338 gc::ScopedGCCriticalSection gcs(self,
3339 gc::kGcCauseInstrumentation,
3340 gc::kCollectorTypeInstrumentation);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003341 // We need to suspend mutator threads first.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07003342 ScopedSuspendAll ssa(__FUNCTION__);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003343 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003344 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003345 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003346 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003347 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003348 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003349 ProcessDeoptimizationRequest(request);
3350 }
3351 deoptimization_requests_.clear();
3352 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003353 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003354}
3355
Mathieu Chartiere401d142015-04-22 13:56:20 -07003356static const Breakpoint* FindFirstBreakpointForMethod(ArtMethod* m)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003357 REQUIRES_SHARED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003358 for (Breakpoint& breakpoint : gBreakpoints) {
Alex Light6c8467f2015-11-20 15:03:26 -08003359 if (breakpoint.IsInMethod(m)) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003360 return &breakpoint;
3361 }
3362 }
3363 return nullptr;
3364}
3365
Mathieu Chartiere401d142015-04-22 13:56:20 -07003366bool Dbg::MethodHasAnyBreakpoints(ArtMethod* method) {
Mathieu Chartierd8565452015-03-26 09:41:50 -07003367 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
3368 return FindFirstBreakpointForMethod(method) != nullptr;
3369}
3370
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003371// Sanity checks all existing breakpoints on the same method.
Mathieu Chartiere401d142015-04-22 13:56:20 -07003372static void SanityCheckExistingBreakpoints(ArtMethod* m,
Sebastien Hertzf3928792014-11-17 19:00:37 +01003373 DeoptimizationRequest::Kind deoptimization_kind)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003374 REQUIRES_SHARED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003375 for (const Breakpoint& breakpoint : gBreakpoints) {
Alex Light6c8467f2015-11-20 15:03:26 -08003376 if (breakpoint.IsInMethod(m)) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003377 CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind());
3378 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003379 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003380 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
3381 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003382 // We should have deoptimized everything but not "selectively" deoptimized this method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003383 CHECK(instrumentation->AreAllMethodsDeoptimized());
3384 CHECK(!instrumentation->IsDeoptimized(m));
3385 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003386 // We should have "selectively" deoptimized this method.
3387 // Note: while we have not deoptimized everything for this method, we may have done it for
3388 // another event.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003389 CHECK(instrumentation->IsDeoptimized(m));
3390 } else {
3391 // This method does not require deoptimization.
3392 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3393 CHECK(!instrumentation->IsDeoptimized(m));
3394 }
3395}
3396
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003397// Returns the deoptimization kind required to set a breakpoint in a method.
3398// If a breakpoint has already been set, we also return the first breakpoint
3399// through the given 'existing_brkpt' pointer.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003400static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self,
Mathieu Chartiere401d142015-04-22 13:56:20 -07003401 ArtMethod* m,
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003402 const Breakpoint** existing_brkpt)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003403 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003404 if (!Dbg::RequiresDeoptimization()) {
3405 // We already run in interpreter-only mode so we don't need to deoptimize anything.
3406 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method "
David Sehr709b0702016-10-13 09:12:37 -07003407 << ArtMethod::PrettyMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003408 return DeoptimizationRequest::kNothing;
3409 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003410 const Breakpoint* first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003411 {
3412 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003413 first_breakpoint = FindFirstBreakpointForMethod(m);
3414 *existing_brkpt = first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003415 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003416
3417 if (first_breakpoint == nullptr) {
Nicolas Geoffray6300fd72016-03-18 09:40:17 +00003418 // There is no breakpoint on this method yet: we need to deoptimize. If this method is default,
3419 // we deoptimize everything; otherwise we deoptimize only this method. We
Alex Light6c8467f2015-11-20 15:03:26 -08003420 // deoptimize with defaults because we do not know everywhere they are used. It is possible some
Nicolas Geoffray6300fd72016-03-18 09:40:17 +00003421 // of the copies could be missed.
Alex Light6c8467f2015-11-20 15:03:26 -08003422 // TODO Deoptimizing on default methods might not be necessary in all cases.
Nicolas Geoffray6300fd72016-03-18 09:40:17 +00003423 bool need_full_deoptimization = m->IsDefault();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003424 if (need_full_deoptimization) {
Nicolas Geoffray6300fd72016-03-18 09:40:17 +00003425 VLOG(jdwp) << "Need full deoptimization because of copying of method "
David Sehr709b0702016-10-13 09:12:37 -07003426 << ArtMethod::PrettyMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003427 return DeoptimizationRequest::kFullDeoptimization;
3428 } else {
3429 // We don't need to deoptimize if the method has not been compiled.
Nicolas Geoffraya5891e82015-11-06 14:18:27 +00003430 const bool is_compiled = m->HasAnyCompiledCode();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003431 if (is_compiled) {
David Sehr709b0702016-10-13 09:12:37 -07003432 VLOG(jdwp) << "Need selective deoptimization for compiled method "
3433 << ArtMethod::PrettyMethod(m);
Nicolas Geoffray6300fd72016-03-18 09:40:17 +00003434 return DeoptimizationRequest::kSelectiveDeoptimization;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003435 } else {
3436 // Method is not compiled: we don't need to deoptimize.
David Sehr709b0702016-10-13 09:12:37 -07003437 VLOG(jdwp) << "No need for deoptimization for non-compiled method "
3438 << ArtMethod::PrettyMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003439 return DeoptimizationRequest::kNothing;
3440 }
3441 }
3442 } else {
3443 // There is at least one breakpoint for this method: we don't need to deoptimize.
3444 // Let's check that all breakpoints are configured the same way for deoptimization.
3445 VLOG(jdwp) << "Breakpoint already set: no deoptimization is required";
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003446 DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003447 if (kIsDebugBuild) {
3448 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3449 SanityCheckExistingBreakpoints(m, deoptimization_kind);
3450 }
3451 return DeoptimizationRequest::kNothing;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003452 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003453}
3454
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003455// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3456// request if we need to deoptimize.
3457void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3458 Thread* const self = Thread::Current();
Mathieu Chartiere401d142015-04-22 13:56:20 -07003459 ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003460 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003461
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003462 const Breakpoint* existing_breakpoint = nullptr;
3463 const DeoptimizationRequest::Kind deoptimization_kind =
3464 GetRequiredDeoptimizationKind(self, m, &existing_breakpoint);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003465 req->SetKind(deoptimization_kind);
3466 if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
3467 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003468 } else {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003469 CHECK(deoptimization_kind == DeoptimizationRequest::kNothing ||
3470 deoptimization_kind == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003471 req->SetMethod(nullptr);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003472 }
3473
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003474 {
3475 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003476 // If there is at least one existing breakpoint on the same method, the new breakpoint
3477 // must have the same deoptimization kind than the existing breakpoint(s).
3478 DeoptimizationRequest::Kind breakpoint_deoptimization_kind;
3479 if (existing_breakpoint != nullptr) {
3480 breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind();
3481 } else {
3482 breakpoint_deoptimization_kind = deoptimization_kind;
3483 }
3484 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind));
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003485 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3486 << gBreakpoints[gBreakpoints.size() - 1];
3487 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003488}
3489
3490// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3491// request if we need to undeoptimize.
3492void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003493 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003494 ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003495 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003496 DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003497 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Alex Light6c8467f2015-11-20 15:03:26 -08003498 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].IsInMethod(m)) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003499 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Sebastien Hertzf3928792014-11-17 19:00:37 +01003500 deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind();
3501 DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization,
3502 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003503 gBreakpoints.erase(gBreakpoints.begin() + i);
3504 break;
3505 }
3506 }
3507 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3508 if (existing_breakpoint == nullptr) {
3509 // There is no more breakpoint on this method: we need to undeoptimize.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003510 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003511 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003512 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3513 req->SetMethod(nullptr);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003514 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003515 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003516 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3517 req->SetMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003518 } else {
3519 // This method had no need for deoptimization: do nothing.
3520 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3521 req->SetKind(DeoptimizationRequest::kNothing);
3522 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003523 }
3524 } else {
3525 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003526 req->SetKind(DeoptimizationRequest::kNothing);
3527 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003528 if (kIsDebugBuild) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003529 SanityCheckExistingBreakpoints(m, deoptimization_kind);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003530 }
Elliott Hughes86964332012-02-15 19:37:42 -08003531 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003532}
3533
Mathieu Chartiere401d142015-04-22 13:56:20 -07003534bool Dbg::IsForcedInterpreterNeededForCallingImpl(Thread* thread, ArtMethod* m) {
Daniel Mihalyieb076692014-08-22 17:33:31 +02003535 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3536 if (ssc == nullptr) {
3537 // If we are not single-stepping, then we don't have to force interpreter.
3538 return false;
3539 }
3540 if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) {
3541 // If we are in interpreter only mode, then we don't have to force interpreter.
3542 return false;
3543 }
3544
3545 if (!m->IsNative() && !m->IsProxyMethod()) {
3546 // If we want to step into a method, then we have to force interpreter on that call.
3547 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3548 return true;
3549 }
3550 }
3551 return false;
3552}
3553
Mathieu Chartiere401d142015-04-22 13:56:20 -07003554bool Dbg::IsForcedInterpreterNeededForResolutionImpl(Thread* thread, ArtMethod* m) {
Daniel Mihalyieb076692014-08-22 17:33:31 +02003555 instrumentation::Instrumentation* const instrumentation =
3556 Runtime::Current()->GetInstrumentation();
3557 // If we are in interpreter only mode, then we don't have to force interpreter.
3558 if (instrumentation->InterpretOnly()) {
3559 return false;
3560 }
3561 // We can only interpret pure Java method.
3562 if (m->IsNative() || m->IsProxyMethod()) {
3563 return false;
3564 }
3565 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3566 if (ssc != nullptr) {
3567 // If we want to step into a method, then we have to force interpreter on that call.
3568 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3569 return true;
3570 }
3571 // If we are stepping out from a static initializer, by issuing a step
3572 // in or step over, that was implicitly invoked by calling a static method,
3573 // then we need to step into that method. Having a lower stack depth than
3574 // the one the single step control has indicates that the step originates
3575 // from the static initializer.
3576 if (ssc->GetStepDepth() != JDWP::SD_OUT &&
3577 ssc->GetStackDepth() > GetStackDepth(thread)) {
3578 return true;
3579 }
3580 }
3581 // There are cases where we have to force interpreter on deoptimized methods,
3582 // because in some cases the call will not be performed by invoking an entry
3583 // point that has been replaced by the deoptimization, but instead by directly
3584 // invoking the compiled code of the method, for example.
3585 return instrumentation->IsDeoptimized(m);
3586}
3587
Mathieu Chartiere401d142015-04-22 13:56:20 -07003588bool Dbg::IsForcedInstrumentationNeededForResolutionImpl(Thread* thread, ArtMethod* m) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003589 // The upcall can be null and in that case we don't need to do anything.
Daniel Mihalyieb076692014-08-22 17:33:31 +02003590 if (m == nullptr) {
3591 return false;
3592 }
3593 instrumentation::Instrumentation* const instrumentation =
3594 Runtime::Current()->GetInstrumentation();
3595 // If we are in interpreter only mode, then we don't have to force interpreter.
3596 if (instrumentation->InterpretOnly()) {
3597 return false;
3598 }
3599 // We can only interpret pure Java method.
3600 if (m->IsNative() || m->IsProxyMethod()) {
3601 return false;
3602 }
3603 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3604 if (ssc != nullptr) {
3605 // If we are stepping out from a static initializer, by issuing a step
3606 // out, that was implicitly invoked by calling a static method, then we
3607 // need to step into the caller of that method. Having a lower stack
3608 // depth than the one the single step control has indicates that the
3609 // step originates from the static initializer.
3610 if (ssc->GetStepDepth() == JDWP::SD_OUT &&
3611 ssc->GetStackDepth() > GetStackDepth(thread)) {
3612 return true;
3613 }
3614 }
3615 // If we are returning from a static intializer, that was implicitly
3616 // invoked by calling a static method and the caller is deoptimized,
3617 // then we have to deoptimize the stack without forcing interpreter
3618 // on the static method that was called originally. This problem can
3619 // be solved easily by forcing instrumentation on the called method,
3620 // because the instrumentation exit hook will recognise the need of
3621 // stack deoptimization by calling IsForcedInterpreterNeededForUpcall.
3622 return instrumentation->IsDeoptimized(m);
3623}
3624
Mathieu Chartiere401d142015-04-22 13:56:20 -07003625bool Dbg::IsForcedInterpreterNeededForUpcallImpl(Thread* thread, ArtMethod* m) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003626 // The upcall can be null and in that case we don't need to do anything.
Daniel Mihalyieb076692014-08-22 17:33:31 +02003627 if (m == nullptr) {
3628 return false;
3629 }
3630 instrumentation::Instrumentation* const instrumentation =
3631 Runtime::Current()->GetInstrumentation();
3632 // If we are in interpreter only mode, then we don't have to force interpreter.
3633 if (instrumentation->InterpretOnly()) {
3634 return false;
3635 }
3636 // We can only interpret pure Java method.
3637 if (m->IsNative() || m->IsProxyMethod()) {
3638 return false;
3639 }
3640 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3641 if (ssc != nullptr) {
3642 // The debugger is not interested in what is happening under the level
3643 // of the step, thus we only force interpreter when we are not below of
3644 // the step.
3645 if (ssc->GetStackDepth() >= GetStackDepth(thread)) {
3646 return true;
3647 }
3648 }
Mingyao Yang99170c62015-07-06 11:10:37 -07003649 if (thread->HasDebuggerShadowFrames()) {
3650 // We need to deoptimize the stack for the exception handling flow so that
3651 // we don't miss any deoptimization that should be done when there are
3652 // debugger shadow frames.
3653 return true;
3654 }
Daniel Mihalyieb076692014-08-22 17:33:31 +02003655 // We have to require stack deoptimization if the upcall is deoptimized.
3656 return instrumentation->IsDeoptimized(m);
3657}
3658
Mingyao Yang99170c62015-07-06 11:10:37 -07003659class NeedsDeoptimizationVisitor : public StackVisitor {
Sebastien Hertz520633b2015-09-08 17:03:36 +02003660 public:
3661 explicit NeedsDeoptimizationVisitor(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003662 REQUIRES_SHARED(Locks::mutator_lock_)
Sebastien Hertz520633b2015-09-08 17:03:36 +02003663 : StackVisitor(self, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
3664 needs_deoptimization_(false) {}
3665
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003666 bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz520633b2015-09-08 17:03:36 +02003667 // The visitor is meant to be used when handling exception from compiled code only.
David Sehr709b0702016-10-13 09:12:37 -07003668 CHECK(!IsShadowFrame()) << "We only expect to visit compiled frame: "
3669 << ArtMethod::PrettyMethod(GetMethod());
Sebastien Hertz520633b2015-09-08 17:03:36 +02003670 ArtMethod* method = GetMethod();
3671 if (method == nullptr) {
3672 // We reach an upcall and don't need to deoptimize this part of the stack (ManagedFragment)
3673 // so we can stop the visit.
3674 DCHECK(!needs_deoptimization_);
3675 return false;
3676 }
3677 if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) {
3678 // We found a compiled frame in the stack but instrumentation is set to interpret
3679 // everything: we need to deoptimize.
3680 needs_deoptimization_ = true;
3681 return false;
3682 }
3683 if (Runtime::Current()->GetInstrumentation()->IsDeoptimized(method)) {
3684 // We found a deoptimized method in the stack.
3685 needs_deoptimization_ = true;
3686 return false;
3687 }
Mingyao Yang99170c62015-07-06 11:10:37 -07003688 ShadowFrame* frame = GetThread()->FindDebuggerShadowFrame(GetFrameId());
3689 if (frame != nullptr) {
3690 // The debugger allocated a ShadowFrame to update a variable in the stack: we need to
3691 // deoptimize the stack to execute (and deallocate) this frame.
3692 needs_deoptimization_ = true;
3693 return false;
3694 }
Sebastien Hertz520633b2015-09-08 17:03:36 +02003695 return true;
3696 }
3697
3698 bool NeedsDeoptimization() const {
3699 return needs_deoptimization_;
3700 }
3701
3702 private:
3703 // Do we need to deoptimize the stack?
3704 bool needs_deoptimization_;
3705
3706 DISALLOW_COPY_AND_ASSIGN(NeedsDeoptimizationVisitor);
3707};
3708
3709// Do we need to deoptimize the stack to handle an exception?
3710bool Dbg::IsForcedInterpreterNeededForExceptionImpl(Thread* thread) {
3711 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3712 if (ssc != nullptr) {
3713 // We deopt to step into the catch handler.
3714 return true;
3715 }
3716 // Deoptimization is required if at least one method in the stack needs it. However we
3717 // skip frames that will be unwound (thus not executed).
3718 NeedsDeoptimizationVisitor visitor(thread);
3719 visitor.WalkStack(true); // includes upcall.
3720 return visitor.NeedsDeoptimization();
3721}
3722
Jeff Hao449db332013-04-12 18:30:52 -07003723// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3724// cause suspension if the thread is the current thread.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003725class ScopedDebuggerThreadSuspension {
Jeff Hao449db332013-04-12 18:30:52 -07003726 public:
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003727 ScopedDebuggerThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Mathieu Chartier90443472015-07-16 20:32:27 -07003728 REQUIRES(!Locks::thread_list_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003729 REQUIRES_SHARED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003730 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003731 error_(JDWP::ERR_NONE),
3732 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003733 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003734 ScopedObjectAccessUnchecked soa(self);
Sebastien Hertz69206392015-04-07 15:54:25 +02003735 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003736 if (error_ == JDWP::ERR_NONE) {
3737 if (thread_ == soa.Self()) {
3738 self_suspend_ = true;
3739 } else {
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003740 Thread* suspended_thread;
3741 {
3742 ScopedThreadSuspension sts(self, kWaitingForDebuggerSuspension);
3743 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
3744 bool timed_out;
3745 ThreadList* const thread_list = Runtime::Current()->GetThreadList();
Sebastien Hertzcdd798d2017-04-18 18:28:51 +02003746 suspended_thread = thread_list->SuspendThreadByPeer(thread_peer,
3747 /* request_suspension */ true,
Alex Light46f93402017-06-29 11:59:50 -07003748 SuspendReason::kForDebugger,
Sebastien Hertzcdd798d2017-04-18 18:28:51 +02003749 &timed_out);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003750 }
Ian Rogersf3d874c2014-07-17 18:52:42 -07003751 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003752 // Thread terminated from under us while suspending.
3753 error_ = JDWP::ERR_INVALID_THREAD;
3754 } else {
3755 CHECK_EQ(suspended_thread, thread_);
3756 other_suspend_ = true;
3757 }
3758 }
3759 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003760 }
Elliott Hughes86964332012-02-15 19:37:42 -08003761
Jeff Hao449db332013-04-12 18:30:52 -07003762 Thread* GetThread() const {
3763 return thread_;
3764 }
3765
3766 JDWP::JdwpError GetError() const {
3767 return error_;
3768 }
3769
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003770 ~ScopedDebuggerThreadSuspension() {
Jeff Hao449db332013-04-12 18:30:52 -07003771 if (other_suspend_) {
Alex Light88fd7202017-06-30 08:31:59 -07003772 bool resumed = Runtime::Current()->GetThreadList()->Resume(thread_,
3773 SuspendReason::kForDebugger);
3774 DCHECK(resumed);
Jeff Hao449db332013-04-12 18:30:52 -07003775 }
3776 }
3777
3778 private:
3779 Thread* thread_;
3780 JDWP::JdwpError error_;
3781 bool self_suspend_;
3782 bool other_suspend_;
3783};
3784
3785JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3786 JDWP::JdwpStepDepth step_depth) {
3787 Thread* self = Thread::Current();
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003788 ScopedDebuggerThreadSuspension sts(self, thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003789 if (sts.GetError() != JDWP::ERR_NONE) {
3790 return sts.GetError();
3791 }
3792
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003793 // Work out what ArtMethod* we're in, the current line number, and how deep the stack currently
Elliott Hughes2435a572012-02-17 16:07:41 -08003794 // is for step-out.
Ian Rogers0399dde2012-06-06 17:09:28 -07003795 struct SingleStepStackVisitor : public StackVisitor {
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003796 explicit SingleStepStackVisitor(Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01003797 : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
3798 stack_depth(0),
3799 method(nullptr),
3800 line_number(-1) {}
Ian Rogersca190662012-06-26 15:45:57 -07003801
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003802 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3803 // annotalysis.
3804 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003805 ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003806 if (!m->IsRuntimeMethod()) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003807 ++stack_depth;
3808 if (method == nullptr) {
Alex Light73376312017-04-06 10:10:51 -07003809 const DexFile* dex_file = m->GetDexFile();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003810 method = m;
Alex Light73376312017-04-06 10:10:51 -07003811 if (dex_file != nullptr) {
David Sehr9323e6e2016-09-13 08:58:35 -07003812 line_number = annotations::GetLineNumFromPC(dex_file, m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003813 }
Elliott Hughes86964332012-02-15 19:37:42 -08003814 }
3815 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003816 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003817 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003818
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003819 int stack_depth;
Mathieu Chartiere401d142015-04-22 13:56:20 -07003820 ArtMethod* method;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003821 int32_t line_number;
Elliott Hughes86964332012-02-15 19:37:42 -08003822 };
Jeff Hao449db332013-04-12 18:30:52 -07003823
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003824 Thread* const thread = sts.GetThread();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003825 SingleStepStackVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07003826 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003827
Elliott Hughes2435a572012-02-17 16:07:41 -08003828 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
Elliott Hughes2435a572012-02-17 16:07:41 -08003829 struct DebugCallbackContext {
Roland Levillain3887c462015-08-12 18:15:42 +01003830 DebugCallbackContext(SingleStepControl* single_step_control_cb,
3831 int32_t line_number_cb, const DexFile::CodeItem* code_item)
3832 : single_step_control_(single_step_control_cb), line_number_(line_number_cb),
3833 code_item_(code_item), last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003834 }
3835
David Srbeckyb06e28e2015-12-10 13:15:00 +00003836 static bool Callback(void* raw_context, const DexFile::PositionInfo& entry) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003837 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
David Srbeckyb06e28e2015-12-10 13:15:00 +00003838 if (static_cast<int32_t>(entry.line_) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003839 if (!context->last_pc_valid) {
3840 // Everything from this address until the next line change is ours.
David Srbeckyb06e28e2015-12-10 13:15:00 +00003841 context->last_pc = entry.address_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003842 context->last_pc_valid = true;
3843 }
3844 // Otherwise, if we're already in a valid range for this line,
3845 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003846 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003847 // Add everything from the last entry up until here to the set
David Srbeckyb06e28e2015-12-10 13:15:00 +00003848 for (uint32_t dex_pc = context->last_pc; dex_pc < entry.address_; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003849 context->single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003850 }
3851 context->last_pc_valid = false;
3852 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003853 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003854 }
3855
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003856 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003857 // If the line number was the last in the position table...
3858 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003859 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003860 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003861 single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003862 }
3863 }
3864 }
3865
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003866 SingleStepControl* const single_step_control_;
3867 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003868 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003869 bool last_pc_valid;
3870 uint32_t last_pc;
3871 };
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003872
3873 // Allocate single step.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003874 SingleStepControl* single_step_control =
3875 new (std::nothrow) SingleStepControl(step_size, step_depth,
3876 visitor.stack_depth, visitor.method);
3877 if (single_step_control == nullptr) {
3878 LOG(ERROR) << "Failed to allocate SingleStepControl";
3879 return JDWP::ERR_OUT_OF_MEMORY;
3880 }
3881
Mathieu Chartiere401d142015-04-22 13:56:20 -07003882 ArtMethod* m = single_step_control->GetMethod();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003883 const int32_t line_number = visitor.line_number;
Sebastien Hertz52f5f932015-05-28 11:00:57 +02003884 // Note: if the thread is not running Java code (pure native thread), there is no "current"
3885 // method on the stack (and no line number either).
3886 if (m != nullptr && !m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003887 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003888 DebugCallbackContext context(single_step_control, line_number, code_item);
David Srbeckyb06e28e2015-12-10 13:15:00 +00003889 m->GetDexFile()->DecodeDebugPositionInfo(code_item, DebugCallbackContext::Callback, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003890 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003891
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003892 // Activate single-step in the thread.
3893 thread->ActivateSingleStepControl(single_step_control);
Elliott Hughes86964332012-02-15 19:37:42 -08003894
Elliott Hughes2435a572012-02-17 16:07:41 -08003895 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003896 VLOG(jdwp) << "Single-step thread: " << *thread;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003897 VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize();
3898 VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth();
David Sehr709b0702016-10-13 09:12:37 -07003899 VLOG(jdwp) << "Single-step current method: "
3900 << ArtMethod::PrettyMethod(single_step_control->GetMethod());
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003901 VLOG(jdwp) << "Single-step current line: " << line_number;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003902 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth();
Elliott Hughes2435a572012-02-17 16:07:41 -08003903 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003904 for (uint32_t dex_pc : single_step_control->GetDexPcs()) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003905 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003906 }
3907 }
3908
3909 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003910}
3911
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003912void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3913 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07003914 JDWP::JdwpError error;
3915 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003916 if (error == JDWP::ERR_NONE) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003917 thread->DeactivateSingleStepControl();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003918 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003919}
3920
Elliott Hughes45651fd2012-02-21 15:48:20 -08003921static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3922 switch (tag) {
3923 default:
3924 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
Ian Rogersfc787ec2014-10-09 21:56:44 -07003925 UNREACHABLE();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003926
3927 // Primitives.
3928 case JDWP::JT_BYTE: return 'B';
3929 case JDWP::JT_CHAR: return 'C';
3930 case JDWP::JT_FLOAT: return 'F';
3931 case JDWP::JT_DOUBLE: return 'D';
3932 case JDWP::JT_INT: return 'I';
3933 case JDWP::JT_LONG: return 'J';
3934 case JDWP::JT_SHORT: return 'S';
3935 case JDWP::JT_VOID: return 'V';
3936 case JDWP::JT_BOOLEAN: return 'Z';
3937
3938 // Reference types.
3939 case JDWP::JT_ARRAY:
3940 case JDWP::JT_OBJECT:
3941 case JDWP::JT_STRING:
3942 case JDWP::JT_THREAD:
3943 case JDWP::JT_THREAD_GROUP:
3944 case JDWP::JT_CLASS_LOADER:
3945 case JDWP::JT_CLASS_OBJECT:
3946 return 'L';
3947 }
3948}
3949
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003950JDWP::JdwpError Dbg::PrepareInvokeMethod(uint32_t request_id, JDWP::ObjectId thread_id,
3951 JDWP::ObjectId object_id, JDWP::RefTypeId class_id,
3952 JDWP::MethodId method_id, uint32_t arg_count,
3953 uint64_t arg_values[], JDWP::JdwpTag* arg_types,
3954 uint32_t options) {
3955 Thread* const self = Thread::Current();
3956 CHECK_EQ(self, GetDebugThread()) << "This must be called by the JDWP thread";
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003957 const bool resume_all_threads = ((options & JDWP::INVOKE_SINGLE_THREADED) == 0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003958
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003959 ThreadList* thread_list = Runtime::Current()->GetThreadList();
Ian Rogersc0542af2014-09-03 16:16:56 -07003960 Thread* targetThread = nullptr;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003961 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003962 ScopedObjectAccessUnchecked soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07003963 JDWP::JdwpError error;
3964 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003965 if (error != JDWP::ERR_NONE) {
3966 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3967 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003968 }
Sebastien Hertz1558b572015-02-25 15:05:59 +01003969 if (targetThread->GetInvokeReq() != nullptr) {
3970 // Thread is already invoking a method on behalf of the debugger.
3971 LOG(ERROR) << "InvokeMethod request for thread already invoking a method: " << *targetThread;
3972 return JDWP::ERR_ALREADY_INVOKING;
3973 }
3974 if (!targetThread->IsReadyForDebugInvoke()) {
3975 // Thread is not suspended by an event so it cannot invoke a method.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003976 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3977 return JDWP::ERR_INVALID_THREAD;
3978 }
3979
3980 /*
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003981 * According to the JDWP specs, we are expected to resume all threads (or only the
3982 * target thread) once. So if a thread has been suspended more than once (either by
3983 * the debugger for an event or by the runtime for GC), it will remain suspended before
3984 * the invoke is executed. This means the debugger is responsible to properly resume all
3985 * the threads it has suspended so the target thread can execute the method.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003986 *
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003987 * However, for compatibility reason with older versions of debuggers (like Eclipse), we
3988 * fully resume all threads (by canceling *all* debugger suspensions) when the debugger
3989 * wants us to resume all threads. This is to avoid ending up in deadlock situation.
3990 *
3991 * On the other hand, if we are asked to only resume the target thread, then we follow the
3992 * JDWP specs by resuming that thread only once. This means the thread will remain suspended
3993 * if it has been suspended more than once before the invoke (and again, this is the
3994 * responsibility of the debugger to properly resume that thread before invoking a method).
Elliott Hughesd07986f2011-12-06 18:27:45 -08003995 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003996 int suspend_count;
3997 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003998 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003999 suspend_count = targetThread->GetSuspendCount();
4000 }
Sebastien Hertzd4032e42015-06-12 15:47:34 +02004001 if (suspend_count > 1 && resume_all_threads) {
4002 // The target thread will remain suspended even after we resume it. Let's emit a warning
4003 // to indicate the invoke won't be executed until the thread is resumed.
4004 LOG(WARNING) << *targetThread << " suspended more than once (suspend count == "
4005 << suspend_count << "). This thread will invoke the method only once "
4006 << "it is fully resumed.";
Elliott Hughesd07986f2011-12-06 18:27:45 -08004007 }
4008
Ian Rogersc0542af2014-09-03 16:16:56 -07004009 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
4010 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08004011 return JDWP::ERR_INVALID_OBJECT;
4012 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08004013
Sebastien Hertz1558b572015-02-25 15:05:59 +01004014 gRegistry->Get<mirror::Object*>(thread_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07004015 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08004016 return JDWP::ERR_INVALID_OBJECT;
4017 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08004018
Ian Rogersc0542af2014-09-03 16:16:56 -07004019 mirror::Class* c = DecodeClass(class_id, &error);
4020 if (c == nullptr) {
4021 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08004022 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08004023
Mathieu Chartiere401d142015-04-22 13:56:20 -07004024 ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07004025 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08004026 return JDWP::ERR_INVALID_METHODID;
4027 }
4028 if (m->IsStatic()) {
4029 if (m->GetDeclaringClass() != c) {
4030 return JDWP::ERR_INVALID_METHODID;
4031 }
4032 } else {
4033 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
4034 return JDWP::ERR_INVALID_METHODID;
4035 }
4036 }
4037
4038 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004039 uint32_t shorty_len = 0;
4040 const char* shorty = m->GetShorty(&shorty_len);
4041 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08004042 return JDWP::ERR_ILLEGAL_ARGUMENT;
4043 }
Elliott Hughes09201632013-04-15 15:50:07 -07004044
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004045 {
Mathieu Chartiere401d142015-04-22 13:56:20 -07004046 StackHandleScope<2> hs(soa.Self());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004047 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
4048 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
4049 const DexFile::TypeList* types = m->GetParameterTypeList();
4050 for (size_t i = 0; i < arg_count; ++i) {
4051 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07004052 return JDWP::ERR_ILLEGAL_ARGUMENT;
4053 }
4054
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004055 if (shorty[i + 1] == 'L') {
4056 // Did we really get an argument of an appropriate reference type?
Vladimir Markob45528c2017-07-27 14:14:28 +01004057 ObjPtr<mirror::Class> parameter_type =
4058 m->ResolveClassFromTypeIndex(types->GetTypeItem(i).type_idx_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004059 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
4060 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004061 return JDWP::ERR_INVALID_OBJECT;
4062 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004063 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004064 return JDWP::ERR_ILLEGAL_ARGUMENT;
4065 }
4066
4067 // Turn the on-the-wire ObjectId into a jobject.
4068 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
4069 v.l = gRegistry->GetJObject(arg_values[i]);
4070 }
Elliott Hughes09201632013-04-15 15:50:07 -07004071 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08004072 }
4073
Sebastien Hertz1558b572015-02-25 15:05:59 +01004074 // Allocates a DebugInvokeReq.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004075 DebugInvokeReq* req = new (std::nothrow) DebugInvokeReq(request_id, thread_id, receiver, c, m,
4076 options, arg_values, arg_count);
4077 if (req == nullptr) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01004078 LOG(ERROR) << "Failed to allocate DebugInvokeReq";
4079 return JDWP::ERR_OUT_OF_MEMORY;
4080 }
4081
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004082 // Attaches the DebugInvokeReq to the target thread so it executes the method when
4083 // it is resumed. Once the invocation completes, the target thread will delete it before
4084 // suspending itself (see ThreadList::SuspendSelfForDebugger).
4085 targetThread->SetDebugInvokeReq(req);
Elliott Hughesd07986f2011-12-06 18:27:45 -08004086 }
4087
4088 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004089 // away we're sitting high and dry -- but we must release this before the UndoDebuggerSuspensions
4090 // call.
Sebastien Hertzd4032e42015-06-12 15:47:34 +02004091 if (resume_all_threads) {
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004092 VLOG(jdwp) << " Resuming all threads";
4093 thread_list->UndoDebuggerSuspensions();
4094 } else {
4095 VLOG(jdwp) << " Resuming event thread only";
Alex Light88fd7202017-06-30 08:31:59 -07004096 bool resumed = thread_list->Resume(targetThread, SuspendReason::kForDebugger);
4097 DCHECK(resumed);
Elliott Hughesd07986f2011-12-06 18:27:45 -08004098 }
4099
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004100 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004101}
4102
4103void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004104 Thread* const self = Thread::Current();
4105 CHECK_NE(self, GetDebugThread()) << "This must be called by the event thread";
4106
4107 ScopedObjectAccess soa(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08004108
Elliott Hughes81ff3182012-03-23 20:35:56 -07004109 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08004110 // to preserve that across the method invocation.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004111 StackHandleScope<1> hs(soa.Self());
4112 Handle<mirror::Throwable> old_exception = hs.NewHandle(soa.Self()->GetException());
Sebastien Hertz1558b572015-02-25 15:05:59 +01004113 soa.Self()->ClearException();
Elliott Hughesd07986f2011-12-06 18:27:45 -08004114
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004115 // Execute the method then sends reply to the debugger.
4116 ExecuteMethodWithoutPendingException(soa, pReq);
4117
4118 // If an exception was pending before the invoke, restore it now.
Andreas Gampefa4333d2017-02-14 11:10:34 -08004119 if (old_exception != nullptr) {
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004120 soa.Self()->SetException(old_exception.Get());
4121 }
4122}
4123
4124// Helper function: write a variable-width value into the output input buffer.
4125static void WriteValue(JDWP::ExpandBuf* pReply, int width, uint64_t value) {
4126 switch (width) {
4127 case 1:
4128 expandBufAdd1(pReply, value);
4129 break;
4130 case 2:
4131 expandBufAdd2BE(pReply, value);
4132 break;
4133 case 4:
4134 expandBufAdd4BE(pReply, value);
4135 break;
4136 case 8:
4137 expandBufAdd8BE(pReply, value);
4138 break;
4139 default:
4140 LOG(FATAL) << width;
4141 UNREACHABLE();
4142 }
4143}
4144
4145void Dbg::ExecuteMethodWithoutPendingException(ScopedObjectAccess& soa, DebugInvokeReq* pReq) {
4146 soa.Self()->AssertNoPendingException();
4147
Elliott Hughesd07986f2011-12-06 18:27:45 -08004148 // Translate the method through the vtable, unless the debugger wants to suppress it.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004149 ArtMethod* m = pReq->method;
Andreas Gampe542451c2016-07-26 09:02:02 -07004150 PointerSize image_pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Sebastien Hertz1558b572015-02-25 15:05:59 +01004151 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07004152 ArtMethod* actual_method =
4153 pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m, image_pointer_size);
4154 if (actual_method != m) {
David Sehr709b0702016-10-13 09:12:37 -07004155 VLOG(jdwp) << "ExecuteMethod translated " << ArtMethod::PrettyMethod(m)
4156 << " to " << ArtMethod::PrettyMethod(actual_method);
Mathieu Chartiere401d142015-04-22 13:56:20 -07004157 m = actual_method;
Elliott Hughes45651fd2012-02-21 15:48:20 -08004158 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08004159 }
David Sehr709b0702016-10-13 09:12:37 -07004160 VLOG(jdwp) << "ExecuteMethod " << ArtMethod::PrettyMethod(m)
Sebastien Hertz1558b572015-02-25 15:05:59 +01004161 << " receiver=" << pReq->receiver.Read()
Sebastien Hertzd38667a2013-11-25 15:43:54 +01004162 << " arg_count=" << pReq->arg_count;
Mathieu Chartiere401d142015-04-22 13:56:20 -07004163 CHECK(m != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08004164
Roland Levillain33d69032015-06-18 18:20:59 +01004165 static_assert(sizeof(jvalue) == sizeof(uint64_t), "jvalue and uint64_t have different sizes.");
Elliott Hughesd07986f2011-12-06 18:27:45 -08004166
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004167 // Invoke the method.
Jeff Hao39b6c242015-05-19 20:30:23 -07004168 ScopedLocalRef<jobject> ref(soa.Env(), soa.AddLocalReference<jobject>(pReq->receiver.Read()));
Andreas Gampe13b27842016-11-07 16:48:23 -08004169 JValue result = InvokeWithJValues(soa, ref.get(), jni::EncodeArtMethod(m),
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004170 reinterpret_cast<jvalue*>(pReq->arg_values.get()));
Elliott Hughesd07986f2011-12-06 18:27:45 -08004171
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004172 // Prepare JDWP ids for the reply.
4173 JDWP::JdwpTag result_tag = BasicTagFromDescriptor(m->GetShorty());
4174 const bool is_object_result = (result_tag == JDWP::JT_OBJECT);
Jeff Hao064d24e2016-08-25 03:52:40 +00004175 StackHandleScope<3> hs(soa.Self());
Sebastien Hertz1558b572015-02-25 15:05:59 +01004176 Handle<mirror::Object> object_result = hs.NewHandle(is_object_result ? result.GetL() : nullptr);
4177 Handle<mirror::Throwable> exception = hs.NewHandle(soa.Self()->GetException());
4178 soa.Self()->ClearException();
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004179
4180 if (!IsDebuggerActive()) {
4181 // The debugger detached: we must not re-suspend threads. We also don't need to fill the reply
4182 // because it won't be sent either.
4183 return;
4184 }
4185
4186 JDWP::ObjectId exceptionObjectId = gRegistry->Add(exception);
4187 uint64_t result_value = 0;
4188 if (exceptionObjectId != 0) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01004189 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get()
4190 << " " << exception->Dump();
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004191 result_value = 0;
Sebastien Hertz1558b572015-02-25 15:05:59 +01004192 } else if (is_object_result) {
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004193 /* if no exception was thrown, examine object result more closely */
Sebastien Hertz1558b572015-02-25 15:05:59 +01004194 JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get());
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004195 if (new_tag != result_tag) {
4196 VLOG(jdwp) << " JDWP promoted result from " << result_tag << " to " << new_tag;
4197 result_tag = new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08004198 }
4199
Sebastien Hertz1558b572015-02-25 15:05:59 +01004200 // Register the object in the registry and reference its ObjectId. This ensures
4201 // GC safety and prevents from accessing stale reference if the object is moved.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004202 result_value = gRegistry->Add(object_result.Get());
Sebastien Hertz1558b572015-02-25 15:05:59 +01004203 } else {
4204 // Primitive result.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004205 DCHECK(IsPrimitiveTag(result_tag));
4206 result_value = result.GetJ();
4207 }
4208 const bool is_constructor = m->IsConstructor() && !m->IsStatic();
4209 if (is_constructor) {
4210 // If we invoked a constructor (which actually returns void), return the receiver,
4211 // unless we threw, in which case we return null.
Sebastien Hertza3e13772015-11-05 12:09:44 +01004212 DCHECK_EQ(JDWP::JT_VOID, result_tag);
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004213 if (exceptionObjectId == 0) {
Jeff Hao064d24e2016-08-25 03:52:40 +00004214 if (m->GetDeclaringClass()->IsStringClass()) {
4215 // For string constructors, the new string is remapped to the receiver (stored in ref).
4216 Handle<mirror::Object> decoded_ref = hs.NewHandle(soa.Self()->DecodeJObject(ref.get()));
4217 result_value = gRegistry->Add(decoded_ref);
4218 result_tag = TagFromObject(soa, decoded_ref.Get());
4219 } else {
4220 // TODO we could keep the receiver ObjectId in the DebugInvokeReq to avoid looking into the
4221 // object registry.
4222 result_value = GetObjectRegistry()->Add(pReq->receiver.Read());
4223 result_tag = TagFromObject(soa, pReq->receiver.Read());
4224 }
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004225 } else {
4226 result_value = 0;
Sebastien Hertza3e13772015-11-05 12:09:44 +01004227 result_tag = JDWP::JT_OBJECT;
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004228 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08004229 }
4230
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004231 // Suspend other threads if the invoke is not single-threaded.
4232 if ((pReq->options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004233 ScopedThreadSuspension sts(soa.Self(), kWaitingForDebuggerSuspension);
Hiroshi Yamauchi8f95cf32016-04-19 11:14:06 -07004234 // Avoid a deadlock between GC and debugger where GC gets suspended during GC. b/25800335.
4235 gc::ScopedGCCriticalSection gcs(soa.Self(), gc::kGcCauseDebugger, gc::kCollectorTypeDebugger);
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004236 VLOG(jdwp) << " Suspending all threads";
4237 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004238 }
4239
4240 VLOG(jdwp) << " --> returned " << result_tag
4241 << StringPrintf(" %#" PRIx64 " (except=%#" PRIx64 ")", result_value,
4242 exceptionObjectId);
4243
4244 // Show detailed debug output.
4245 if (result_tag == JDWP::JT_STRING && exceptionObjectId == 0) {
4246 if (result_value != 0) {
4247 if (VLOG_IS_ON(jdwp)) {
4248 std::string result_string;
4249 JDWP::JdwpError error = Dbg::StringToUtf8(result_value, &result_string);
4250 CHECK_EQ(error, JDWP::ERR_NONE);
4251 VLOG(jdwp) << " string '" << result_string << "'";
4252 }
4253 } else {
4254 VLOG(jdwp) << " string (null)";
4255 }
4256 }
4257
4258 // Attach the reply to DebugInvokeReq so it can be sent to the debugger when the event thread
4259 // is ready to suspend.
4260 BuildInvokeReply(pReq->reply, pReq->request_id, result_tag, result_value, exceptionObjectId);
4261}
4262
4263void Dbg::BuildInvokeReply(JDWP::ExpandBuf* pReply, uint32_t request_id, JDWP::JdwpTag result_tag,
4264 uint64_t result_value, JDWP::ObjectId exception) {
4265 // Make room for the JDWP header since we do not know the size of the reply yet.
4266 JDWP::expandBufAddSpace(pReply, kJDWPHeaderLen);
4267
4268 size_t width = GetTagWidth(result_tag);
4269 JDWP::expandBufAdd1(pReply, result_tag);
4270 if (width != 0) {
4271 WriteValue(pReply, width, result_value);
4272 }
4273 JDWP::expandBufAdd1(pReply, JDWP::JT_OBJECT);
4274 JDWP::expandBufAddObjectId(pReply, exception);
4275
4276 // Now we know the size, we can complete the JDWP header.
4277 uint8_t* buf = expandBufGetBuffer(pReply);
4278 JDWP::Set4BE(buf + kJDWPHeaderSizeOffset, expandBufGetLength(pReply));
4279 JDWP::Set4BE(buf + kJDWPHeaderIdOffset, request_id);
4280 JDWP::Set1(buf + kJDWPHeaderFlagsOffset, kJDWPFlagReply); // flags
4281 JDWP::Set2BE(buf + kJDWPHeaderErrorCodeOffset, JDWP::ERR_NONE);
4282}
4283
4284void Dbg::FinishInvokeMethod(DebugInvokeReq* pReq) {
4285 CHECK_NE(Thread::Current(), GetDebugThread()) << "This must be called by the event thread";
4286
4287 JDWP::ExpandBuf* const pReply = pReq->reply;
4288 CHECK(pReply != nullptr) << "No reply attached to DebugInvokeReq";
4289
4290 // We need to prevent other threads (including JDWP thread) from interacting with the debugger
4291 // while we send the reply but are not yet suspended. The JDWP token will be released just before
4292 // we suspend ourself again (see ThreadList::SuspendSelfForDebugger).
4293 gJdwpState->AcquireJdwpTokenForEvent(pReq->thread_id);
4294
4295 // Send the reply unless the debugger detached before the completion of the method.
4296 if (IsDebuggerActive()) {
4297 const size_t replyDataLength = expandBufGetLength(pReply) - kJDWPHeaderLen;
4298 VLOG(jdwp) << StringPrintf("REPLY INVOKE id=0x%06x (length=%zu)",
4299 pReq->request_id, replyDataLength);
4300
4301 gJdwpState->SendRequest(pReply);
4302 } else {
4303 VLOG(jdwp) << "Not sending invoke reply because debugger detached";
Elliott Hughesd07986f2011-12-06 18:27:45 -08004304 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004305}
4306
Alex Light8c2b9292017-11-09 13:21:01 -08004307bool Dbg::DdmHandleChunk(JNIEnv* env,
4308 uint32_t type,
4309 const ArrayRef<const jbyte>& data,
4310 /*out*/uint32_t* out_type,
4311 /*out*/std::vector<uint8_t>* out_data) {
4312 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(data.size()));
Ian Rogersc0542af2014-09-03 16:16:56 -07004313 if (dataArray.get() == nullptr) {
Alex Light8c2b9292017-11-09 13:21:01 -08004314 LOG(WARNING) << "byte[] allocation failed: " << data.size();
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004315 env->ExceptionClear();
4316 return false;
4317 }
Alex Light8c2b9292017-11-09 13:21:01 -08004318 env->SetByteArrayRegion(dataArray.get(),
4319 0,
4320 data.size(),
4321 reinterpret_cast<const jbyte*>(data.data()));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004322 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Alex Light8c2b9292017-11-09 13:21:01 -08004323 ScopedLocalRef<jobject> chunk(
4324 env,
4325 env->CallStaticObjectMethod(
4326 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4327 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
4328 type, dataArray.get(), 0, data.size()));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004329 if (env->ExceptionCheck()) {
4330 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
4331 env->ExceptionDescribe();
4332 env->ExceptionClear();
4333 return false;
4334 }
4335
Ian Rogersc0542af2014-09-03 16:16:56 -07004336 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004337 return false;
4338 }
4339
4340 /*
4341 * Pull the pieces out of the chunk. We copy the results into a
4342 * newly-allocated buffer that the caller can free. We don't want to
4343 * continue using the Chunk object because nothing has a reference to it.
4344 *
4345 * We could avoid this by returning type/data/offset/length and having
4346 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07004347 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004348 * if we have responses for multiple chunks.
4349 *
4350 * So we're pretty much stuck with copying data around multiple times.
4351 */
Alex Light8c2b9292017-11-09 13:21:01 -08004352 ScopedLocalRef<jbyteArray> replyData(
4353 env,
4354 reinterpret_cast<jbyteArray>(
4355 env->GetObjectField(
4356 chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_data)));
4357 jint offset = env->GetIntField(chunk.get(),
4358 WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
4359 jint length = env->GetIntField(chunk.get(),
4360 WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
4361 *out_type = env->GetIntField(chunk.get(),
4362 WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004363
Alex Light8c2b9292017-11-09 13:21:01 -08004364 VLOG(jdwp) << StringPrintf("DDM reply: type=0x%08x data=%p offset=%d length=%d",
4365 type,
4366 replyData.get(),
4367 offset,
4368 length);
Ian Rogersc0542af2014-09-03 16:16:56 -07004369 if (length == 0 || replyData.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004370 return false;
4371 }
4372
Alex Light8c2b9292017-11-09 13:21:01 -08004373 out_data->resize(length);
4374 env->GetByteArrayRegion(replyData.get(),
4375 offset,
4376 length,
4377 reinterpret_cast<jbyte*>(out_data->data()));
4378 return true;
4379}
4380
4381/*
4382 * "request" contains a full JDWP packet, possibly with multiple chunks. We
4383 * need to process each, accumulate the replies, and ship the whole thing
4384 * back.
4385 *
4386 * Returns "true" if we have a reply. The reply buffer is newly allocated,
4387 * and includes the chunk type/length, followed by the data.
4388 *
4389 * OLD-TODO: we currently assume that the request and reply include a single
4390 * chunk. If this becomes inconvenient we will need to adapt.
4391 */
4392bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
4393 Thread* self = Thread::Current();
4394 JNIEnv* env = self->GetJniEnv();
4395
4396 uint32_t type = request->ReadUnsigned32("type");
4397 uint32_t length = request->ReadUnsigned32("length");
4398
4399 // Create a byte[] corresponding to 'request'.
4400 size_t request_length = request->size();
4401 // Run through and find all chunks. [Currently just find the first.]
4402 if (length != request_length) {
4403 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004404 return false;
4405 }
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004406
Alex Light8c2b9292017-11-09 13:21:01 -08004407 ArrayRef<const jbyte> data(reinterpret_cast<const jbyte*>(request->data()), request_length);
4408 std::vector<uint8_t> out_data;
4409 uint32_t out_type = 0;
4410 request->Skip(request_length);
4411 if (!DdmHandleChunk(env, type, data, &out_type, &out_data)) {
4412 return false;
4413 }
4414 const uint32_t kDdmHeaderSize = 8;
4415 *pReplyLen = out_data.size() + kDdmHeaderSize;
4416 *pReplyBuf = new uint8_t[out_data.size() + kDdmHeaderSize];
4417 memcpy((*pReplyBuf) + kDdmHeaderSize, out_data.data(), out_data.size());
4418 JDWP::Set4BE(*pReplyBuf, out_type);
4419 JDWP::Set4BE((*pReplyBuf) + 4, static_cast<uint32_t>(out_data.size()));
4420 VLOG(jdwp)
4421 << StringPrintf("dvmHandleDdm returning type=%.4s", reinterpret_cast<char*>(*pReplyBuf))
4422 << "0x" << std::hex << reinterpret_cast<uintptr_t>(*pReplyBuf) << std::dec
4423 << " len= " << out_data.size();
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004424 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004425}
4426
Elliott Hughesa2155262011-11-16 16:26:58 -08004427void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004428 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07004429
4430 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07004431 if (self->GetState() != kRunnable) {
4432 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
4433 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07004434 }
4435
4436 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07004437 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07004438 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4439 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
4440 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07004441 if (env->ExceptionCheck()) {
4442 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
4443 env->ExceptionDescribe();
4444 env->ExceptionClear();
4445 }
4446}
4447
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004448void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004449 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004450}
4451
4452void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004453 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07004454 gDdmThreadNotification = false;
4455}
4456
4457/*
Elliott Hughes82188472011-11-07 18:11:48 -08004458 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07004459 *
4460 * Because we broadcast the full set of threads when the notifications are
4461 * first enabled, it's possible for "thread" to be actively executing.
4462 */
Elliott Hughes82188472011-11-07 18:11:48 -08004463void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004464 if (!gDdmThreadNotification) {
4465 return;
4466 }
4467
Alex Light772099a2017-11-21 14:05:04 -08004468 RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks();
Elliott Hughes82188472011-11-07 18:11:48 -08004469 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004470 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004471 JDWP::Set4BE(&buf[0], t->GetThreadId());
Alex Light772099a2017-11-21 14:05:04 -08004472 cb->DdmPublishChunk(CHUNK_TYPE("THDE"), ArrayRef<const uint8_t>(buf));
Elliott Hughes82188472011-11-07 18:11:48 -08004473 } else {
4474 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004475 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004476 StackHandleScope<1> hs(soa.Self());
Andreas Gampe08883de2016-11-08 13:20:52 -08004477 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName()));
Andreas Gampefa4333d2017-02-14 11:10:34 -08004478 size_t char_count = (name != nullptr) ? name->GetLength() : 0;
4479 const jchar* chars = (name != nullptr) ? name->GetValue() : nullptr;
4480 bool is_compressed = (name != nullptr) ? name->IsCompressed() : false;
Elliott Hughes82188472011-11-07 18:11:48 -08004481
Elliott Hughes21f32d72011-11-09 17:44:13 -08004482 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004483 JDWP::Append4BE(bytes, t->GetThreadId());
jessicahandojo3aaa37b2016-07-29 14:46:37 -07004484 if (is_compressed) {
4485 const uint8_t* chars_compressed = name->GetValueCompressed();
4486 JDWP::AppendUtf16CompressedBE(bytes, chars_compressed, char_count);
4487 } else {
4488 JDWP::AppendUtf16BE(bytes, chars, char_count);
4489 }
Elliott Hughes21f32d72011-11-09 17:44:13 -08004490 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
Alex Light772099a2017-11-21 14:05:04 -08004491 cb->DdmPublishChunk(type, ArrayRef<const uint8_t>(bytes));
Elliott Hughes47fce012011-10-25 18:37:19 -07004492 }
4493}
4494
Elliott Hughes47fce012011-10-25 18:37:19 -07004495void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004496 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07004497 gDdmThreadNotification = enable;
4498 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004499 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
4500 // see a suspension in progress and block until that ends. They then post their own start
4501 // notification.
4502 SuspendVM();
4503 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07004504 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004505 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004506 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004507 threads = Runtime::Current()->GetThreadList()->GetList();
4508 }
4509 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004510 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07004511 for (Thread* thread : threads) {
4512 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004513 }
4514 }
4515 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07004516 }
4517}
4518
Elliott Hughesa2155262011-11-16 16:26:58 -08004519void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07004520 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02004521 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004522 }
Elliott Hughes82188472011-11-07 18:11:48 -08004523 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07004524}
4525
4526void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004527 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004528}
4529
4530void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004531 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004532}
4533
Mathieu Chartierad466ad2015-01-08 16:28:08 -08004534JDWP::JdwpState* Dbg::GetJdwpState() {
4535 return gJdwpState;
4536}
4537
Elliott Hughes767a1472011-10-26 18:49:02 -07004538int Dbg::DdmHandleHpifChunk(HpifWhen when) {
4539 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07004540 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07004541 return true;
4542 }
4543
4544 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4545 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4546 return false;
4547 }
4548
4549 gDdmHpifWhen = when;
4550 return true;
4551}
4552
4553bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4554 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4555 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4556 return false;
4557 }
4558
4559 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4560 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4561 return false;
4562 }
4563
4564 if (native) {
4565 gDdmNhsgWhen = when;
4566 gDdmNhsgWhat = what;
4567 } else {
4568 gDdmHpsgWhen = when;
4569 gDdmHpsgWhat = what;
4570 }
4571 return true;
4572}
4573
Elliott Hughes7162ad92011-10-27 14:08:42 -07004574void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4575 // If there's a one-shot 'when', reset it.
4576 if (reason == gDdmHpifWhen) {
4577 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4578 gDdmHpifWhen = HPIF_WHEN_NEVER;
4579 }
4580 }
4581
4582 /*
4583 * Chunk HPIF (client --> server)
4584 *
4585 * Heap Info. General information about the heap,
4586 * suitable for a summary display.
4587 *
4588 * [u4]: number of heaps
4589 *
4590 * For each heap:
4591 * [u4]: heap ID
4592 * [u8]: timestamp in ms since Unix epoch
4593 * [u1]: capture reason (same as 'when' value from server)
4594 * [u4]: max heap size in bytes (-Xmx)
4595 * [u4]: current heap size in bytes
4596 * [u4]: current number of bytes allocated
4597 * [u4]: current number of objects allocated
4598 */
4599 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004600 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004601 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004602 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004603 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004604 JDWP::Append8BE(bytes, MilliTime());
4605 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004606 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4607 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004608 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4609 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004610 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
Alex Light772099a2017-11-21 14:05:04 -08004611 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(CHUNK_TYPE("HPIF"),
4612 ArrayRef<const uint8_t>(bytes));
Elliott Hughes767a1472011-10-26 18:49:02 -07004613}
4614
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004615enum HpsgSolidity {
4616 SOLIDITY_FREE = 0,
4617 SOLIDITY_HARD = 1,
4618 SOLIDITY_SOFT = 2,
4619 SOLIDITY_WEAK = 3,
4620 SOLIDITY_PHANTOM = 4,
4621 SOLIDITY_FINALIZABLE = 5,
4622 SOLIDITY_SWEEP = 6,
4623};
4624
4625enum HpsgKind {
4626 KIND_OBJECT = 0,
4627 KIND_CLASS_OBJECT = 1,
4628 KIND_ARRAY_1 = 2,
4629 KIND_ARRAY_2 = 3,
4630 KIND_ARRAY_4 = 4,
4631 KIND_ARRAY_8 = 5,
4632 KIND_UNKNOWN = 6,
4633 KIND_NATIVE = 7,
4634};
4635
4636#define HPSG_PARTIAL (1<<7)
4637#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4638
Ian Rogers30fab402012-01-23 15:43:46 -08004639class HeapChunkContext {
4640 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004641 // Maximum chunk size. Obtain this from the formula:
4642 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4643 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004644 : buf_(16384 - 16),
4645 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004646 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004647 Reset();
4648 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004649 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004650 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004651 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004652 }
4653 }
4654
4655 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004656 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004657 Flush();
4658 }
4659 }
4660
Mathieu Chartier36dab362014-07-30 14:59:56 -07004661 void SetChunkOverhead(size_t chunk_overhead) {
4662 chunk_overhead_ = chunk_overhead;
4663 }
4664
4665 void ResetStartOfNextChunk() {
4666 startOfNextMemoryChunk_ = nullptr;
4667 }
4668
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004669 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004670 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004671 return;
4672 }
4673
4674 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004675 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4676 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004677
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004678 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4679 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004680 // [u4]: length of piece, in allocation units
4681 // 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 -08004682 pieceLenField_ = p_;
4683 JDWP::Write4BE(&p_, 0x55555555);
4684 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004685 }
4686
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004687 void Flush() REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004688 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004689 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4690 CHECK(needHeader_);
4691 return;
4692 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004693 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004694 CHECK_LE(&buf_[0], pieceLenField_);
4695 CHECK_LE(pieceLenField_, p_);
4696 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004697
Alex Light772099a2017-11-21 14:05:04 -08004698 ArrayRef<const uint8_t> out(&buf_[0], p_ - &buf_[0]);
4699 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(type_, out);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004700 Reset();
4701 }
4702
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004703 static void HeapChunkJavaCallback(void* start, void* end, size_t used_bytes, void* arg)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004704 REQUIRES_SHARED(Locks::heap_bitmap_lock_,
Ian Rogersb726dcb2012-09-05 08:57:23 -07004705 Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004706 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes);
4707 }
4708
4709 static void HeapChunkNativeCallback(void* start, void* end, size_t used_bytes, void* arg)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004710 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004711 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004712 }
4713
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004714 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004715 enum { ALLOCATION_UNIT_SIZE = 8 };
4716
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004717 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004718 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004719 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004720 totalAllocationUnits_ = 0;
4721 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004722 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004723 }
4724
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004725 bool IsNative() const {
4726 return type_ == CHUNK_TYPE("NHSG");
4727 }
4728
4729 // Returns true if the object is not an empty chunk.
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004730 bool ProcessRecord(void* start, size_t used_bytes) REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004731 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4732 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004733 if (used_bytes == 0) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004734 if (start == nullptr) {
4735 // Reset for start of new heap.
4736 startOfNextMemoryChunk_ = nullptr;
4737 Flush();
4738 }
4739 // Only process in use memory so that free region information
4740 // also includes dlmalloc book keeping.
4741 return false;
Elliott Hughesa2155262011-11-16 16:26:58 -08004742 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004743 if (startOfNextMemoryChunk_ != nullptr) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004744 // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because
4745 // of the use of mmaps, so don't report. If not free memory then start a new segment.
4746 bool flush = true;
4747 if (start > startOfNextMemoryChunk_) {
4748 const size_t kMaxFreeLen = 2 * kPageSize;
4749 void* free_start = startOfNextMemoryChunk_;
4750 void* free_end = start;
4751 const size_t free_len =
4752 reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start);
4753 if (!IsNative() || free_len < kMaxFreeLen) {
4754 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative());
4755 flush = false;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004756 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004757 }
4758 if (flush) {
4759 startOfNextMemoryChunk_ = nullptr;
4760 Flush();
4761 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004762 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004763 return true;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004764 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004765
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004766 void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004767 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004768 if (ProcessRecord(start, used_bytes)) {
4769 uint8_t state = ExamineNativeObject(start);
4770 AppendChunk(state, start, used_bytes + chunk_overhead_, true /*is_native*/);
4771 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4772 }
4773 }
4774
4775 void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004776 REQUIRES_SHARED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004777 if (ProcessRecord(start, used_bytes)) {
4778 // Determine the type of this chunk.
4779 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4780 // If it's the same, we should combine them.
4781 uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start));
4782 AppendChunk(state, start, used_bytes + chunk_overhead_, false /*is_native*/);
4783 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4784 }
4785 }
4786
4787 void AppendChunk(uint8_t state, void* ptr, size_t length, bool is_native)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004788 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004789 // Make sure there's enough room left in the buffer.
4790 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4791 // 17 bytes for any header.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004792 const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17;
4793 size_t byte_left = &buf_.back() - p_;
4794 if (byte_left < needed) {
4795 if (is_native) {
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004796 // Cannot trigger memory allocation while walking native heap.
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004797 return;
4798 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004799 Flush();
4800 }
4801
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004802 byte_left = &buf_.back() - p_;
4803 if (byte_left < needed) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004804 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4805 << needed << " bytes)";
4806 return;
4807 }
4808 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004809 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004810 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4811 totalAllocationUnits_ += length;
4812 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004813 *p_++ = state | HPSG_PARTIAL;
4814 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004815 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004816 }
Ian Rogers30fab402012-01-23 15:43:46 -08004817 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004818 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004819 }
4820
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004821 uint8_t ExamineNativeObject(const void* p) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004822 return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4823 }
4824
4825 uint8_t ExamineJavaObject(mirror::Object* o)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004826 REQUIRES_SHARED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004827 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004828 return HPSG_STATE(SOLIDITY_FREE, 0);
4829 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004830 // It's an allocated chunk. Figure out what it is.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004831 gc::Heap* heap = Runtime::Current()->GetHeap();
4832 if (!heap->IsLiveObjectLocked(o)) {
4833 LOG(ERROR) << "Invalid object in managed heap: " << o;
Elliott Hughesa2155262011-11-16 16:26:58 -08004834 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4835 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004836 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004837 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004838 // The object was probably just created but hasn't been initialized yet.
4839 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4840 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004841 if (!heap->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004842 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004843 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4844 }
Mathieu Chartierf26e1b32015-01-29 10:47:10 -08004845 if (c->GetClass() == nullptr) {
4846 LOG(ERROR) << "Null class of class " << c << " for object " << o;
4847 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4848 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004849 if (c->IsClassClass()) {
4850 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4851 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004852 if (c->IsArrayClass()) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004853 switch (c->GetComponentSize()) {
4854 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4855 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4856 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4857 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4858 }
4859 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004860 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4861 }
4862
Ian Rogers30fab402012-01-23 15:43:46 -08004863 std::vector<uint8_t> buf_;
4864 uint8_t* p_;
4865 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004866 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004867 size_t totalAllocationUnits_;
4868 uint32_t type_;
Ian Rogers30fab402012-01-23 15:43:46 -08004869 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004870 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004871
Elliott Hughesa2155262011-11-16 16:26:58 -08004872 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4873};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004874
4875void Dbg::DdmSendHeapSegments(bool native) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004876 Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen;
4877 Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004878 if (when == HPSG_WHEN_NEVER) {
4879 return;
4880 }
Alex Light772099a2017-11-21 14:05:04 -08004881 RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks();
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004882 // Figure out what kind of chunks we'll be sending.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004883 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS)
4884 << static_cast<int>(what);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004885
4886 // First, send a heap start chunk.
4887 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004888 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Alex Light772099a2017-11-21 14:05:04 -08004889 cb->DdmPublishChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"),
4890 ArrayRef<const uint8_t>(heap_id));
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004891 Thread* self = Thread::Current();
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004892 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004893
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004894 // Send a series of heap segment chunks.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004895 HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native);
Andreas Gampe0c183382017-07-13 22:26:24 -07004896 auto bump_pointer_space_visitor = [&](mirror::Object* obj)
4897 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::heap_bitmap_lock_) {
4898 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
4899 HeapChunkContext::HeapChunkJavaCallback(
4900 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, &context);
4901 };
Elliott Hughesa2155262011-11-16 16:26:58 -08004902 if (native) {
Dimitry Ivanove6465bc2015-12-14 18:55:02 -08004903 UNIMPLEMENTED(WARNING) << "Native heap inspection is not supported";
Elliott Hughesa2155262011-11-16 16:26:58 -08004904 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004905 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004906 for (const auto& space : heap->GetContinuousSpaces()) {
4907 if (space->IsDlMallocSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004908 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004909 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4910 // allocation then the first sizeof(size_t) may belong to it.
4911 context.SetChunkOverhead(sizeof(size_t));
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004912 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004913 } else if (space->IsRosAllocSpace()) {
4914 context.SetChunkOverhead(0);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004915 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4916 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004917 ScopedThreadSuspension sts(self, kSuspended);
Mathieu Chartier4f55e222015-09-04 13:26:21 -07004918 ScopedSuspendAll ssa(__FUNCTION__);
4919 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4920 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004921 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004922 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004923 context.SetChunkOverhead(0);
Andreas Gampe0c183382017-07-13 22:26:24 -07004924 space->AsBumpPointerSpace()->Walk(bump_pointer_space_visitor);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004925 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004926 } else if (space->IsRegionSpace()) {
4927 heap->IncrementDisableMovingGC(self);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004928 {
4929 ScopedThreadSuspension sts(self, kSuspended);
Mathieu Chartier4f55e222015-09-04 13:26:21 -07004930 ScopedSuspendAll ssa(__FUNCTION__);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004931 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4932 context.SetChunkOverhead(0);
Andreas Gampe0c183382017-07-13 22:26:24 -07004933 space->AsRegionSpace()->Walk(bump_pointer_space_visitor);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004934 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004935 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004936 heap->DecrementDisableMovingGC(self);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004937 } else {
4938 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004939 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004940 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004941 }
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004942 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004943 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004944 context.SetChunkOverhead(0);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004945 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004946 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004947
4948 // Finally, send a heap end chunk.
Alex Light772099a2017-11-21 14:05:04 -08004949 cb->DdmPublishChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"),
4950 ArrayRef<const uint8_t>(heap_id));
Elliott Hughes767a1472011-10-26 18:49:02 -07004951}
4952
Brian Carlstrom306db812014-09-05 13:01:41 -07004953void Dbg::SetAllocTrackingEnabled(bool enable) {
Man Cao8c2ff642015-05-27 17:25:30 -07004954 gc::AllocRecordObjectMap::SetAllocTrackingEnabled(enable);
Elliott Hughes545a0642011-11-08 19:10:03 -08004955}
4956
4957void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004958 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004959 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Man Cao8c2ff642015-05-27 17:25:30 -07004960 if (!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled()) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004961 LOG(INFO) << "Not recording tracked allocations";
4962 return;
4963 }
Man Cao8c2ff642015-05-27 17:25:30 -07004964 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords();
4965 CHECK(records != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004966
Man Cao1ed11b92015-06-11 22:47:35 -07004967 const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize());
Brian Carlstrom306db812014-09-05 13:01:41 -07004968 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004969
Man Cao8c2ff642015-05-27 17:25:30 -07004970 LOG(INFO) << "Tracked allocations, (count=" << count << ")";
4971 for (auto it = records->RBegin(), end = records->REnd();
4972 count > 0 && it != end; count--, it++) {
Mathieu Chartier458b1052016-03-29 14:02:55 -07004973 const gc::AllocRecord* record = &it->second;
Elliott Hughes545a0642011-11-08 19:10:03 -08004974
Man Cao8c2ff642015-05-27 17:25:30 -07004975 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->GetTid(), record->ByteCount())
David Sehr709b0702016-10-13 09:12:37 -07004976 << mirror::Class::PrettyClass(record->GetClass());
Elliott Hughes545a0642011-11-08 19:10:03 -08004977
Man Cao8c2ff642015-05-27 17:25:30 -07004978 for (size_t stack_frame = 0, depth = record->GetDepth(); stack_frame < depth; ++stack_frame) {
4979 const gc::AllocRecordStackTraceElement& stack_element = record->StackElement(stack_frame);
4980 ArtMethod* m = stack_element.GetMethod();
David Sehr709b0702016-10-13 09:12:37 -07004981 LOG(INFO) << " " << ArtMethod::PrettyMethod(m) << " line "
4982 << stack_element.ComputeLineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004983 }
4984
4985 // pause periodically to help logcat catch up
4986 if ((count % 5) == 0) {
4987 usleep(40000);
4988 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004989 }
4990}
4991
4992class StringTable {
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004993 private:
4994 struct Entry {
Andreas Gampe84eadb22017-07-07 15:08:01 -07004995 explicit Entry(const char* data_in)
4996 : data(data_in), hash(ComputeModifiedUtf8Hash(data_in)), index(0) {
4997 }
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004998 Entry(const Entry& entry) = default;
4999 Entry(Entry&& entry) = default;
5000
5001 // Pointer to the actual string data.
5002 const char* data;
Andreas Gampe84eadb22017-07-07 15:08:01 -07005003
5004 // The hash of the data.
5005 const uint32_t hash;
5006
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005007 // The index. This will be filled in on Finish and is not part of the ordering, so mark it
5008 // mutable.
5009 mutable uint32_t index;
5010
Andreas Gampe84eadb22017-07-07 15:08:01 -07005011 bool operator==(const Entry& other) const {
5012 return strcmp(data, other.data) == 0;
5013 }
5014 };
5015 struct EntryHash {
5016 size_t operator()(const Entry& entry) const {
5017 return entry.hash;
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005018 }
5019 };
5020
Elliott Hughes545a0642011-11-08 19:10:03 -08005021 public:
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005022 StringTable() : finished_(false) {
Elliott Hughes545a0642011-11-08 19:10:03 -08005023 }
5024
Andreas Gampef774a4e2017-07-06 22:15:18 -07005025 void Add(const char* str, bool copy_string) {
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005026 DCHECK(!finished_);
Andreas Gampef774a4e2017-07-06 22:15:18 -07005027 if (UNLIKELY(copy_string)) {
5028 // Check whether it's already there.
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005029 Entry entry(str);
5030 if (table_.find(entry) != table_.end()) {
Andreas Gampef774a4e2017-07-06 22:15:18 -07005031 return;
5032 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07005033
Andreas Gampef774a4e2017-07-06 22:15:18 -07005034 // Make a copy.
5035 size_t str_len = strlen(str);
5036 char* copy = new char[str_len + 1];
5037 strlcpy(copy, str, str_len + 1);
5038 string_backup_.emplace_back(copy);
5039 str = copy;
5040 }
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005041 Entry entry(str);
5042 table_.insert(entry);
5043 }
5044
5045 // Update all entries and give them an index. Note that this is likely not the insertion order,
5046 // as the set will with high likelihood reorder elements. Thus, Add must not be called after
5047 // Finish, and Finish must be called before IndexOf. In that case, WriteTo will walk in
5048 // the same order as Finish, and indices will agree. The order invariant, as well as indices,
5049 // are enforced through debug checks.
5050 void Finish() {
5051 DCHECK(!finished_);
5052 finished_ = true;
5053 uint32_t index = 0;
5054 for (auto& entry : table_) {
5055 entry.index = index;
5056 ++index;
5057 }
Elliott Hughes545a0642011-11-08 19:10:03 -08005058 }
5059
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07005060 size_t IndexOf(const char* s) const {
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005061 DCHECK(finished_);
5062 Entry entry(s);
5063 auto it = table_.find(entry);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07005064 if (it == table_.end()) {
5065 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
5066 }
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005067 return it->index;
Elliott Hughes545a0642011-11-08 19:10:03 -08005068 }
5069
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07005070 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08005071 return table_.size();
5072 }
5073
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07005074 void WriteTo(std::vector<uint8_t>& bytes) const {
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005075 DCHECK(finished_);
5076 uint32_t cur_index = 0;
5077 for (const auto& entry : table_) {
5078 DCHECK_EQ(cur_index++, entry.index);
5079
5080 size_t s_len = CountModifiedUtf8Chars(entry.data);
Christopher Ferris8a354052015-04-24 17:23:53 -07005081 std::unique_ptr<uint16_t[]> s_utf16(new uint16_t[s_len]);
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005082 ConvertModifiedUtf8ToUtf16(s_utf16.get(), entry.data);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08005083 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08005084 }
5085 }
5086
5087 private:
Andreas Gampe84eadb22017-07-07 15:08:01 -07005088 std::unordered_set<Entry, EntryHash> table_;
Andreas Gampef774a4e2017-07-06 22:15:18 -07005089 std::vector<std::unique_ptr<char[]>> string_backup_;
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005090
5091 bool finished_;
5092
Elliott Hughes545a0642011-11-08 19:10:03 -08005093 DISALLOW_COPY_AND_ASSIGN(StringTable);
5094};
5095
Mathieu Chartiere401d142015-04-22 13:56:20 -07005096static const char* GetMethodSourceFile(ArtMethod* method)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07005097 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07005098 DCHECK(method != nullptr);
5099 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02005100 return (source_file != nullptr) ? source_file : "";
5101}
5102
Elliott Hughes545a0642011-11-08 19:10:03 -08005103/*
5104 * The data we send to DDMS contains everything we have recorded.
5105 *
5106 * Message header (all values big-endian):
5107 * (1b) message header len (to allow future expansion); includes itself
5108 * (1b) entry header len
5109 * (1b) stack frame len
5110 * (2b) number of entries
5111 * (4b) offset to string table from start of message
5112 * (2b) number of class name strings
5113 * (2b) number of method name strings
5114 * (2b) number of source file name strings
5115 * For each entry:
5116 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08005117 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08005118 * (2b) allocated object's class name index
5119 * (1b) stack depth
5120 * For each stack frame:
5121 * (2b) method's class name
5122 * (2b) method name
5123 * (2b) method source file
5124 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
5125 * (xb) class name strings
5126 * (xb) method name strings
5127 * (xb) source file strings
5128 *
5129 * As with other DDM traffic, strings are sent as a 4-byte length
5130 * followed by UTF-16 data.
5131 *
5132 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07005133 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08005134 * each table, but in practice there should be far fewer.
5135 *
5136 * The chief reason for using a string table here is to keep the size of
5137 * the DDMS message to a minimum. This is partly to make the protocol
5138 * efficient, but also because we have to form the whole thing up all at
5139 * once in a memory buffer.
5140 *
5141 * We use separate string tables for class names, method names, and source
5142 * files to keep the indexes small. There will generally be no overlap
5143 * between the contents of these tables.
5144 */
5145jbyteArray Dbg::GetRecentAllocations() {
Ian Rogerscf7f1912014-10-22 22:06:39 -07005146 if ((false)) {
Elliott Hughes545a0642011-11-08 19:10:03 -08005147 DumpRecentAllocations();
5148 }
5149
Ian Rogers50b35e22012-10-04 10:09:15 -07005150 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08005151 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005152 {
Brian Carlstrom306db812014-09-05 13:01:41 -07005153 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Man Cao8c2ff642015-05-27 17:25:30 -07005154 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords();
5155 // In case this method is called when allocation tracker is disabled,
5156 // we should still send some data back.
5157 gc::AllocRecordObjectMap dummy;
5158 if (records == nullptr) {
5159 CHECK(!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled());
5160 records = &dummy;
5161 }
Man Cao41656de2015-07-06 18:53:15 -07005162 // We don't need to wait on the condition variable records->new_record_condition_, because this
5163 // function only reads the class objects, which are already marked so it doesn't change their
5164 // reachability.
Man Cao8c2ff642015-05-27 17:25:30 -07005165
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005166 //
5167 // Part 1: generate string tables.
5168 //
5169 StringTable class_names;
5170 StringTable method_names;
5171 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08005172
Andreas Gampeff29cee2017-07-07 11:11:15 -07005173 VLOG(jdwp) << "Collecting StringTables.";
5174
Man Cao1ed11b92015-06-11 22:47:35 -07005175 const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize());
Brian Carlstrom306db812014-09-05 13:01:41 -07005176 uint16_t count = capped_count;
Andreas Gamped0fc7682017-07-07 14:03:08 -07005177 size_t alloc_byte_count = 0;
Man Cao8c2ff642015-05-27 17:25:30 -07005178 for (auto it = records->RBegin(), end = records->REnd();
5179 count > 0 && it != end; count--, it++) {
Mathieu Chartier458b1052016-03-29 14:02:55 -07005180 const gc::AllocRecord* record = &it->second;
Ian Rogers1ff3c982014-08-12 02:30:58 -07005181 std::string temp;
Andreas Gampef774a4e2017-07-06 22:15:18 -07005182 const char* class_descr = record->GetClassDescriptor(&temp);
5183 class_names.Add(class_descr, !temp.empty());
Andreas Gamped0fc7682017-07-07 14:03:08 -07005184
5185 // Size + tid + class name index + stack depth.
5186 alloc_byte_count += 4u + 2u + 2u + 1u;
5187
Man Cao8c2ff642015-05-27 17:25:30 -07005188 for (size_t i = 0, depth = record->GetDepth(); i < depth; i++) {
5189 ArtMethod* m = record->StackElement(i).GetMethod();
Andreas Gampef774a4e2017-07-06 22:15:18 -07005190 class_names.Add(m->GetDeclaringClassDescriptor(), false);
5191 method_names.Add(m->GetName(), false);
5192 filenames.Add(GetMethodSourceFile(m), false);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005193 }
Andreas Gamped0fc7682017-07-07 14:03:08 -07005194
5195 // Depth * (class index + method name index + file name index + line number).
5196 alloc_byte_count += record->GetDepth() * (2u + 2u + 2u + 2u);
Elliott Hughes545a0642011-11-08 19:10:03 -08005197 }
5198
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005199 class_names.Finish();
5200 method_names.Finish();
5201 filenames.Finish();
Andreas Gampeff29cee2017-07-07 11:11:15 -07005202 VLOG(jdwp) << "Done collecting StringTables:" << std::endl
5203 << " ClassNames: " << class_names.Size() << std::endl
5204 << " MethodNames: " << method_names.Size() << std::endl
5205 << " Filenames: " << filenames.Size();
5206
Man Cao8c2ff642015-05-27 17:25:30 -07005207 LOG(INFO) << "recent allocation records: " << capped_count;
5208 LOG(INFO) << "allocation records all objects: " << records->Size();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005209
5210 //
5211 // Part 2: Generate the output and store it in the buffer.
5212 //
5213
5214 // (1b) message header len (to allow future expansion); includes itself
5215 // (1b) entry header len
5216 // (1b) stack frame len
5217 const int kMessageHeaderLen = 15;
5218 const int kEntryHeaderLen = 9;
5219 const int kStackFrameLen = 8;
5220 JDWP::Append1BE(bytes, kMessageHeaderLen);
5221 JDWP::Append1BE(bytes, kEntryHeaderLen);
5222 JDWP::Append1BE(bytes, kStackFrameLen);
5223
5224 // (2b) number of entries
5225 // (4b) offset to string table from start of message
5226 // (2b) number of class name strings
5227 // (2b) number of method name strings
5228 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07005229 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005230 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07005231 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005232 JDWP::Append2BE(bytes, class_names.Size());
5233 JDWP::Append2BE(bytes, method_names.Size());
5234 JDWP::Append2BE(bytes, filenames.Size());
5235
Andreas Gampeff29cee2017-07-07 11:11:15 -07005236 VLOG(jdwp) << "Dumping allocations with stacks";
5237
Andreas Gamped0fc7682017-07-07 14:03:08 -07005238 // Enlarge the vector for the allocation data.
5239 size_t reserve_size = bytes.size() + alloc_byte_count;
5240 bytes.reserve(reserve_size);
5241
Ian Rogers1ff3c982014-08-12 02:30:58 -07005242 std::string temp;
Man Cao8c2ff642015-05-27 17:25:30 -07005243 count = capped_count;
5244 // The last "count" number of allocation records in "records" are the most recent "count" number
5245 // of allocations. Reverse iterate to get them. The most recent allocation is sent first.
5246 for (auto it = records->RBegin(), end = records->REnd();
5247 count > 0 && it != end; count--, it++) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005248 // For each entry:
5249 // (4b) total allocation size
5250 // (2b) thread id
5251 // (2b) allocated object's class name index
5252 // (1b) stack depth
Mathieu Chartier458b1052016-03-29 14:02:55 -07005253 const gc::AllocRecord* record = &it->second;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005254 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07005255 size_t allocated_object_class_name_index =
Man Cao41656de2015-07-06 18:53:15 -07005256 class_names.IndexOf(record->GetClassDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07005257 JDWP::Append4BE(bytes, record->ByteCount());
Man Cao8c2ff642015-05-27 17:25:30 -07005258 JDWP::Append2BE(bytes, static_cast<uint16_t>(record->GetTid()));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005259 JDWP::Append2BE(bytes, allocated_object_class_name_index);
5260 JDWP::Append1BE(bytes, stack_depth);
5261
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005262 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
5263 // For each stack frame:
5264 // (2b) method's class name
5265 // (2b) method name
5266 // (2b) method source file
5267 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Man Cao8c2ff642015-05-27 17:25:30 -07005268 ArtMethod* m = record->StackElement(stack_frame).GetMethod();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07005269 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
5270 size_t method_name_index = method_names.IndexOf(m->GetName());
5271 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005272 JDWP::Append2BE(bytes, class_name_index);
5273 JDWP::Append2BE(bytes, method_name_index);
5274 JDWP::Append2BE(bytes, file_name_index);
Man Cao8c2ff642015-05-27 17:25:30 -07005275 JDWP::Append2BE(bytes, record->StackElement(stack_frame).ComputeLineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005276 }
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005277 }
5278
Andreas Gamped0fc7682017-07-07 14:03:08 -07005279 CHECK_EQ(bytes.size(), reserve_size);
Andreas Gampeff29cee2017-07-07 11:11:15 -07005280 VLOG(jdwp) << "Dumping tables.";
5281
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005282 // (xb) class name strings
5283 // (xb) method name strings
5284 // (xb) source file strings
5285 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
5286 class_names.WriteTo(bytes);
5287 method_names.WriteTo(bytes);
5288 filenames.WriteTo(bytes);
Andreas Gampeff29cee2017-07-07 11:11:15 -07005289
5290 VLOG(jdwp) << "GetRecentAllocations: data created. " << bytes.size();
Elliott Hughes545a0642011-11-08 19:10:03 -08005291 }
Ian Rogers50b35e22012-10-04 10:09:15 -07005292 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08005293 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07005294 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08005295 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
5296 }
5297 return result;
5298}
5299
Mathieu Chartiere401d142015-04-22 13:56:20 -07005300ArtMethod* DeoptimizationRequest::Method() const {
Andreas Gampe13b27842016-11-07 16:48:23 -08005301 return jni::DecodeArtMethod(method_);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07005302}
5303
Mathieu Chartiere401d142015-04-22 13:56:20 -07005304void DeoptimizationRequest::SetMethod(ArtMethod* m) {
Andreas Gampe13b27842016-11-07 16:48:23 -08005305 method_ = jni::EncodeArtMethod(m);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07005306}
5307
Mathieu Chartiera6b1ead2015-10-06 10:32:38 -07005308void Dbg::VisitRoots(RootVisitor* visitor) {
5309 // Visit breakpoint roots, used to prevent unloading of methods with breakpoints.
5310 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
5311 BufferedRootVisitor<128> root_visitor(visitor, RootInfo(kRootVMInternal));
5312 for (Breakpoint& breakpoint : gBreakpoints) {
Andreas Gampe542451c2016-07-26 09:02:02 -07005313 breakpoint.Method()->VisitRoots(root_visitor, kRuntimePointerSize);
Mathieu Chartiera6b1ead2015-10-06 10:32:38 -07005314 }
5315}
5316
Andreas Gampe04bbb5b2017-01-19 17:49:03 +00005317void Dbg::DbgThreadLifecycleCallback::ThreadStart(Thread* self) {
5318 Dbg::PostThreadStart(self);
5319}
5320
5321void Dbg::DbgThreadLifecycleCallback::ThreadDeath(Thread* self) {
5322 Dbg::PostThreadDeath(self);
5323}
5324
Andreas Gampe0f01b582017-01-18 15:22:37 -08005325void Dbg::DbgClassLoadCallback::ClassLoad(Handle<mirror::Class> klass ATTRIBUTE_UNUSED) {
5326 // Ignore ClassLoad;
5327}
5328void Dbg::DbgClassLoadCallback::ClassPrepare(Handle<mirror::Class> temp_klass ATTRIBUTE_UNUSED,
5329 Handle<mirror::Class> klass) {
5330 Dbg::PostClassPrepare(klass.Get());
5331}
5332
Elliott Hughes872d4ec2011-10-21 17:07:15 -07005333} // namespace art