blob: 52dddf52a0aef9ba9a42290661d0daa49c141ab2 [file] [log] [blame]
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "debugger.h"
18
Elliott Hughes3bb81562011-10-21 18:52:59 -070019#include <sys/uio.h>
20
Elliott Hughes545a0642011-11-08 19:10:03 -080021#include <set>
22
Ian Rogers166db042013-07-26 12:05:57 -070023#include "arch/context.h"
Mathieu Chartierc7853442015-03-27 14:35:38 -070024#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070025#include "art_method-inl.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010026#include "base/time_utils.h"
Elliott Hughes545a0642011-11-08 19:10:03 -080027#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080028#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070029#include "dex_file-inl.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070030#include "dex_instruction.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070031#include "gc/accounting/card_table-inl.h"
Man Cao8c2ff642015-05-27 17:25:30 -070032#include "gc/allocation_record.h"
Mathieu Chartieraa516822015-10-02 15:53:37 -070033#include "gc/scoped_gc_critical_section.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070034#include "gc/space/large_object_space.h"
35#include "gc/space/space-inl.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070036#include "handle_scope.h"
Sebastien Hertzcbc50642015-06-01 17:33:12 +020037#include "jdwp/jdwp_priv.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080038#include "jdwp/object_registry.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039#include "mirror/class.h"
40#include "mirror/class-inl.h"
41#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080042#include "mirror/object-inl.h"
43#include "mirror/object_array-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070044#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080045#include "mirror/throwable.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010046#include "quick/inline_method_analyser.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070047#include "reflection.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070048#include "safe_map.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080049#include "scoped_thread_state_change.h"
Elliott Hughes6a5bd492011-10-28 14:33:57 -070050#include "ScopedLocalRef.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070051#include "ScopedPrimitiveArray.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070052#include "handle_scope-inl.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070053#include "thread_list.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080054#include "utf.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010055#include "verifier/method_verifier-inl.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070056#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070057
Elliott Hughes872d4ec2011-10-21 17:07:15 -070058namespace art {
59
Sebastien Hertz0462c4c2015-04-01 16:34:17 +020060// The key identifying the debugger to update instrumentation.
61static constexpr const char* kDbgInstrumentationKey = "Debugger";
62
Man Cao8c2ff642015-05-27 17:25:30 -070063// 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 -070064static uint16_t CappedAllocRecordCount(size_t alloc_record_count) {
Man Cao1ed11b92015-06-11 22:47:35 -070065 const size_t cap = 0xffff;
Man Cao8c2ff642015-05-27 17:25:30 -070066 if (alloc_record_count > cap) {
67 return cap;
Brian Carlstrom306db812014-09-05 13:01:41 -070068 }
69 return alloc_record_count;
70}
Elliott Hughes475fc232011-10-25 15:00:35 -070071
Mathieu Chartier41af5e52015-10-28 11:10:46 -070072class Breakpoint : public ValueObject {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -070073 public:
Mathieu Chartier41af5e52015-10-28 11:10:46 -070074 Breakpoint(ArtMethod* method, uint32_t dex_pc, DeoptimizationRequest::Kind deoptimization_kind)
75 : method_(method),
76 dex_pc_(dex_pc),
77 deoptimization_kind_(deoptimization_kind) {
Sebastien Hertzf3928792014-11-17 19:00:37 +010078 CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing ||
79 deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization ||
80 deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -070081 }
82
Mathieu Chartier90443472015-07-16 20:32:27 -070083 Breakpoint(const Breakpoint& other) SHARED_REQUIRES(Locks::mutator_lock_)
Mathieu Chartier41af5e52015-10-28 11:10:46 -070084 : method_(other.method_),
85 dex_pc_(other.dex_pc_),
86 deoptimization_kind_(other.deoptimization_kind_) {}
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -070087
Mathieu Chartier41af5e52015-10-28 11:10:46 -070088 // Method() is called from root visiting, do not use ScopedObjectAccess here or it can cause
89 // GC to deadlock if another thread tries to call SuspendAll while the GC is in a runnable state.
90 ArtMethod* Method() const {
91 return method_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -070092 }
93
94 uint32_t DexPc() const {
95 return dex_pc_;
96 }
97
Sebastien Hertzf3928792014-11-17 19:00:37 +010098 DeoptimizationRequest::Kind GetDeoptimizationKind() const {
99 return deoptimization_kind_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700100 }
101
102 private:
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100103 // The location of this breakpoint.
Mathieu Chartier41af5e52015-10-28 11:10:46 -0700104 ArtMethod* method_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700105 uint32_t dex_pc_;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100106
107 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
Sebastien Hertzf3928792014-11-17 19:00:37 +0100108 DeoptimizationRequest::Kind deoptimization_kind_;
Elliott Hughes86964332012-02-15 19:37:42 -0800109};
110
Sebastien Hertzed2be172014-08-19 15:33:43 +0200111static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Mathieu Chartier90443472015-07-16 20:32:27 -0700112 SHARED_REQUIRES(Locks::mutator_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700113 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
Elliott Hughes86964332012-02-15 19:37:42 -0800114 return os;
115}
116
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200117class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800118 public:
119 DebugInstrumentationListener() {}
120 virtual ~DebugInstrumentationListener() {}
121
Mathieu Chartiere401d142015-04-22 13:56:20 -0700122 void MethodEntered(Thread* thread, mirror::Object* this_object, ArtMethod* method,
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200123 uint32_t dex_pc)
Mathieu Chartier90443472015-07-16 20:32:27 -0700124 OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800125 if (method->IsNative()) {
126 // TODO: post location events is a suspension point and native method entry stubs aren't.
127 return;
128 }
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200129 if (IsListeningToDexPcMoved()) {
130 // We also listen to kDexPcMoved instrumentation event so we know the DexPcMoved method is
131 // going to be called right after us. To avoid sending JDWP events twice for this location,
132 // we report the event in DexPcMoved. However, we must remind this is method entry so we
133 // send the METHOD_ENTRY event. And we can also group it with other events for this location
134 // like BREAKPOINT or SINGLE_STEP (or even METHOD_EXIT if this is a RETURN instruction).
135 thread->SetDebugMethodEntry();
136 } else if (IsListeningToMethodExit() && IsReturn(method, dex_pc)) {
137 // We also listen to kMethodExited instrumentation event and the current instruction is a
138 // RETURN so we know the MethodExited method is going to be called right after us. To avoid
139 // sending JDWP events twice for this location, we report the event(s) in MethodExited.
140 // However, we must remind this is method entry so we send the METHOD_ENTRY event. And we can
141 // also group it with other events for this location like BREAKPOINT or SINGLE_STEP.
142 thread->SetDebugMethodEntry();
143 } else {
144 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
145 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800146 }
147
Mathieu Chartiere401d142015-04-22 13:56:20 -0700148 void MethodExited(Thread* thread, mirror::Object* this_object, ArtMethod* method,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200149 uint32_t dex_pc, const JValue& return_value)
Mathieu Chartier90443472015-07-16 20:32:27 -0700150 OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800151 if (method->IsNative()) {
152 // TODO: post location events is a suspension point and native method entry stubs aren't.
153 return;
154 }
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200155 uint32_t events = Dbg::kMethodExit;
156 if (thread->IsDebugMethodEntry()) {
157 // It is also the method entry.
158 DCHECK(IsReturn(method, dex_pc));
159 events |= Dbg::kMethodEntry;
160 thread->ClearDebugMethodEntry();
161 }
162 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, events, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800163 }
164
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200165 void MethodUnwind(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object ATTRIBUTE_UNUSED,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700166 ArtMethod* method, uint32_t dex_pc)
Mathieu Chartier90443472015-07-16 20:32:27 -0700167 OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800168 // We're not recorded to listen to this kind of event, so complain.
169 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100170 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800171 }
172
Mathieu Chartiere401d142015-04-22 13:56:20 -0700173 void DexPcMoved(Thread* thread, mirror::Object* this_object, ArtMethod* method,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200174 uint32_t new_dex_pc)
Mathieu Chartier90443472015-07-16 20:32:27 -0700175 OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200176 if (IsListeningToMethodExit() && IsReturn(method, new_dex_pc)) {
177 // We also listen to kMethodExited instrumentation event and the current instruction is a
178 // RETURN so we know the MethodExited method is going to be called right after us. Like in
179 // MethodEntered, we delegate event reporting to MethodExited.
180 // Besides, if this RETURN instruction is the only one in the method, we can send multiple
181 // JDWP events in the same packet: METHOD_ENTRY, METHOD_EXIT, BREAKPOINT and/or SINGLE_STEP.
182 // Therefore, we must not clear the debug method entry flag here.
183 } else {
184 uint32_t events = 0;
185 if (thread->IsDebugMethodEntry()) {
186 // It is also the method entry.
187 events = Dbg::kMethodEntry;
188 thread->ClearDebugMethodEntry();
189 }
190 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, events, nullptr);
191 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800192 }
193
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200194 void FieldRead(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700195 ArtMethod* method, uint32_t dex_pc, ArtField* field)
Mathieu Chartier90443472015-07-16 20:32:27 -0700196 OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200197 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800198 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200199
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700200 void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700201 ArtMethod* method, uint32_t dex_pc, ArtField* field,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700202 const JValue& field_value)
Mathieu Chartier90443472015-07-16 20:32:27 -0700203 OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200204 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
205 }
206
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000207 void ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED, mirror::Throwable* exception_object)
Mathieu Chartier90443472015-07-16 20:32:27 -0700208 OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000209 Dbg::PostException(exception_object);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200210 }
211
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800212 // We only care about how many backward branches were executed in the Jit.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700213 void BackwardBranch(Thread* /*thread*/, ArtMethod* method, int32_t dex_pc_offset)
Mathieu Chartier90443472015-07-16 20:32:27 -0700214 OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800215 LOG(ERROR) << "Unexpected backward branch event in debugger " << PrettyMethod(method)
216 << " " << dex_pc_offset;
217 }
218
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100219 // We only care about invokes in the Jit.
220 void InvokeVirtualOrInterface(Thread* thread ATTRIBUTE_UNUSED,
221 mirror::Object*,
222 ArtMethod* method,
223 uint32_t dex_pc,
224 ArtMethod*)
225 OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
226 LOG(ERROR) << "Unexpected invoke event in debugger " << PrettyMethod(method)
227 << " " << dex_pc;
228 }
229
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200230 private:
Mathieu Chartiere401d142015-04-22 13:56:20 -0700231 static bool IsReturn(ArtMethod* method, uint32_t dex_pc)
Mathieu Chartier90443472015-07-16 20:32:27 -0700232 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200233 const DexFile::CodeItem* code_item = method->GetCodeItem();
234 const Instruction* instruction = Instruction::At(&code_item->insns_[dex_pc]);
235 return instruction->IsReturn();
236 }
237
Mathieu Chartier90443472015-07-16 20:32:27 -0700238 static bool IsListeningToDexPcMoved() SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200239 return IsListeningTo(instrumentation::Instrumentation::kDexPcMoved);
240 }
241
Mathieu Chartier90443472015-07-16 20:32:27 -0700242 static bool IsListeningToMethodExit() SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200243 return IsListeningTo(instrumentation::Instrumentation::kMethodExited);
244 }
245
246 static bool IsListeningTo(instrumentation::Instrumentation::InstrumentationEvent event)
Mathieu Chartier90443472015-07-16 20:32:27 -0700247 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200248 return (Dbg::GetInstrumentationEvents() & event) != 0;
249 }
250
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200251 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800252} gDebugInstrumentationListener;
253
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700254// JDWP is allowed unless the Zygote forbids it.
255static bool gJdwpAllowed = true;
256
Elliott Hughesc0f09332012-03-26 13:27:06 -0700257// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700258static bool gJdwpConfigured = false;
259
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100260// JDWP options for debugging. Only valid if IsJdwpConfigured() is true.
261static JDWP::JdwpOptions gJdwpOptions;
262
Elliott Hughes3bb81562011-10-21 18:52:59 -0700263// Runtime JDWP state.
Ian Rogersc0542af2014-09-03 16:16:56 -0700264static JDWP::JdwpState* gJdwpState = nullptr;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700265static bool gDebuggerConnected; // debugger or DDMS is connected.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700266
Elliott Hughes47fce012011-10-25 18:37:19 -0700267static bool gDdmThreadNotification = false;
268
Elliott Hughes767a1472011-10-26 18:49:02 -0700269// DDMS GC-related settings.
270static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
271static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
272static Dbg::HpsgWhat gDdmHpsgWhat;
273static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
274static Dbg::HpsgWhat gDdmNhsgWhat;
275
Daniel Mihalyieb076692014-08-22 17:33:31 +0200276bool Dbg::gDebuggerActive = false;
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100277bool Dbg::gDisposed = false;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200278ObjectRegistry* Dbg::gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700279
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100280// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100281std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
282size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100283
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200284// Instrumentation event reference counters.
285size_t Dbg::dex_pc_change_event_ref_count_ = 0;
286size_t Dbg::method_enter_event_ref_count_ = 0;
287size_t Dbg::method_exit_event_ref_count_ = 0;
288size_t Dbg::field_read_event_ref_count_ = 0;
289size_t Dbg::field_write_event_ref_count_ = 0;
290size_t Dbg::exception_catch_event_ref_count_ = 0;
291uint32_t Dbg::instrumentation_events_ = 0;
292
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100293// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800294static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800295
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700296void DebugInvokeReq::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
297 receiver.VisitRootIfNonNull(visitor, root_info); // null for static method call.
298 klass.VisitRoot(visitor, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700299}
300
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100301void SingleStepControl::AddDexPc(uint32_t dex_pc) {
302 dex_pcs_.insert(dex_pc);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200303}
304
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100305bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
306 return dex_pcs_.find(dex_pc) == dex_pcs_.end();
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200307}
308
Mathieu Chartiere401d142015-04-22 13:56:20 -0700309static bool IsBreakpoint(const ArtMethod* m, uint32_t dex_pc)
Mathieu Chartier90443472015-07-16 20:32:27 -0700310 REQUIRES(!Locks::breakpoint_lock_)
311 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertzed2be172014-08-19 15:33:43 +0200312 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100313 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700314 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
Elliott Hughes86964332012-02-15 19:37:42 -0800315 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
316 return true;
317 }
318 }
319 return false;
320}
321
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100322static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
Mathieu Chartier90443472015-07-16 20:32:27 -0700323 REQUIRES(!Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800324 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
325 // A thread may be suspended for GC; in this code, we really want to know whether
326 // there's a debugger suspension active.
327 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
328}
329
Ian Rogersc0542af2014-09-03 16:16:56 -0700330static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
Mathieu Chartier90443472015-07-16 20:32:27 -0700331 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200332 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700333 if (o == nullptr) {
334 *error = JDWP::ERR_INVALID_OBJECT;
335 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800336 }
337 if (!o->IsArrayInstance()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700338 *error = JDWP::ERR_INVALID_ARRAY;
339 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800340 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700341 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800342 return o->AsArray();
343}
344
Ian Rogersc0542af2014-09-03 16:16:56 -0700345static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
Mathieu Chartier90443472015-07-16 20:32:27 -0700346 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200347 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700348 if (o == nullptr) {
349 *error = JDWP::ERR_INVALID_OBJECT;
350 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800351 }
352 if (!o->IsClass()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700353 *error = JDWP::ERR_INVALID_CLASS;
354 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800355 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700356 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800357 return o->AsClass();
358}
359
Ian Rogersc0542af2014-09-03 16:16:56 -0700360static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
361 JDWP::JdwpError* error)
Mathieu Chartier90443472015-07-16 20:32:27 -0700362 SHARED_REQUIRES(Locks::mutator_lock_)
363 REQUIRES(!Locks::thread_list_lock_, !Locks::thread_suspend_count_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200364 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700365 if (thread_peer == nullptr) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800366 // This isn't even an object.
Ian Rogersc0542af2014-09-03 16:16:56 -0700367 *error = JDWP::ERR_INVALID_OBJECT;
368 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800369 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800370
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800371 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800372 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
373 // This isn't a thread.
Ian Rogersc0542af2014-09-03 16:16:56 -0700374 *error = JDWP::ERR_INVALID_THREAD;
375 return nullptr;
Elliott Hughes221229c2013-01-08 18:17:50 -0800376 }
377
Sebastien Hertz69206392015-04-07 15:54:25 +0200378 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700379 Thread* thread = Thread::FromManagedThread(soa, thread_peer);
380 // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a
381 // zombie.
382 *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE;
383 return thread;
Elliott Hughes436e3722012-02-17 20:01:47 -0800384}
385
Elliott Hughes24437992011-11-30 14:49:33 -0800386static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
387 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
388 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
389 return static_cast<JDWP::JdwpTag>(descriptor[0]);
390}
391
Ian Rogers1ff3c982014-08-12 02:30:58 -0700392static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
Mathieu Chartier90443472015-07-16 20:32:27 -0700393 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700394 std::string temp;
395 const char* descriptor = klass->GetDescriptor(&temp);
396 return BasicTagFromDescriptor(descriptor);
397}
398
Ian Rogers98379392014-02-24 16:53:16 -0800399static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Mathieu Chartier90443472015-07-16 20:32:27 -0700400 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700401 CHECK(c != nullptr);
Elliott Hughes24437992011-11-30 14:49:33 -0800402 if (c->IsArrayClass()) {
403 return JDWP::JT_ARRAY;
404 }
Elliott Hughes24437992011-11-30 14:49:33 -0800405 if (c->IsStringClass()) {
406 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800407 }
Ian Rogers98379392014-02-24 16:53:16 -0800408 if (c->IsClassClass()) {
409 return JDWP::JT_CLASS_OBJECT;
410 }
411 {
412 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
413 if (thread_class->IsAssignableFrom(c)) {
414 return JDWP::JT_THREAD;
415 }
416 }
417 {
418 mirror::Class* thread_group_class =
419 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
420 if (thread_group_class->IsAssignableFrom(c)) {
421 return JDWP::JT_THREAD_GROUP;
422 }
423 }
424 {
425 mirror::Class* class_loader_class =
426 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
427 if (class_loader_class->IsAssignableFrom(c)) {
428 return JDWP::JT_CLASS_LOADER;
429 }
430 }
431 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800432}
433
434/*
435 * Objects declared to hold Object might actually hold a more specific
436 * type. The debugger may take a special interest in these (e.g. it
437 * wants to display the contents of Strings), so we want to return an
438 * appropriate tag.
439 *
440 * Null objects are tagged JT_OBJECT.
441 */
Sebastien Hertz6995c602014-09-09 12:10:13 +0200442JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700443 return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800444}
445
446static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
447 switch (tag) {
448 case JDWP::JT_BOOLEAN:
449 case JDWP::JT_BYTE:
450 case JDWP::JT_CHAR:
451 case JDWP::JT_FLOAT:
452 case JDWP::JT_DOUBLE:
453 case JDWP::JT_INT:
454 case JDWP::JT_LONG:
455 case JDWP::JT_SHORT:
456 case JDWP::JT_VOID:
457 return true;
458 default:
459 return false;
460 }
461}
462
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100463void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700464 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700465 // No JDWP for you!
466 return;
467 }
468
Ian Rogers719d1a32014-03-06 12:13:39 -0800469 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700470 gRegistry = new ObjectRegistry;
471
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700472 // Init JDWP if the debugger is enabled. This may connect out to a
473 // debugger, passively listen for a debugger, or block waiting for a
474 // debugger.
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100475 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
Ian Rogersc0542af2014-09-03 16:16:56 -0700476 if (gJdwpState == nullptr) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800477 // We probably failed because some other process has the port already, which means that
478 // if we don't abort the user is likely to think they're talking to us when they're actually
479 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800480 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700481 }
482
483 // If a debugger has already attached, send the "welcome" message.
484 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700485 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700486 ScopedObjectAccess soa(Thread::Current());
Sebastien Hertz7d955652014-10-22 10:57:10 +0200487 gJdwpState->PostVMStart();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700488 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700489}
490
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700491void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200492 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
493 // destruction of gJdwpState).
494 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
495 gJdwpState->PostVMDeath();
496 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100497 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100498 Dispose();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700499 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800500 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700501 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800502 gRegistry = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700503}
504
Elliott Hughes767a1472011-10-26 18:49:02 -0700505void Dbg::GcDidFinish() {
506 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700507 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700508 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700509 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700510 }
511 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700512 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700513 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700514 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700515 }
516 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700517 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700518 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700519 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700520 }
521}
522
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700523void Dbg::SetJdwpAllowed(bool allowed) {
524 gJdwpAllowed = allowed;
525}
526
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700527DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700528 return Thread::Current()->GetInvokeReq();
529}
530
531Thread* Dbg::GetDebugThread() {
Ian Rogersc0542af2014-09-03 16:16:56 -0700532 return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700533}
534
535void Dbg::ClearWaitForEventThread() {
Sebastien Hertz2bf93f42015-01-09 18:44:05 +0100536 gJdwpState->ReleaseJdwpTokenForEvent();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700537}
538
539void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700540 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800541 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700542 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800543 gDisposed = false;
544}
545
Sebastien Hertzf3928792014-11-17 19:00:37 +0100546bool Dbg::RequiresDeoptimization() {
547 // We don't need deoptimization if everything runs with interpreter after
548 // enabling -Xint mode.
549 return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly();
550}
551
Elliott Hughesa2155262011-11-16 16:26:58 -0800552void Dbg::GoActive() {
553 // Enable all debugging features, including scans for breakpoints.
554 // This is a no-op if we're already active.
555 // Only called from the JDWP handler thread.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200556 if (IsDebuggerActive()) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800557 return;
558 }
559
Mathieu Chartieraa516822015-10-02 15:53:37 -0700560 Thread* const self = Thread::Current();
Elliott Hughesc0f09332012-03-26 13:27:06 -0700561 {
562 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Mathieu Chartieraa516822015-10-02 15:53:37 -0700563 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700564 CHECK_EQ(gBreakpoints.size(), 0U);
565 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800566
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100567 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700568 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100569 CHECK_EQ(deoptimization_requests_.size(), 0U);
570 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200571 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
572 CHECK_EQ(method_enter_event_ref_count_, 0U);
573 CHECK_EQ(method_exit_event_ref_count_, 0U);
574 CHECK_EQ(field_read_event_ref_count_, 0U);
575 CHECK_EQ(field_write_event_ref_count_, 0U);
576 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100577 }
578
Ian Rogers62d6c772013-02-27 08:32:07 -0800579 Runtime* runtime = Runtime::Current();
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700580 ScopedSuspendAll ssa(__FUNCTION__);
Sebastien Hertzf3928792014-11-17 19:00:37 +0100581 if (RequiresDeoptimization()) {
582 runtime->GetInstrumentation()->EnableDeoptimization();
583 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200584 instrumentation_events_ = 0;
Elliott Hughesa2155262011-11-16 16:26:58 -0800585 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800586 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700587}
588
589void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700590 CHECK(gDebuggerConnected);
591
Elliott Hughesc0f09332012-03-26 13:27:06 -0700592 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700593
Ian Rogers62d6c772013-02-27 08:32:07 -0800594 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
595 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
596 // and clear the object registry.
597 Runtime* runtime = Runtime::Current();
Ian Rogers62d6c772013-02-27 08:32:07 -0800598 Thread* self = Thread::Current();
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700599 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700600 // Required for DisableDeoptimization.
601 gc::ScopedGCCriticalSection gcs(self,
602 gc::kGcCauseInstrumentation,
603 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700604 ScopedSuspendAll ssa(__FUNCTION__);
605 ThreadState old_state = self->SetStateUnsafe(kRunnable);
606 // Debugger may not be active at this point.
607 if (IsDebuggerActive()) {
608 {
609 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
610 // This prevents us from having any pending deoptimization request when the debugger attaches
611 // to us again while no event has been requested yet.
Mathieu Chartiera6b1ead2015-10-06 10:32:38 -0700612 MutexLock mu(self, *Locks::deoptimization_lock_);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700613 deoptimization_requests_.clear();
614 full_deoptimization_event_count_ = 0U;
615 }
616 if (instrumentation_events_ != 0) {
617 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
618 instrumentation_events_);
619 instrumentation_events_ = 0;
620 }
621 if (RequiresDeoptimization()) {
622 runtime->GetInstrumentation()->DisableDeoptimization(kDbgInstrumentationKey);
623 }
624 gDebuggerActive = false;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100625 }
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700626 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100627 }
Sebastien Hertz55f65342015-01-13 22:48:34 +0100628
629 {
630 ScopedObjectAccess soa(self);
631 gRegistry->Clear();
632 }
633
634 gDebuggerConnected = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700635}
636
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100637void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) {
638 CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown);
639 gJdwpOptions = jdwp_options;
640 gJdwpConfigured = true;
641}
642
Elliott Hughesc0f09332012-03-26 13:27:06 -0700643bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700644 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700645}
646
647int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800648 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700649}
650
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700651void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700652 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700653}
654
Elliott Hughes88d63092013-01-09 09:55:54 -0800655std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700656 JDWP::JdwpError error;
657 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error);
658 if (o == nullptr) {
659 if (error == JDWP::ERR_NONE) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700660 return "null";
Ian Rogersc0542af2014-09-03 16:16:56 -0700661 } else {
662 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
663 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800664 }
665 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700666 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800667 }
Sebastien Hertz6995c602014-09-09 12:10:13 +0200668 return GetClassName(o->AsClass());
669}
670
671std::string Dbg::GetClassName(mirror::Class* klass) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200672 if (klass == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700673 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200674 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700675 std::string temp;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200676 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700677}
678
Ian Rogersc0542af2014-09-03 16:16:56 -0700679JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800680 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700681 mirror::Class* c = DecodeClass(id, &status);
682 if (c == nullptr) {
683 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800684 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800685 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700686 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800687 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800688}
689
Ian Rogersc0542af2014-09-03 16:16:56 -0700690JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800691 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700692 mirror::Class* c = DecodeClass(id, &status);
693 if (c == nullptr) {
694 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800695 return status;
696 }
697 if (c->IsInterface()) {
698 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700699 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800700 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700701 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800702 }
703 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700704}
705
Elliott Hughes436e3722012-02-17 20:01:47 -0800706JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700707 JDWP::JdwpError error;
708 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
709 if (o == nullptr) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800710 return JDWP::ERR_INVALID_OBJECT;
711 }
712 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
713 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700714}
715
Elliott Hughes436e3722012-02-17 20:01:47 -0800716JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700717 JDWP::JdwpError error;
718 mirror::Class* c = DecodeClass(id, &error);
719 if (c == nullptr) {
720 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800721 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800722
723 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
724
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700725 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
726 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800727 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700728 if ((access_flags & kAccInterface) == 0) {
729 access_flags |= kAccSuper;
730 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800731
732 expandBufAdd4BE(pReply, access_flags);
733
734 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700735}
736
Ian Rogersc0542af2014-09-03 16:16:56 -0700737JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
738 JDWP::JdwpError error;
739 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
740 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800741 return JDWP::ERR_INVALID_OBJECT;
742 }
743
744 // Ensure all threads are suspended while we read objects' lock words.
745 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100746 CHECK_EQ(self->GetState(), kRunnable);
Elliott Hughesf327e072013-01-09 16:01:26 -0800747
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700748 MonitorInfo monitor_info;
749 {
750 ScopedThreadSuspension sts(self, kSuspended);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700751 ScopedSuspendAll ssa(__FUNCTION__);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700752 monitor_info = MonitorInfo(o);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700753 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700754 if (monitor_info.owner_ != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700755 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800756 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700757 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800758 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700759 expandBufAdd4BE(reply, monitor_info.entry_count_);
760 expandBufAdd4BE(reply, monitor_info.waiters_.size());
761 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
762 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800763 }
764 return JDWP::ERR_NONE;
765}
766
Elliott Hughes734b8c62013-01-11 15:32:45 -0800767JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700768 std::vector<JDWP::ObjectId>* monitors,
769 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800770 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700771 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700772 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700773 std::vector<uint32_t>* stack_depth_vector)
Mathieu Chartier90443472015-07-16 20:32:27 -0700774 SHARED_REQUIRES(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100775 : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
776 current_stack_depth(0),
777 monitors(monitor_vector),
778 stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800779
780 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
781 // annotalysis.
782 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
783 if (!GetMethod()->IsRuntimeMethod()) {
784 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800785 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800786 }
787 return true;
788 }
789
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700790 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
Mathieu Chartier90443472015-07-16 20:32:27 -0700791 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800792 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700793 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700794 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800795 }
796
Elliott Hughes734b8c62013-01-11 15:32:45 -0800797 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700798 std::vector<JDWP::ObjectId>* const monitors;
799 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800800 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800801
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700802 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +0200803 JDWP::JdwpError error;
804 Thread* thread = DecodeThread(soa, thread_id, &error);
805 if (thread == nullptr) {
806 return error;
807 }
808 if (!IsSuspendedForDebugger(soa, thread)) {
809 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700810 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700811 std::unique_ptr<Context> context(Context::Create());
Ian Rogersc0542af2014-09-03 16:16:56 -0700812 OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700813 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800814 return JDWP::ERR_NONE;
815}
816
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100817JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700818 JDWP::ObjectId* contended_monitor) {
Elliott Hughesf9501702013-01-11 11:22:27 -0800819 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -0700820 *contended_monitor = 0;
Sebastien Hertz69206392015-04-07 15:54:25 +0200821 JDWP::JdwpError error;
822 Thread* thread = DecodeThread(soa, thread_id, &error);
823 if (thread == nullptr) {
824 return error;
Elliott Hughesf9501702013-01-11 11:22:27 -0800825 }
Sebastien Hertz69206392015-04-07 15:54:25 +0200826 if (!IsSuspendedForDebugger(soa, thread)) {
827 return JDWP::ERR_THREAD_NOT_SUSPENDED;
828 }
829 mirror::Object* contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700830 // Add() requires the thread_list_lock_ not held to avoid the lock
831 // level violation.
Ian Rogersc0542af2014-09-03 16:16:56 -0700832 *contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -0800833 return JDWP::ERR_NONE;
834}
835
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800836JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -0700837 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800838 gc::Heap* heap = Runtime::Current()->GetHeap();
839 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800840 std::vector<mirror::Class*> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700841 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800842 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700843 JDWP::JdwpError error;
844 mirror::Class* c = DecodeClass(class_ids[i], &error);
845 if (c == nullptr) {
846 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800847 }
848 classes.push_back(c);
Ian Rogersc0542af2014-09-03 16:16:56 -0700849 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800850 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700851 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800852 return JDWP::ERR_NONE;
853}
854
Ian Rogersc0542af2014-09-03 16:16:56 -0700855JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
856 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800857 gc::Heap* heap = Runtime::Current()->GetHeap();
858 // We only want reachable instances, so do a GC.
859 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700860 JDWP::JdwpError error;
861 mirror::Class* c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800862 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700863 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800864 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800865 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800866 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
867 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700868 instances->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes3b78c942013-01-15 17:35:41 -0800869 }
870 return JDWP::ERR_NONE;
871}
872
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800873JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700874 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800875 gc::Heap* heap = Runtime::Current()->GetHeap();
876 heap->CollectGarbage(false);
Ian Rogersc0542af2014-09-03 16:16:56 -0700877 JDWP::JdwpError error;
878 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
879 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800880 return JDWP::ERR_INVALID_OBJECT;
881 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800882 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800883 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800884 for (size_t i = 0; i < raw_instances.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700885 referring_objects->push_back(gRegistry->Add(raw_instances[i]));
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800886 }
887 return JDWP::ERR_NONE;
888}
889
Ian Rogersc0542af2014-09-03 16:16:56 -0700890JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
891 JDWP::JdwpError error;
892 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
893 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100894 return JDWP::ERR_INVALID_OBJECT;
895 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800896 gRegistry->DisableCollection(object_id);
897 return JDWP::ERR_NONE;
898}
899
Ian Rogersc0542af2014-09-03 16:16:56 -0700900JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
901 JDWP::JdwpError error;
902 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +0100903 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
904 // also ignores these cases and never return an error. However it's not obvious why this command
905 // should behave differently from DisableCollection and IsCollected commands. So let's be more
906 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -0700907 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100908 return JDWP::ERR_INVALID_OBJECT;
909 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800910 gRegistry->EnableCollection(object_id);
911 return JDWP::ERR_NONE;
912}
913
Ian Rogersc0542af2014-09-03 16:16:56 -0700914JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
915 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100916 if (object_id == 0) {
917 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +0100918 return JDWP::ERR_INVALID_OBJECT;
919 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100920 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
921 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -0700922 JDWP::JdwpError error;
923 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
924 if (o != nullptr) {
925 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100926 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800927 return JDWP::ERR_NONE;
928}
929
Ian Rogersc0542af2014-09-03 16:16:56 -0700930void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -0800931 gRegistry->DisposeObject(object_id, reference_count);
932}
933
Sebastien Hertz6995c602014-09-09 12:10:13 +0200934JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +0100935 DCHECK(klass != nullptr);
936 if (klass->IsArrayClass()) {
937 return JDWP::TT_ARRAY;
938 } else if (klass->IsInterface()) {
939 return JDWP::TT_INTERFACE;
940 } else {
941 return JDWP::TT_CLASS;
942 }
943}
944
Elliott Hughes88d63092013-01-09 09:55:54 -0800945JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700946 JDWP::JdwpError error;
947 mirror::Class* c = DecodeClass(class_id, &error);
948 if (c == nullptr) {
949 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800950 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800951
Sebastien Hertz4d8fd492014-03-28 16:29:41 +0100952 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
953 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -0800954 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800955 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700956}
957
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700958// Get the complete list of reference classes (i.e. all classes except
959// the primitive types).
960// Returns a newly-allocated buffer full of RefTypeId values.
961class ClassListCreator : public ClassVisitor {
962 public:
963 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes) : classes_(classes) {}
964
965 bool Visit(mirror::Class* c) OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
966 if (!c->IsPrimitive()) {
967 classes_->push_back(Dbg::GetObjectRegistry()->AddRefType(c));
968 }
969 return true;
970 }
971
972 private:
973 std::vector<JDWP::RefTypeId>* const classes_;
974};
975
Ian Rogersc0542af2014-09-03 16:16:56 -0700976void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800977 ClassListCreator clc(classes);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700978 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700979}
980
Ian Rogers1ff3c982014-08-12 02:30:58 -0700981JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
982 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700983 JDWP::JdwpError error;
984 mirror::Class* c = DecodeClass(class_id, &error);
985 if (c == nullptr) {
986 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800987 }
988
Elliott Hughesa2155262011-11-16 16:26:58 -0800989 if (c->IsArrayClass()) {
990 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
991 *pTypeTag = JDWP::TT_ARRAY;
992 } else {
993 if (c->IsErroneous()) {
994 *pStatus = JDWP::CS_ERROR;
995 } else {
996 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
997 }
998 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
999 }
1000
Ian Rogersc0542af2014-09-03 16:16:56 -07001001 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001002 std::string temp;
1003 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001004 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001005 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001006}
1007
Ian Rogersc0542af2014-09-03 16:16:56 -07001008void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001009 std::vector<mirror::Class*> classes;
Igor Murashkinb1d8c312015-08-04 11:18:43 -07001010 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001011 ids->clear();
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001012 for (size_t i = 0; i < classes.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001013 ids->push_back(gRegistry->Add(classes[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001014 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001015}
1016
Ian Rogersc0542af2014-09-03 16:16:56 -07001017JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1018 JDWP::JdwpError error;
1019 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1020 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001021 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001022 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001023
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001024 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001025 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001026
1027 expandBufAdd1(pReply, type_tag);
1028 expandBufAddRefTypeId(pReply, type_id);
1029
1030 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001031}
1032
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001033JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001034 JDWP::JdwpError error;
1035 mirror::Class* c = DecodeClass(class_id, &error);
1036 if (c == nullptr) {
1037 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001038 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001039 std::string temp;
1040 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001041 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001042}
1043
Ian Rogersc0542af2014-09-03 16:16:56 -07001044JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1045 JDWP::JdwpError error;
1046 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001047 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001048 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001049 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001050 const char* source_file = c->GetSourceFile();
1051 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001052 return JDWP::ERR_ABSENT_INFORMATION;
1053 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001054 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001055 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001056}
1057
Ian Rogersc0542af2014-09-03 16:16:56 -07001058JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001059 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001060 JDWP::JdwpError error;
1061 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1062 if (error != JDWP::ERR_NONE) {
1063 *tag = JDWP::JT_VOID;
1064 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001065 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001066 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001067 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001068}
1069
Elliott Hughesaed4be92011-12-02 16:16:23 -08001070size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001071 switch (tag) {
1072 case JDWP::JT_VOID:
1073 return 0;
1074 case JDWP::JT_BYTE:
1075 case JDWP::JT_BOOLEAN:
1076 return 1;
1077 case JDWP::JT_CHAR:
1078 case JDWP::JT_SHORT:
1079 return 2;
1080 case JDWP::JT_FLOAT:
1081 case JDWP::JT_INT:
1082 return 4;
1083 case JDWP::JT_ARRAY:
1084 case JDWP::JT_OBJECT:
1085 case JDWP::JT_STRING:
1086 case JDWP::JT_THREAD:
1087 case JDWP::JT_THREAD_GROUP:
1088 case JDWP::JT_CLASS_LOADER:
1089 case JDWP::JT_CLASS_OBJECT:
1090 return sizeof(JDWP::ObjectId);
1091 case JDWP::JT_DOUBLE:
1092 case JDWP::JT_LONG:
1093 return 8;
1094 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001095 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001096 return -1;
1097 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001098}
1099
Ian Rogersc0542af2014-09-03 16:16:56 -07001100JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1101 JDWP::JdwpError error;
1102 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1103 if (a == nullptr) {
1104 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001105 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001106 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001107 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001108}
1109
Elliott Hughes88d63092013-01-09 09:55:54 -08001110JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001111 JDWP::JdwpError error;
1112 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001113 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001114 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001115 }
Elliott Hughes24437992011-11-30 14:49:33 -08001116
1117 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1118 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001119 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001120 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001121 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1122 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001123 expandBufAdd4BE(pReply, count);
1124
Ian Rogers1ff3c982014-08-12 02:30:58 -07001125 if (IsPrimitiveTag(element_tag)) {
1126 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001127 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1128 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001129 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001130 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1131 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001132 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001133 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1134 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001135 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001136 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1137 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001138 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001139 memcpy(dst, &src[offset * width], count * width);
1140 }
1141 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001142 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001143 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001144 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001145 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001146 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001147 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001148 expandBufAdd1(pReply, specific_tag);
1149 expandBufAddObjectId(pReply, gRegistry->Add(element));
1150 }
1151 }
1152
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001153 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001154}
1155
Ian Rogersef7d42f2014-01-06 12:55:46 -08001156template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001157static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001158 NO_THREAD_SAFETY_ANALYSIS {
1159 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001160 DCHECK(a->GetClass()->IsPrimitiveArray());
1161
Ian Rogersef7d42f2014-01-06 12:55:46 -08001162 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001163 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001164 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001165 }
1166}
1167
Elliott Hughes88d63092013-01-09 09:55:54 -08001168JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001169 JDWP::Request* request) {
1170 JDWP::JdwpError error;
1171 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1172 if (dst == nullptr) {
1173 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001174 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001175
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001176 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001177 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001178 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001179 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001180 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001181
Ian Rogers1ff3c982014-08-12 02:30:58 -07001182 if (IsPrimitiveTag(element_tag)) {
1183 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001184 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001185 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001186 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001187 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001188 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001189 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001190 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001191 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001192 }
1193 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001194 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001195 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001196 JDWP::ObjectId id = request->ReadObjectId();
Ian Rogersc0542af2014-09-03 16:16:56 -07001197 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1198 if (error != JDWP::ERR_NONE) {
1199 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001200 }
Sebastien Hertz2e1c16d2015-08-28 11:57:49 +02001201 // Check if the object's type is compatible with the array's type.
1202 if (o != nullptr && !o->InstanceOf(oa->GetClass()->GetComponentType())) {
1203 return JDWP::ERR_TYPE_MISMATCH;
1204 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001205 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001206 }
1207 }
1208
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001209 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001210}
1211
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001212JDWP::JdwpError Dbg::CreateString(const std::string& str, JDWP::ObjectId* new_string_id) {
1213 Thread* self = Thread::Current();
1214 mirror::String* new_string = mirror::String::AllocFromModifiedUtf8(self, str.c_str());
1215 if (new_string == nullptr) {
1216 DCHECK(self->IsExceptionPending());
1217 self->ClearException();
1218 LOG(ERROR) << "Could not allocate string";
1219 *new_string_id = 0;
1220 return JDWP::ERR_OUT_OF_MEMORY;
1221 }
1222 *new_string_id = gRegistry->Add(new_string);
1223 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001224}
1225
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001226JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001227 JDWP::JdwpError error;
1228 mirror::Class* c = DecodeClass(class_id, &error);
1229 if (c == nullptr) {
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001230 *new_object_id = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -07001231 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001232 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001233 Thread* self = Thread::Current();
Sebastien Hertz56d5e502015-11-03 17:38:35 +01001234 mirror::Object* new_object;
1235 if (c->IsStringClass()) {
1236 // Special case for java.lang.String.
1237 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
1238 mirror::SetStringCountVisitor visitor(0);
1239 new_object = mirror::String::Alloc<true>(self, 0, allocator_type, visitor);
1240 } else {
1241 new_object = c->AllocObject(self);
1242 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001243 if (new_object == nullptr) {
1244 DCHECK(self->IsExceptionPending());
1245 self->ClearException();
1246 LOG(ERROR) << "Could not allocate object of type " << PrettyDescriptor(c);
1247 *new_object_id = 0;
1248 return JDWP::ERR_OUT_OF_MEMORY;
1249 }
1250 *new_object_id = gRegistry->Add(new_object);
Elliott Hughes436e3722012-02-17 20:01:47 -08001251 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001252}
1253
Elliott Hughesbf13d362011-12-08 15:51:37 -08001254/*
1255 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1256 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001257JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001258 JDWP::ObjectId* new_array_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001259 JDWP::JdwpError error;
1260 mirror::Class* c = DecodeClass(array_class_id, &error);
1261 if (c == nullptr) {
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001262 *new_array_id = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -07001263 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001264 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001265 Thread* self = Thread::Current();
1266 gc::Heap* heap = Runtime::Current()->GetHeap();
1267 mirror::Array* new_array = mirror::Array::Alloc<true>(self, c, length,
1268 c->GetComponentSizeShift(),
1269 heap->GetCurrentAllocator());
1270 if (new_array == nullptr) {
1271 DCHECK(self->IsExceptionPending());
1272 self->ClearException();
1273 LOG(ERROR) << "Could not allocate array of type " << PrettyDescriptor(c);
1274 *new_array_id = 0;
1275 return JDWP::ERR_OUT_OF_MEMORY;
1276 }
1277 *new_array_id = gRegistry->Add(new_array);
Elliott Hughes436e3722012-02-17 20:01:47 -08001278 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001279}
1280
Mathieu Chartierc7853442015-03-27 14:35:38 -07001281JDWP::FieldId Dbg::ToFieldId(const ArtField* f) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001282 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001283}
1284
Mathieu Chartiere401d142015-04-22 13:56:20 -07001285static JDWP::MethodId ToMethodId(const ArtMethod* m)
Mathieu Chartier90443472015-07-16 20:32:27 -07001286 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001287 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001288}
1289
Mathieu Chartierc7853442015-03-27 14:35:38 -07001290static ArtField* FromFieldId(JDWP::FieldId fid)
Mathieu Chartier90443472015-07-16 20:32:27 -07001291 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001292 return reinterpret_cast<ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001293}
1294
Mathieu Chartiere401d142015-04-22 13:56:20 -07001295static ArtMethod* FromMethodId(JDWP::MethodId mid)
Mathieu Chartier90443472015-07-16 20:32:27 -07001296 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001297 return reinterpret_cast<ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001298}
1299
Sebastien Hertz6995c602014-09-09 12:10:13 +02001300bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1301 CHECK(event_thread != nullptr);
1302 JDWP::JdwpError error;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001303 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(
1304 expected_thread_id, &error);
Sebastien Hertz6995c602014-09-09 12:10:13 +02001305 return expected_thread_peer == event_thread->GetPeer();
1306}
1307
1308bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1309 const JDWP::EventLocation& event_location) {
1310 if (expected_location.dex_pc != event_location.dex_pc) {
1311 return false;
1312 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07001313 ArtMethod* m = FromMethodId(expected_location.method_id);
Sebastien Hertz6995c602014-09-09 12:10:13 +02001314 return m == event_location.method;
1315}
1316
1317bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001318 if (event_class == nullptr) {
1319 return false;
1320 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02001321 JDWP::JdwpError error;
1322 mirror::Class* expected_class = DecodeClass(class_id, &error);
1323 CHECK(expected_class != nullptr);
1324 return expected_class->IsAssignableFrom(event_class);
1325}
1326
1327bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001328 ArtField* event_field) {
1329 ArtField* expected_field = FromFieldId(expected_field_id);
Sebastien Hertz6995c602014-09-09 12:10:13 +02001330 if (expected_field != event_field) {
1331 return false;
1332 }
1333 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1334}
1335
1336bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1337 JDWP::JdwpError error;
1338 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error);
1339 return modifier_instance == event_instance;
1340}
1341
Mathieu Chartier90443472015-07-16 20:32:27 -07001342void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, ArtMethod* m, uint32_t dex_pc) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001343 if (m == nullptr) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001344 memset(location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001345 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001346 mirror::Class* c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001347 location->type_tag = GetTypeTag(c);
1348 location->class_id = gRegistry->AddRefType(c);
1349 location->method_id = ToMethodId(m);
1350 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001351 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001352}
1353
Ian Rogersc0542af2014-09-03 16:16:56 -07001354std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001355 ArtMethod* m = FromMethodId(method_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001356 if (m == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001357 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001358 }
Sebastien Hertz415fd082015-06-01 11:42:27 +02001359 return m->GetInterfaceMethodIfProxy(sizeof(void*))->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001360}
1361
Ian Rogersc0542af2014-09-03 16:16:56 -07001362std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001363 ArtField* f = FromFieldId(field_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001364 if (f == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001365 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001366 }
1367 return f->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001368}
1369
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001370/*
1371 * Augment the access flags for synthetic methods and fields by setting
1372 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1373 * flags not specified by the Java programming language.
1374 */
1375static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1376 accessFlags &= kAccJavaFlagsMask;
1377 if ((accessFlags & kAccSynthetic) != 0) {
1378 accessFlags |= 0xf0000000;
1379 }
1380 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001381}
1382
Elliott Hughesdbb40792011-11-18 17:05:22 -08001383/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001384 * Circularly shifts registers so that arguments come first. Debuggers
1385 * expect slots to begin with arguments, but dex code places them at
1386 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001387 */
Mathieu Chartiere401d142015-04-22 13:56:20 -07001388static uint16_t MangleSlot(uint16_t slot, ArtMethod* m)
Mathieu Chartier90443472015-07-16 20:32:27 -07001389 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001390 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001391 if (code_item == nullptr) {
1392 // We should not get here for a method without code (native, proxy or abstract). Log it and
1393 // return the slot as is since all registers are arguments.
1394 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1395 return slot;
1396 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001397 uint16_t ins_size = code_item->ins_size_;
1398 uint16_t locals_size = code_item->registers_size_ - ins_size;
1399 if (slot >= locals_size) {
1400 return slot - locals_size;
1401 } else {
1402 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001403 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001404}
1405
Jeff Haob7cefc72013-11-14 14:51:09 -08001406/*
1407 * Circularly shifts registers so that arguments come last. Reverts
1408 * slots to dex style argument placement.
1409 */
Mathieu Chartiere401d142015-04-22 13:56:20 -07001410static uint16_t DemangleSlot(uint16_t slot, ArtMethod* m, JDWP::JdwpError* error)
Mathieu Chartier90443472015-07-16 20:32:27 -07001411 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001412 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001413 if (code_item == nullptr) {
1414 // We should not get here for a method without code (native, proxy or abstract). Log it and
1415 // return the slot as is since all registers are arguments.
1416 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001417 uint16_t vreg_count = ArtMethod::NumArgRegisters(m->GetShorty());
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001418 if (slot < vreg_count) {
1419 *error = JDWP::ERR_NONE;
1420 return slot;
1421 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001422 } else {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001423 if (slot < code_item->registers_size_) {
1424 uint16_t ins_size = code_item->ins_size_;
1425 uint16_t locals_size = code_item->registers_size_ - ins_size;
1426 *error = JDWP::ERR_NONE;
1427 return (slot < ins_size) ? slot + locals_size : slot - ins_size;
1428 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001429 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001430
1431 // Slot is invalid in the method.
1432 LOG(ERROR) << "Invalid local slot " << slot << " for method " << PrettyMethod(m);
1433 *error = JDWP::ERR_INVALID_SLOT;
1434 return DexFile::kDexNoIndex16;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001435}
1436
Mathieu Chartier90443472015-07-16 20:32:27 -07001437JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic,
1438 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001439 JDWP::JdwpError error;
1440 mirror::Class* c = DecodeClass(class_id, &error);
1441 if (c == nullptr) {
1442 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001443 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001444
1445 size_t instance_field_count = c->NumInstanceFields();
1446 size_t static_field_count = c->NumStaticFields();
1447
1448 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1449
1450 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001451 ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) :
1452 c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001453 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001454 expandBufAddUtf8String(pReply, f->GetName());
1455 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001456 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001457 static const char genericSignature[1] = "";
1458 expandBufAddUtf8String(pReply, genericSignature);
1459 }
1460 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1461 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001462 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001463}
1464
Elliott Hughes88d63092013-01-09 09:55:54 -08001465JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001466 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001467 JDWP::JdwpError error;
1468 mirror::Class* c = DecodeClass(class_id, &error);
1469 if (c == nullptr) {
1470 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001471 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001472
1473 size_t direct_method_count = c->NumDirectMethods();
1474 size_t virtual_method_count = c->NumVirtualMethods();
1475
1476 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1477
Mathieu Chartiere401d142015-04-22 13:56:20 -07001478 auto* cl = Runtime::Current()->GetClassLinker();
1479 auto ptr_size = cl->GetImagePointerSize();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001480 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001481 ArtMethod* m = i < direct_method_count ?
1482 c->GetDirectMethod(i, ptr_size) : c->GetVirtualMethod(i - direct_method_count, ptr_size);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001483 expandBufAddMethodId(pReply, ToMethodId(m));
Sebastien Hertz415fd082015-06-01 11:42:27 +02001484 expandBufAddUtf8String(pReply, m->GetInterfaceMethodIfProxy(sizeof(void*))->GetName());
1485 expandBufAddUtf8String(pReply,
1486 m->GetInterfaceMethodIfProxy(sizeof(void*))->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001487 if (with_generic) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001488 const char* generic_signature = "";
1489 expandBufAddUtf8String(pReply, generic_signature);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001490 }
1491 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1492 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001493 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001494}
1495
Elliott Hughes88d63092013-01-09 09:55:54 -08001496JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001497 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001498 Thread* self = Thread::Current();
1499 StackHandleScope<1> hs(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07001500 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error)));
Mathieu Chartierf8322842014-05-16 10:59:25 -07001501 if (c.Get() == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001502 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001503 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001504 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001505 expandBufAdd4BE(pReply, interface_count);
1506 for (size_t i = 0; i < interface_count; ++i) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001507 expandBufAddRefTypeId(pReply,
1508 gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001509 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001510 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001511}
1512
Ian Rogersc0542af2014-09-03 16:16:56 -07001513void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001514 struct DebugCallbackContext {
1515 int numItems;
1516 JDWP::ExpandBuf* pReply;
1517
Elliott Hughes2435a572012-02-17 16:07:41 -08001518 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001519 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1520 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001521 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001522 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001523 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001524 }
1525 };
Mathieu Chartiere401d142015-04-22 13:56:20 -07001526 ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001527 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001528 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001529 if (code_item == nullptr) {
1530 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001531 start = -1;
1532 end = -1;
1533 } else {
1534 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001535 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001536 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001537 }
1538
1539 expandBufAdd8BE(pReply, start);
1540 expandBufAdd8BE(pReply, end);
1541
1542 // Add numLines later
1543 size_t numLinesOffset = expandBufGetLength(pReply);
1544 expandBufAdd4BE(pReply, 0);
1545
1546 DebugCallbackContext context;
1547 context.numItems = 0;
1548 context.pReply = pReply;
1549
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001550 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001551 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07001552 DebugCallbackContext::Callback, nullptr, &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001553 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001554
1555 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001556}
1557
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001558void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1559 JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001560 struct DebugCallbackContext {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001561 ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001562 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001563 size_t variable_count;
1564 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001565
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001566 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress,
1567 const char* name, const char* descriptor, const char* signature)
Mathieu Chartier90443472015-07-16 20:32:27 -07001568 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001569 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1570
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001571 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1572 pContext->variable_count, startAddress, endAddress - startAddress,
1573 name, descriptor, signature, slot,
1574 MangleSlot(slot, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001575
Jeff Haob7cefc72013-11-14 14:51:09 -08001576 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001577
Elliott Hughesdbb40792011-11-18 17:05:22 -08001578 expandBufAdd8BE(pContext->pReply, startAddress);
1579 expandBufAddUtf8String(pContext->pReply, name);
1580 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001581 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001582 expandBufAddUtf8String(pContext->pReply, signature);
1583 }
1584 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1585 expandBufAdd4BE(pContext->pReply, slot);
1586
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001587 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001588 }
1589 };
Mathieu Chartiere401d142015-04-22 13:56:20 -07001590 ArtMethod* m = FromMethodId(method_id);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001591
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001592 // arg_count considers doubles and longs to take 2 units.
1593 // variable_count considers everything to take 1 unit.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001594 std::string shorty(m->GetShorty());
Mathieu Chartiere401d142015-04-22 13:56:20 -07001595 expandBufAdd4BE(pReply, ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001596
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001597 // We don't know the total number of variables yet, so leave a blank and update it later.
1598 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001599 expandBufAdd4BE(pReply, 0);
1600
1601 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001602 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001603 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001604 context.variable_count = 0;
1605 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001606
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001607 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001608 if (code_item != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001609 m->GetDexFile()->DecodeDebugInfo(
Ian Rogersc0542af2014-09-03 16:16:56 -07001610 code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001611 &context);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001612 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001613
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001614 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001615}
1616
Jeff Hao579b0242013-11-18 13:16:49 -08001617void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1618 JDWP::ExpandBuf* pReply) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001619 ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001620 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001621 OutputJValue(tag, return_value, pReply);
1622}
1623
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001624void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1625 JDWP::ExpandBuf* pReply) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001626 ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001627 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001628 OutputJValue(tag, field_value, pReply);
1629}
1630
Elliott Hughes9777ba22013-01-17 09:04:19 -08001631JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001632 std::vector<uint8_t>* bytecodes) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001633 ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001634 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001635 return JDWP::ERR_INVALID_METHODID;
1636 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001637 const DexFile::CodeItem* code_item = m->GetCodeItem();
Elliott Hughes9777ba22013-01-17 09:04:19 -08001638 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1639 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1640 const uint8_t* end = begin + byte_count;
1641 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001642 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001643 }
1644 return JDWP::ERR_NONE;
1645}
1646
Elliott Hughes88d63092013-01-09 09:55:54 -08001647JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001648 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001649}
1650
Elliott Hughes88d63092013-01-09 09:55:54 -08001651JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001652 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001653}
1654
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001655static JValue GetArtFieldValue(ArtField* f, mirror::Object* o)
Mathieu Chartier90443472015-07-16 20:32:27 -07001656 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001657 Primitive::Type fieldType = f->GetTypeAsPrimitiveType();
1658 JValue field_value;
1659 switch (fieldType) {
1660 case Primitive::kPrimBoolean:
1661 field_value.SetZ(f->GetBoolean(o));
1662 return field_value;
1663
1664 case Primitive::kPrimByte:
1665 field_value.SetB(f->GetByte(o));
1666 return field_value;
1667
1668 case Primitive::kPrimChar:
1669 field_value.SetC(f->GetChar(o));
1670 return field_value;
1671
1672 case Primitive::kPrimShort:
1673 field_value.SetS(f->GetShort(o));
1674 return field_value;
1675
1676 case Primitive::kPrimInt:
1677 case Primitive::kPrimFloat:
1678 // Int and Float must be treated as 32-bit values in JDWP.
1679 field_value.SetI(f->GetInt(o));
1680 return field_value;
1681
1682 case Primitive::kPrimLong:
1683 case Primitive::kPrimDouble:
1684 // Long and Double must be treated as 64-bit values in JDWP.
1685 field_value.SetJ(f->GetLong(o));
1686 return field_value;
1687
1688 case Primitive::kPrimNot:
1689 field_value.SetL(f->GetObject(o));
1690 return field_value;
1691
1692 case Primitive::kPrimVoid:
1693 LOG(FATAL) << "Attempt to read from field of type 'void'";
1694 UNREACHABLE();
1695 }
1696 LOG(FATAL) << "Attempt to read from field of unknown type";
1697 UNREACHABLE();
1698}
1699
Elliott Hughes88d63092013-01-09 09:55:54 -08001700static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1701 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001702 bool is_static)
Mathieu Chartier90443472015-07-16 20:32:27 -07001703 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001704 JDWP::JdwpError error;
1705 mirror::Class* c = DecodeClass(ref_type_id, &error);
1706 if (ref_type_id != 0 && c == nullptr) {
1707 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001708 }
1709
Sebastien Hertz6995c602014-09-09 12:10:13 +02001710 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001711 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001712 return JDWP::ERR_INVALID_OBJECT;
1713 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07001714 ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001715
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001716 mirror::Class* receiver_class = c;
Ian Rogersc0542af2014-09-03 16:16:56 -07001717 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001718 receiver_class = o->GetClass();
1719 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001720 // TODO: should we give up now if receiver_class is null?
Ian Rogersc0542af2014-09-03 16:16:56 -07001721 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001722 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001723 return JDWP::ERR_INVALID_FIELDID;
1724 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001725
Elliott Hughes0cf74332012-02-23 23:14:00 -08001726 // The RI only enforces the static/non-static mismatch in one direction.
1727 // TODO: should we change the tests and check both?
1728 if (is_static) {
1729 if (!f->IsStatic()) {
1730 return JDWP::ERR_INVALID_FIELDID;
1731 }
1732 } else {
1733 if (f->IsStatic()) {
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001734 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.GetValues"
1735 << " on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001736 }
1737 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001738 if (f->IsStatic()) {
1739 o = f->GetDeclaringClass();
1740 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001741
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001742 JValue field_value(GetArtFieldValue(f, o));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001743 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001744 Dbg::OutputJValue(tag, &field_value, pReply);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001745 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001746}
1747
Elliott Hughes88d63092013-01-09 09:55:54 -08001748JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001749 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001750 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001751}
1752
Ian Rogersc0542af2014-09-03 16:16:56 -07001753JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1754 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001755 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001756}
1757
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001758static JDWP::JdwpError SetArtFieldValue(ArtField* f, mirror::Object* o, uint64_t value, int width)
Mathieu Chartier90443472015-07-16 20:32:27 -07001759 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001760 Primitive::Type fieldType = f->GetTypeAsPrimitiveType();
1761 // Debugging only happens at runtime so we know we are not running in a transaction.
1762 static constexpr bool kNoTransactionMode = false;
1763 switch (fieldType) {
1764 case Primitive::kPrimBoolean:
1765 CHECK_EQ(width, 1);
1766 f->SetBoolean<kNoTransactionMode>(o, static_cast<uint8_t>(value));
1767 return JDWP::ERR_NONE;
1768
1769 case Primitive::kPrimByte:
1770 CHECK_EQ(width, 1);
1771 f->SetByte<kNoTransactionMode>(o, static_cast<uint8_t>(value));
1772 return JDWP::ERR_NONE;
1773
1774 case Primitive::kPrimChar:
1775 CHECK_EQ(width, 2);
1776 f->SetChar<kNoTransactionMode>(o, static_cast<uint16_t>(value));
1777 return JDWP::ERR_NONE;
1778
1779 case Primitive::kPrimShort:
1780 CHECK_EQ(width, 2);
1781 f->SetShort<kNoTransactionMode>(o, static_cast<int16_t>(value));
1782 return JDWP::ERR_NONE;
1783
1784 case Primitive::kPrimInt:
1785 case Primitive::kPrimFloat:
1786 CHECK_EQ(width, 4);
1787 // Int and Float must be treated as 32-bit values in JDWP.
1788 f->SetInt<kNoTransactionMode>(o, static_cast<int32_t>(value));
1789 return JDWP::ERR_NONE;
1790
1791 case Primitive::kPrimLong:
1792 case Primitive::kPrimDouble:
1793 CHECK_EQ(width, 8);
1794 // Long and Double must be treated as 64-bit values in JDWP.
1795 f->SetLong<kNoTransactionMode>(o, value);
1796 return JDWP::ERR_NONE;
1797
1798 case Primitive::kPrimNot: {
1799 JDWP::JdwpError error;
1800 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error);
1801 if (error != JDWP::ERR_NONE) {
1802 return JDWP::ERR_INVALID_OBJECT;
1803 }
1804 if (v != nullptr) {
1805 mirror::Class* field_type;
1806 {
1807 StackHandleScope<2> hs(Thread::Current());
1808 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1809 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
1810 field_type = f->GetType<true>();
1811 }
1812 if (!field_type->IsAssignableFrom(v->GetClass())) {
1813 return JDWP::ERR_INVALID_OBJECT;
1814 }
1815 }
1816 f->SetObject<kNoTransactionMode>(o, v);
1817 return JDWP::ERR_NONE;
1818 }
1819
1820 case Primitive::kPrimVoid:
1821 LOG(FATAL) << "Attempt to write to field of type 'void'";
1822 UNREACHABLE();
1823 }
1824 LOG(FATAL) << "Attempt to write to field of unknown type";
1825 UNREACHABLE();
1826}
1827
Elliott Hughes88d63092013-01-09 09:55:54 -08001828static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001829 uint64_t value, int width, bool is_static)
Mathieu Chartier90443472015-07-16 20:32:27 -07001830 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001831 JDWP::JdwpError error;
Sebastien Hertz6995c602014-09-09 12:10:13 +02001832 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07001833 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001834 return JDWP::ERR_INVALID_OBJECT;
1835 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07001836 ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001837
1838 // The RI only enforces the static/non-static mismatch in one direction.
1839 // TODO: should we change the tests and check both?
1840 if (is_static) {
1841 if (!f->IsStatic()) {
1842 return JDWP::ERR_INVALID_FIELDID;
1843 }
1844 } else {
1845 if (f->IsStatic()) {
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001846 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues"
1847 << " on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001848 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001849 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001850 if (f->IsStatic()) {
1851 o = f->GetDeclaringClass();
1852 }
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001853 return SetArtFieldValue(f, o, value, width);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001854}
1855
Elliott Hughes88d63092013-01-09 09:55:54 -08001856JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001857 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001858 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001859}
1860
Elliott Hughes88d63092013-01-09 09:55:54 -08001861JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1862 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001863}
1864
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001865JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001866 JDWP::JdwpError error;
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02001867 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error);
1868 if (error != JDWP::ERR_NONE) {
1869 return error;
1870 }
1871 if (obj == nullptr) {
1872 return JDWP::ERR_INVALID_OBJECT;
1873 }
1874 {
1875 ScopedObjectAccessUnchecked soa(Thread::Current());
1876 mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String);
1877 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
1878 // This isn't a string.
1879 return JDWP::ERR_INVALID_STRING;
1880 }
1881 }
1882 *str = obj->AsString()->ToModifiedUtf8();
1883 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001884}
1885
Jeff Hao579b0242013-11-18 13:16:49 -08001886void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1887 if (IsPrimitiveTag(tag)) {
1888 expandBufAdd1(pReply, tag);
1889 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1890 expandBufAdd1(pReply, return_value->GetI());
1891 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1892 expandBufAdd2BE(pReply, return_value->GetI());
1893 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1894 expandBufAdd4BE(pReply, return_value->GetI());
1895 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1896 expandBufAdd8BE(pReply, return_value->GetJ());
1897 } else {
1898 CHECK_EQ(tag, JDWP::JT_VOID);
1899 }
1900 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001901 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001902 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001903 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001904 expandBufAddObjectId(pReply, gRegistry->Add(value));
1905 }
1906}
1907
Ian Rogersc0542af2014-09-03 16:16:56 -07001908JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001909 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001910 JDWP::JdwpError error;
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001911 DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08001912 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1913 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001914 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001915
1916 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07001917 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1918 CHECK(thread_object != nullptr) << error;
Mathieu Chartierc7853442015-03-27 14:35:38 -07001919 ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001920 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1921 mirror::String* s =
1922 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Ian Rogersc0542af2014-09-03 16:16:56 -07001923 if (s != nullptr) {
1924 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08001925 }
1926 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001927}
1928
Elliott Hughes221229c2013-01-08 18:17:50 -08001929JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02001930 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001931 JDWP::JdwpError error;
1932 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
1933 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001934 return JDWP::ERR_INVALID_OBJECT;
1935 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001936 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001937 // Okay, so it's an object, but is it actually a thread?
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001938 DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08001939 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1940 // Zombie threads are in the null group.
1941 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001942 error = JDWP::ERR_NONE;
1943 } else if (error == JDWP::ERR_NONE) {
1944 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1945 CHECK(c != nullptr);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001946 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001947 CHECK(f != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001948 mirror::Object* group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07001949 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001950 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1951 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001952 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001953 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001954}
1955
Sebastien Hertza06430c2014-09-15 19:21:30 +02001956static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
1957 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
Mathieu Chartier90443472015-07-16 20:32:27 -07001958 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02001959 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,
1960 error);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001961 if (*error != JDWP::ERR_NONE) {
1962 return nullptr;
1963 }
1964 if (thread_group == nullptr) {
1965 *error = JDWP::ERR_INVALID_OBJECT;
1966 return nullptr;
1967 }
Ian Rogers98379392014-02-24 16:53:16 -08001968 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1969 CHECK(c != nullptr);
Sebastien Hertza06430c2014-09-15 19:21:30 +02001970 if (!c->IsAssignableFrom(thread_group->GetClass())) {
1971 // This is not a java.lang.ThreadGroup.
1972 *error = JDWP::ERR_INVALID_THREAD_GROUP;
1973 return nullptr;
1974 }
1975 *error = JDWP::ERR_NONE;
1976 return thread_group;
1977}
1978
1979JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
1980 ScopedObjectAccessUnchecked soa(Thread::Current());
1981 JDWP::JdwpError error;
1982 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
1983 if (error != JDWP::ERR_NONE) {
1984 return error;
1985 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001986 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupName");
Mathieu Chartierc7853442015-03-27 14:35:38 -07001987 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_name);
Ian Rogersc0542af2014-09-03 16:16:56 -07001988 CHECK(f != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001989 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Sebastien Hertza06430c2014-09-15 19:21:30 +02001990
1991 std::string thread_group_name(s->ToModifiedUtf8());
1992 expandBufAddUtf8String(pReply, thread_group_name);
1993 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001994}
1995
Sebastien Hertza06430c2014-09-15 19:21:30 +02001996JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08001997 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001998 JDWP::JdwpError error;
Sebastien Hertza06430c2014-09-15 19:21:30 +02001999 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2000 if (error != JDWP::ERR_NONE) {
2001 return error;
2002 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002003 mirror::Object* parent;
2004 {
2005 ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupParent");
Mathieu Chartierc7853442015-03-27 14:35:38 -07002006 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_parent);
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002007 CHECK(f != nullptr);
2008 parent = f->GetObject(thread_group);
2009 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002010 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
2011 expandBufAddObjectId(pReply, parent_group_id);
2012 return JDWP::ERR_NONE;
2013}
2014
2015static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group,
2016 std::vector<JDWP::ObjectId>* child_thread_group_ids)
Mathieu Chartier90443472015-07-16 20:32:27 -07002017 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02002018 CHECK(thread_group != nullptr);
2019
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +00002020 // Get the int "ngroups" count of this thread group...
2021 ArtField* ngroups_field = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_ngroups);
2022 CHECK(ngroups_field != nullptr);
2023 const int32_t size = ngroups_field->GetInt(thread_group);
2024 if (size == 0) {
2025 return;
Sebastien Hertze49e1952014-10-13 11:27:13 +02002026 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002027
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +00002028 // Get the ThreadGroup[] "groups" out of this thread group...
2029 ArtField* groups_field = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_groups);
2030 mirror::Object* groups_array = groups_field->GetObject(thread_group);
2031
2032 CHECK(groups_array != nullptr);
2033 CHECK(groups_array->IsObjectArray());
2034
2035 mirror::ObjectArray<mirror::Object>* groups_array_as_array =
2036 groups_array->AsObjectArray<mirror::Object>();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002037
2038 // Copy the first 'size' elements out of the array into the result.
Sebastien Hertz6995c602014-09-09 12:10:13 +02002039 ObjectRegistry* registry = Dbg::GetObjectRegistry();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002040 for (int32_t i = 0; i < size; ++i) {
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +00002041 child_thread_group_ids->push_back(registry->Add(groups_array_as_array->Get(i)));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002042 }
2043}
2044
2045JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2046 JDWP::ExpandBuf* pReply) {
2047 ScopedObjectAccessUnchecked soa(Thread::Current());
2048 JDWP::JdwpError error;
2049 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2050 if (error != JDWP::ERR_NONE) {
2051 return error;
2052 }
2053
2054 // Add child threads.
2055 {
2056 std::vector<JDWP::ObjectId> child_thread_ids;
2057 GetThreads(thread_group, &child_thread_ids);
2058 expandBufAdd4BE(pReply, child_thread_ids.size());
2059 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2060 expandBufAddObjectId(pReply, child_thread_id);
2061 }
2062 }
2063
2064 // Add child thread groups.
2065 {
2066 std::vector<JDWP::ObjectId> child_thread_groups_ids;
2067 GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids);
2068 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2069 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2070 expandBufAddObjectId(pReply, child_thread_group_id);
2071 }
2072 }
2073
2074 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002075}
2076
2077JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002078 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07002079 ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002080 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002081 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002082}
2083
Jeff Hao920af3e2013-08-28 15:46:38 -07002084JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2085 switch (state) {
2086 case kBlocked:
2087 return JDWP::TS_MONITOR;
2088 case kNative:
2089 case kRunnable:
2090 case kSuspended:
2091 return JDWP::TS_RUNNING;
2092 case kSleeping:
2093 return JDWP::TS_SLEEPING;
2094 case kStarting:
2095 case kTerminated:
2096 return JDWP::TS_ZOMBIE;
2097 case kTimedWaiting:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002098 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002099 case kWaitingForDebuggerSend:
2100 case kWaitingForDebuggerSuspension:
2101 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002102 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002103 case kWaitingForGcToComplete:
Mathieu Chartierb43390c2015-05-12 10:47:11 -07002104 case kWaitingForGetObjectsAllocated:
Jeff Hao920af3e2013-08-28 15:46:38 -07002105 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002106 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002107 case kWaitingForSignalCatcherOutput:
Hiroshi Yamauchi0c8c3032015-01-16 16:54:35 -08002108 case kWaitingForVisitObjects:
Jeff Hao920af3e2013-08-28 15:46:38 -07002109 case kWaitingInMainDebuggerLoop:
2110 case kWaitingInMainSignalCatcherLoop:
2111 case kWaitingPerformingGc:
Mathieu Chartier90ef3db2015-08-04 15:19:41 -07002112 case kWaitingWeakGcRootRead:
Hiroshi Yamauchi76f55b02015-08-21 16:10:39 -07002113 case kWaitingForGcThreadFlip:
Jeff Hao920af3e2013-08-28 15:46:38 -07002114 case kWaiting:
2115 return JDWP::TS_WAIT;
2116 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2117 }
2118 LOG(FATAL) << "Unknown thread state: " << state;
2119 return JDWP::TS_ZOMBIE;
2120}
2121
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002122JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2123 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002124 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002125
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002126 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2127
Ian Rogersc0542af2014-09-03 16:16:56 -07002128 JDWP::JdwpError error;
2129 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002130 if (error != JDWP::ERR_NONE) {
2131 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2132 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002133 return JDWP::ERR_NONE;
2134 }
2135 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002136 }
2137
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002138 if (IsSuspendedForDebugger(soa, thread)) {
2139 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002140 }
2141
Jeff Hao920af3e2013-08-28 15:46:38 -07002142 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002143 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002144}
2145
Elliott Hughes221229c2013-01-08 18:17:50 -08002146JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002147 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002148 JDWP::JdwpError error;
2149 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002150 if (error != JDWP::ERR_NONE) {
2151 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002152 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002153 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002154 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002155 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002156}
2157
Elliott Hughesf9501702013-01-11 11:22:27 -08002158JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2159 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002160 JDWP::JdwpError error;
2161 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002162 if (error != JDWP::ERR_NONE) {
2163 return error;
2164 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002165 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002166 return JDWP::ERR_NONE;
2167}
2168
Sebastien Hertz070f7322014-09-09 12:08:49 +02002169static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa,
2170 mirror::Object* desired_thread_group, mirror::Object* peer)
Mathieu Chartier90443472015-07-16 20:32:27 -07002171 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz070f7322014-09-09 12:08:49 +02002172 // Do we want threads from all thread groups?
2173 if (desired_thread_group == nullptr) {
2174 return true;
2175 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07002176 ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group);
Sebastien Hertz070f7322014-09-09 12:08:49 +02002177 DCHECK(thread_group_field != nullptr);
2178 mirror::Object* group = thread_group_field->GetObject(peer);
2179 return (group == desired_thread_group);
2180}
2181
Sebastien Hertza06430c2014-09-15 19:21:30 +02002182void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002183 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz070f7322014-09-09 12:08:49 +02002184 std::list<Thread*> all_threads_list;
2185 {
2186 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2187 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2188 }
2189 for (Thread* t : all_threads_list) {
2190 if (t == Dbg::GetDebugThread()) {
2191 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2192 // query all threads, so it's easier if we just don't tell them about this thread.
2193 continue;
2194 }
2195 if (t->IsStillStarting()) {
2196 // This thread is being started (and has been registered in the thread list). However, it is
2197 // not completely started yet so we must ignore it.
2198 continue;
2199 }
2200 mirror::Object* peer = t->GetPeer();
2201 if (peer == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07002202 // 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 +02002203 // this thread yet.
2204 // TODO: if we identified threads to the debugger by their Thread*
2205 // rather than their peer's mirror::Object*, we could fix this.
2206 // Doing so might help us report ZOMBIE threads too.
2207 continue;
2208 }
2209 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
2210 thread_ids->push_back(gRegistry->Add(peer));
2211 }
2212 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002213}
Elliott Hughesa2155262011-11-16 16:26:58 -08002214
Mathieu Chartier90443472015-07-16 20:32:27 -07002215static int GetStackDepth(Thread* thread) SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002216 struct CountStackDepthVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002217 explicit CountStackDepthVisitor(Thread* thread_in)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01002218 : StackVisitor(thread_in, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2219 depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002220
Elliott Hughes64f574f2013-02-20 14:57:12 -08002221 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2222 // annotalysis.
2223 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002224 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002225 ++depth;
2226 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002227 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002228 }
2229 size_t depth;
2230 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002231
Ian Rogers7a22fa62013-01-23 12:16:16 -08002232 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002233 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002234 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002235}
2236
Ian Rogersc0542af2014-09-03 16:16:56 -07002237JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002238 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002239 JDWP::JdwpError error;
2240 *result = 0;
2241 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002242 if (error != JDWP::ERR_NONE) {
2243 return error;
2244 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002245 if (!IsSuspendedForDebugger(soa, thread)) {
2246 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2247 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002248 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002249 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002250}
2251
Ian Rogers306057f2012-11-26 12:45:53 -08002252JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2253 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002254 class GetFrameVisitor : public StackVisitor {
2255 public:
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002256 GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in,
2257 JDWP::ExpandBuf* buf_in)
Mathieu Chartier90443472015-07-16 20:32:27 -07002258 SHARED_REQUIRES(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01002259 : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2260 depth_(0),
2261 start_frame_(start_frame_in),
2262 frame_count_(frame_count_in),
2263 buf_(buf_in) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002264 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002265 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002266
Mathieu Chartier90443472015-07-16 20:32:27 -07002267 bool VisitFrame() OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002268 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002269 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002270 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002271 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002272 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002273 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002274 if (depth_ >= start_frame_) {
2275 JDWP::FrameId frame_id(GetFrameId());
2276 JDWP::JdwpLocation location;
Sebastien Hertz6995c602014-09-09 12:10:13 +02002277 SetJdwpLocation(&location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002278 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002279 expandBufAdd8BE(buf_, frame_id);
2280 expandBufAddLocation(buf_, location);
2281 }
2282 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002283 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002284 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002285
2286 private:
2287 size_t depth_;
2288 const size_t start_frame_;
2289 const size_t frame_count_;
2290 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002291 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002292
2293 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002294 JDWP::JdwpError error;
2295 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002296 if (error != JDWP::ERR_NONE) {
2297 return error;
2298 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002299 if (!IsSuspendedForDebugger(soa, thread)) {
2300 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2301 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002302 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002303 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002304 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002305}
2306
2307JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002308 return GetThreadId(Thread::Current());
2309}
2310
2311JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002312 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002313 return gRegistry->Add(thread->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002314}
2315
Elliott Hughes475fc232011-10-25 15:00:35 -07002316void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002317 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002318}
2319
2320void Dbg::ResumeVM() {
Sebastien Hertz253fa552014-10-14 17:27:15 +02002321 Runtime::Current()->GetThreadList()->ResumeAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002322}
2323
Elliott Hughes221229c2013-01-08 18:17:50 -08002324JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002325 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002326 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002327 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002328 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002329 JDWP::JdwpError error;
2330 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002331 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002332 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002333 return JDWP::ERR_THREAD_NOT_ALIVE;
2334 }
Ian Rogers4ad5cd32014-11-11 23:08:07 -08002335 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002336 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002337 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2338 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2339 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002340 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002341 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002342 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002343 return JDWP::ERR_INTERNAL;
2344 } else {
2345 return JDWP::ERR_THREAD_NOT_ALIVE;
2346 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002347}
2348
Elliott Hughes221229c2013-01-08 18:17:50 -08002349void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002350 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002351 JDWP::JdwpError error;
2352 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2353 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002354 Thread* thread;
2355 {
2356 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2357 thread = Thread::FromManagedThread(soa, peer);
2358 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002359 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002360 LOG(WARNING) << "No such thread for resume: " << peer;
2361 return;
2362 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002363 bool needs_resume;
2364 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002365 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002366 needs_resume = thread->GetSuspendCount() > 0;
2367 }
2368 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002369 Runtime::Current()->GetThreadList()->Resume(thread, true);
2370 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002371}
2372
2373void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002374 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002375}
2376
Ian Rogers0399dde2012-06-06 17:09:28 -07002377struct GetThisVisitor : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002378 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in)
Mathieu Chartier90443472015-07-16 20:32:27 -07002379 SHARED_REQUIRES(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01002380 : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2381 this_object(nullptr),
2382 frame_id(frame_id_in) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002383
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002384 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2385 // annotalysis.
2386 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002387 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002388 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002389 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002390 this_object = GetThisObject();
2391 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002392 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002393 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002394
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002395 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002396 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002397};
2398
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002399JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2400 JDWP::ObjectId* result) {
2401 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002402 JDWP::JdwpError error;
2403 Thread* thread = DecodeThread(soa, thread_id, &error);
2404 if (error != JDWP::ERR_NONE) {
2405 return error;
2406 }
2407 if (!IsSuspendedForDebugger(soa, thread)) {
2408 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002409 }
Ian Rogers700a4022014-05-19 16:49:03 -07002410 std::unique_ptr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002411 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002412 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002413 *result = gRegistry->Add(visitor.this_object);
2414 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002415}
2416
Sebastien Hertz8009f392014-09-01 17:07:11 +02002417// Walks the stack until we find the frame with the given FrameId.
2418class FindFrameVisitor FINAL : public StackVisitor {
2419 public:
2420 FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Mathieu Chartier90443472015-07-16 20:32:27 -07002421 SHARED_REQUIRES(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01002422 : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2423 frame_id_(frame_id),
2424 error_(JDWP::ERR_INVALID_FRAMEID) {}
Ian Rogersca190662012-06-26 15:45:57 -07002425
Sebastien Hertz8009f392014-09-01 17:07:11 +02002426 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2427 // annotalysis.
2428 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
2429 if (GetFrameId() != frame_id_) {
2430 return true; // Not our frame, carry on.
Ian Rogers0399dde2012-06-06 17:09:28 -07002431 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07002432 ArtMethod* m = GetMethod();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002433 if (m->IsNative()) {
2434 // We can't read/write local value from/into native method.
2435 error_ = JDWP::ERR_OPAQUE_FRAME;
2436 } else {
2437 // We found our frame.
2438 error_ = JDWP::ERR_NONE;
2439 }
2440 return false;
2441 }
2442
2443 JDWP::JdwpError GetError() const {
2444 return error_;
2445 }
2446
2447 private:
2448 const JDWP::FrameId frame_id_;
2449 JDWP::JdwpError error_;
Sebastien Hertz26f72862015-09-15 09:52:07 +02002450
2451 DISALLOW_COPY_AND_ASSIGN(FindFrameVisitor);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002452};
2453
2454JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2455 JDWP::ObjectId thread_id = request->ReadThreadId();
2456 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002457
2458 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002459 JDWP::JdwpError error;
2460 Thread* thread = DecodeThread(soa, thread_id, &error);
2461 if (error != JDWP::ERR_NONE) {
2462 return error;
2463 }
2464 if (!IsSuspendedForDebugger(soa, thread)) {
2465 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes221229c2013-01-08 18:17:50 -08002466 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002467 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002468 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002469 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002470 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002471 if (visitor.GetError() != JDWP::ERR_NONE) {
2472 return visitor.GetError();
2473 }
2474
2475 // Read the values from visitor's context.
2476 int32_t slot_count = request->ReadSigned32("slot count");
2477 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2478 for (int32_t i = 0; i < slot_count; ++i) {
2479 uint32_t slot = request->ReadUnsigned32("slot");
2480 JDWP::JdwpTag reqSigByte = request->ReadTag();
2481
2482 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
2483
2484 size_t width = Dbg::GetTagWidth(reqSigByte);
Sebastien Hertz7d955652014-10-22 10:57:10 +02002485 uint8_t* ptr = expandBufAddSpace(pReply, width + 1);
Sebastien Hertz69206392015-04-07 15:54:25 +02002486 error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002487 if (error != JDWP::ERR_NONE) {
2488 return error;
2489 }
2490 }
2491 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002492}
2493
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002494constexpr JDWP::JdwpError kStackFrameLocalAccessError = JDWP::ERR_ABSENT_INFORMATION;
2495
2496static std::string GetStackContextAsString(const StackVisitor& visitor)
Mathieu Chartier90443472015-07-16 20:32:27 -07002497 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002498 return StringPrintf(" at DEX pc 0x%08x in method %s", visitor.GetDexPc(false),
2499 PrettyMethod(visitor.GetMethod()).c_str());
2500}
2501
2502static JDWP::JdwpError FailGetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2503 JDWP::JdwpTag tag)
Mathieu Chartier90443472015-07-16 20:32:27 -07002504 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002505 LOG(ERROR) << "Failed to read " << tag << " local from register v" << vreg
2506 << GetStackContextAsString(visitor);
2507 return kStackFrameLocalAccessError;
2508}
2509
Sebastien Hertz8009f392014-09-01 17:07:11 +02002510JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2511 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002512 ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002513 JDWP::JdwpError error = JDWP::ERR_NONE;
2514 uint16_t vreg = DemangleSlot(slot, m, &error);
2515 if (error != JDWP::ERR_NONE) {
2516 return error;
2517 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002518 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002519 switch (tag) {
2520 case JDWP::JT_BOOLEAN: {
2521 CHECK_EQ(width, 1U);
2522 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002523 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2524 return FailGetLocalValue(visitor, vreg, tag);
Ian Rogers0399dde2012-06-06 17:09:28 -07002525 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002526 VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal;
2527 JDWP::Set1(buf + 1, intVal != 0);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002528 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002529 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002530 case JDWP::JT_BYTE: {
2531 CHECK_EQ(width, 1U);
2532 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002533 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2534 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002535 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002536 VLOG(jdwp) << "get byte local " << vreg << " = " << intVal;
2537 JDWP::Set1(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002538 break;
2539 }
2540 case JDWP::JT_SHORT:
2541 case JDWP::JT_CHAR: {
2542 CHECK_EQ(width, 2U);
2543 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002544 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2545 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002546 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002547 VLOG(jdwp) << "get short/char local " << vreg << " = " << intVal;
2548 JDWP::Set2BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002549 break;
2550 }
2551 case JDWP::JT_INT: {
2552 CHECK_EQ(width, 4U);
2553 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002554 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2555 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002556 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002557 VLOG(jdwp) << "get int local " << vreg << " = " << intVal;
2558 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002559 break;
2560 }
2561 case JDWP::JT_FLOAT: {
2562 CHECK_EQ(width, 4U);
2563 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002564 if (!visitor.GetVReg(m, vreg, kFloatVReg, &intVal)) {
2565 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002566 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002567 VLOG(jdwp) << "get float local " << vreg << " = " << intVal;
2568 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002569 break;
2570 }
2571 case JDWP::JT_ARRAY:
2572 case JDWP::JT_CLASS_LOADER:
2573 case JDWP::JT_CLASS_OBJECT:
2574 case JDWP::JT_OBJECT:
2575 case JDWP::JT_STRING:
2576 case JDWP::JT_THREAD:
2577 case JDWP::JT_THREAD_GROUP: {
2578 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2579 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002580 if (!visitor.GetVReg(m, vreg, kReferenceVReg, &intVal)) {
2581 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002582 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002583 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2584 VLOG(jdwp) << "get " << tag << " object local " << vreg << " = " << o;
2585 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2586 LOG(FATAL) << StringPrintf("Found invalid object %#" PRIxPTR " in register v%u",
2587 reinterpret_cast<uintptr_t>(o), vreg)
2588 << GetStackContextAsString(visitor);
2589 UNREACHABLE();
2590 }
2591 tag = TagFromObject(soa, o);
2592 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002593 break;
2594 }
2595 case JDWP::JT_DOUBLE: {
2596 CHECK_EQ(width, 8U);
2597 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002598 if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2599 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002600 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002601 VLOG(jdwp) << "get double local " << vreg << " = " << longVal;
2602 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002603 break;
2604 }
2605 case JDWP::JT_LONG: {
2606 CHECK_EQ(width, 8U);
2607 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002608 if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) {
2609 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002610 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002611 VLOG(jdwp) << "get long local " << vreg << " = " << longVal;
2612 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002613 break;
2614 }
2615 default:
2616 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002617 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002618 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002619
Sebastien Hertz8009f392014-09-01 17:07:11 +02002620 // Prepend tag, which may have been updated.
2621 JDWP::Set1(buf, tag);
2622 return JDWP::ERR_NONE;
2623}
2624
2625JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2626 JDWP::ObjectId thread_id = request->ReadThreadId();
2627 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002628
2629 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002630 JDWP::JdwpError error;
2631 Thread* thread = DecodeThread(soa, thread_id, &error);
2632 if (error != JDWP::ERR_NONE) {
2633 return error;
2634 }
2635 if (!IsSuspendedForDebugger(soa, thread)) {
2636 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes221229c2013-01-08 18:17:50 -08002637 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002638 // Find the frame with the given frame_id.
Ian Rogers700a4022014-05-19 16:49:03 -07002639 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz8009f392014-09-01 17:07:11 +02002640 FindFrameVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002641 visitor.WalkStack();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002642 if (visitor.GetError() != JDWP::ERR_NONE) {
2643 return visitor.GetError();
2644 }
2645
2646 // Writes the values into visitor's context.
2647 int32_t slot_count = request->ReadSigned32("slot count");
2648 for (int32_t i = 0; i < slot_count; ++i) {
2649 uint32_t slot = request->ReadUnsigned32("slot");
2650 JDWP::JdwpTag sigByte = request->ReadTag();
2651 size_t width = Dbg::GetTagWidth(sigByte);
2652 uint64_t value = request->ReadValue(width);
2653
2654 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
Mingyao Yang99170c62015-07-06 11:10:37 -07002655 error = Dbg::SetLocalValue(thread, visitor, slot, sigByte, value, width);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002656 if (error != JDWP::ERR_NONE) {
2657 return error;
2658 }
2659 }
2660 return JDWP::ERR_NONE;
2661}
2662
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002663template<typename T>
2664static JDWP::JdwpError FailSetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2665 JDWP::JdwpTag tag, T value)
Mathieu Chartier90443472015-07-16 20:32:27 -07002666 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002667 LOG(ERROR) << "Failed to write " << tag << " local " << value
2668 << " (0x" << std::hex << value << ") into register v" << vreg
2669 << GetStackContextAsString(visitor);
2670 return kStackFrameLocalAccessError;
2671}
2672
Mingyao Yang99170c62015-07-06 11:10:37 -07002673JDWP::JdwpError Dbg::SetLocalValue(Thread* thread, StackVisitor& visitor, int slot,
2674 JDWP::JdwpTag tag, uint64_t value, size_t width) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002675 ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002676 JDWP::JdwpError error = JDWP::ERR_NONE;
2677 uint16_t vreg = DemangleSlot(slot, m, &error);
2678 if (error != JDWP::ERR_NONE) {
2679 return error;
2680 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002681 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002682 switch (tag) {
2683 case JDWP::JT_BOOLEAN:
2684 case JDWP::JT_BYTE:
2685 CHECK_EQ(width, 1U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002686 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002687 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002688 }
2689 break;
2690 case JDWP::JT_SHORT:
2691 case JDWP::JT_CHAR:
2692 CHECK_EQ(width, 2U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002693 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002694 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002695 }
2696 break;
2697 case JDWP::JT_INT:
2698 CHECK_EQ(width, 4U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002699 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002700 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002701 }
2702 break;
2703 case JDWP::JT_FLOAT:
2704 CHECK_EQ(width, 4U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002705 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002706 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002707 }
2708 break;
2709 case JDWP::JT_ARRAY:
2710 case JDWP::JT_CLASS_LOADER:
2711 case JDWP::JT_CLASS_OBJECT:
2712 case JDWP::JT_OBJECT:
2713 case JDWP::JT_STRING:
2714 case JDWP::JT_THREAD:
2715 case JDWP::JT_THREAD_GROUP: {
2716 CHECK_EQ(width, sizeof(JDWP::ObjectId));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002717 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value),
2718 &error);
2719 if (error != JDWP::ERR_NONE) {
2720 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2721 return JDWP::ERR_INVALID_OBJECT;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002722 }
Mingyao Yang636b9252015-07-31 16:40:24 -07002723 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002724 kReferenceVReg)) {
2725 return FailSetLocalValue(visitor, vreg, tag, reinterpret_cast<uintptr_t>(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002726 }
2727 break;
2728 }
2729 case JDWP::JT_DOUBLE: {
2730 CHECK_EQ(width, 8U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002731 if (!visitor.SetVRegPair(m, vreg, value, kDoubleLoVReg, kDoubleHiVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002732 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002733 }
2734 break;
2735 }
2736 case JDWP::JT_LONG: {
2737 CHECK_EQ(width, 8U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002738 if (!visitor.SetVRegPair(m, vreg, value, kLongLoVReg, kLongHiVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002739 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002740 }
2741 break;
2742 }
2743 default:
2744 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002745 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002746 }
Mingyao Yang99170c62015-07-06 11:10:37 -07002747
2748 // If we set the local variable in a compiled frame, we need to trigger a deoptimization of
2749 // the stack so we continue execution with the interpreter using the new value(s) of the updated
2750 // local variable(s). To achieve this, we install instrumentation exit stub on each method of the
2751 // thread's stack. The stub will cause the deoptimization to happen.
2752 if (!visitor.IsShadowFrame() && thread->HasDebuggerShadowFrames()) {
2753 Runtime::Current()->GetInstrumentation()->InstrumentThreadStack(thread);
2754 }
2755
Sebastien Hertz8009f392014-09-01 17:07:11 +02002756 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002757}
2758
Mathieu Chartiere401d142015-04-22 13:56:20 -07002759static void SetEventLocation(JDWP::EventLocation* location, ArtMethod* m, uint32_t dex_pc)
Mathieu Chartier90443472015-07-16 20:32:27 -07002760 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002761 DCHECK(location != nullptr);
2762 if (m == nullptr) {
2763 memset(location, 0, sizeof(*location));
2764 } else {
2765 location->method = m;
2766 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002767 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002768}
2769
Mathieu Chartiere401d142015-04-22 13:56:20 -07002770void Dbg::PostLocationEvent(ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002771 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002772 if (!IsDebuggerActive()) {
2773 return;
2774 }
2775 DCHECK(m != nullptr);
2776 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002777 JDWP::EventLocation location;
2778 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002779
Sebastien Hertzde48aa62015-05-26 11:53:39 +02002780 // We need to be sure no exception is pending when calling JdwpState::PostLocationEvent.
2781 // This is required to be able to call JNI functions to create JDWP ids. To achieve this,
2782 // we temporarily clear the current thread's exception (if any) and will restore it after
2783 // the call.
2784 // Note: the only way to get a pending exception here is to suspend on a move-exception
2785 // instruction.
2786 Thread* const self = Thread::Current();
2787 StackHandleScope<1> hs(self);
2788 Handle<mirror::Throwable> pending_exception(hs.NewHandle(self->GetException()));
2789 self->ClearException();
2790 if (kIsDebugBuild && pending_exception.Get() != nullptr) {
2791 const DexFile::CodeItem* code_item = location.method->GetCodeItem();
2792 const Instruction* instr = Instruction::At(&code_item->insns_[location.dex_pc]);
2793 CHECK_EQ(Instruction::MOVE_EXCEPTION, instr->Opcode());
2794 }
2795
Sebastien Hertz6995c602014-09-09 12:10:13 +02002796 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Sebastien Hertzde48aa62015-05-26 11:53:39 +02002797
2798 if (pending_exception.Get() != nullptr) {
2799 self->SetException(pending_exception.Get());
2800 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002801}
2802
Mathieu Chartiere401d142015-04-22 13:56:20 -07002803void Dbg::PostFieldAccessEvent(ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07002804 mirror::Object* this_object, ArtField* f) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002805 if (!IsDebuggerActive()) {
2806 return;
2807 }
2808 DCHECK(m != nullptr);
2809 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002810 JDWP::EventLocation location;
2811 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002812
Sebastien Hertz6995c602014-09-09 12:10:13 +02002813 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002814}
2815
Mathieu Chartiere401d142015-04-22 13:56:20 -07002816void Dbg::PostFieldModificationEvent(ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07002817 mirror::Object* this_object, ArtField* f,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002818 const JValue* field_value) {
2819 if (!IsDebuggerActive()) {
2820 return;
2821 }
2822 DCHECK(m != nullptr);
2823 DCHECK(f != nullptr);
2824 DCHECK(field_value != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002825 JDWP::EventLocation location;
2826 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002827
Sebastien Hertz6995c602014-09-09 12:10:13 +02002828 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002829}
2830
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002831/**
2832 * Finds the location where this exception will be caught. We search until we reach the top
2833 * frame, in which case this exception is considered uncaught.
2834 */
2835class CatchLocationFinder : public StackVisitor {
2836 public:
2837 CatchLocationFinder(Thread* self, const Handle<mirror::Throwable>& exception, Context* context)
Mathieu Chartier90443472015-07-16 20:32:27 -07002838 SHARED_REQUIRES(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01002839 : StackVisitor(self, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002840 exception_(exception),
2841 handle_scope_(self),
2842 this_at_throw_(handle_scope_.NewHandle<mirror::Object>(nullptr)),
Mathieu Chartiere401d142015-04-22 13:56:20 -07002843 catch_method_(nullptr),
2844 throw_method_(nullptr),
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002845 catch_dex_pc_(DexFile::kDexNoIndex),
2846 throw_dex_pc_(DexFile::kDexNoIndex) {
2847 }
2848
Mathieu Chartier90443472015-07-16 20:32:27 -07002849 bool VisitFrame() OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002850 ArtMethod* method = GetMethod();
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002851 DCHECK(method != nullptr);
2852 if (method->IsRuntimeMethod()) {
2853 // Ignore callee save method.
2854 DCHECK(method->IsCalleeSaveMethod());
2855 return true;
2856 }
2857
2858 uint32_t dex_pc = GetDexPc();
Mathieu Chartiere401d142015-04-22 13:56:20 -07002859 if (throw_method_ == nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002860 // First Java method found. It is either the method that threw the exception,
2861 // or the Java native method that is reporting an exception thrown by
2862 // native code.
2863 this_at_throw_.Assign(GetThisObject());
Mathieu Chartiere401d142015-04-22 13:56:20 -07002864 throw_method_ = method;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002865 throw_dex_pc_ = dex_pc;
2866 }
2867
2868 if (dex_pc != DexFile::kDexNoIndex) {
Sebastien Hertz26f72862015-09-15 09:52:07 +02002869 StackHandleScope<1> hs(GetThread());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002870 uint32_t found_dex_pc;
2871 Handle<mirror::Class> exception_class(hs.NewHandle(exception_->GetClass()));
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002872 bool unused_clear_exception;
Mathieu Chartiere401d142015-04-22 13:56:20 -07002873 found_dex_pc = method->FindCatchBlock(exception_class, dex_pc, &unused_clear_exception);
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002874 if (found_dex_pc != DexFile::kDexNoIndex) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002875 catch_method_ = method;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002876 catch_dex_pc_ = found_dex_pc;
2877 return false; // End stack walk.
2878 }
2879 }
2880 return true; // Continue stack walk.
2881 }
2882
Mathieu Chartier90443472015-07-16 20:32:27 -07002883 ArtMethod* GetCatchMethod() SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002884 return catch_method_;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002885 }
2886
Mathieu Chartier90443472015-07-16 20:32:27 -07002887 ArtMethod* GetThrowMethod() SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002888 return throw_method_;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002889 }
2890
Mathieu Chartier90443472015-07-16 20:32:27 -07002891 mirror::Object* GetThisAtThrow() SHARED_REQUIRES(Locks::mutator_lock_) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002892 return this_at_throw_.Get();
2893 }
2894
2895 uint32_t GetCatchDexPc() const {
2896 return catch_dex_pc_;
2897 }
2898
2899 uint32_t GetThrowDexPc() const {
2900 return throw_dex_pc_;
2901 }
2902
2903 private:
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002904 const Handle<mirror::Throwable>& exception_;
Mathieu Chartiere401d142015-04-22 13:56:20 -07002905 StackHandleScope<1> handle_scope_;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002906 MutableHandle<mirror::Object> this_at_throw_;
Mathieu Chartiere401d142015-04-22 13:56:20 -07002907 ArtMethod* catch_method_;
2908 ArtMethod* throw_method_;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002909 uint32_t catch_dex_pc_;
2910 uint32_t throw_dex_pc_;
2911
2912 DISALLOW_COPY_AND_ASSIGN(CatchLocationFinder);
2913};
2914
2915void Dbg::PostException(mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002916 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002917 return;
2918 }
Sebastien Hertz261bc042015-04-08 09:36:07 +02002919 Thread* const self = Thread::Current();
2920 StackHandleScope<1> handle_scope(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002921 Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object));
2922 std::unique_ptr<Context> context(Context::Create());
Sebastien Hertz261bc042015-04-08 09:36:07 +02002923 CatchLocationFinder clf(self, h_exception, context.get());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002924 clf.WalkStack(/* include_transitions */ false);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002925 JDWP::EventLocation exception_throw_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002926 SetEventLocation(&exception_throw_location, clf.GetThrowMethod(), clf.GetThrowDexPc());
Sebastien Hertz6995c602014-09-09 12:10:13 +02002927 JDWP::EventLocation exception_catch_location;
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002928 SetEventLocation(&exception_catch_location, clf.GetCatchMethod(), clf.GetCatchDexPc());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002929
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002930 gJdwpState->PostException(&exception_throw_location, h_exception.Get(), &exception_catch_location,
2931 clf.GetThisAtThrow());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002932}
2933
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002934void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002935 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002936 return;
2937 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02002938 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002939}
2940
Ian Rogers62d6c772013-02-27 08:32:07 -08002941void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -07002942 ArtMethod* m, uint32_t dex_pc,
Sebastien Hertz8379b222014-02-24 17:38:15 +01002943 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002944 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002945 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002946 }
2947
Elliott Hughes86964332012-02-15 19:37:42 -08002948 if (IsBreakpoint(m, dex_pc)) {
2949 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002950 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002951
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002952 // If the debugger is single-stepping one of our threads, check to
2953 // see if we're that thread and we've reached a step point.
2954 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002955 if (single_step_control != nullptr) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002956 CHECK(!m->IsNative());
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002957 if (single_step_control->GetStepDepth() == JDWP::SD_INTO) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002958 // Step into method calls. We break when the line number
2959 // or method pointer changes. If we're in SS_MIN mode, we
2960 // always stop.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002961 if (single_step_control->GetMethod() != m) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002962 event_flags |= kSingleStep;
2963 VLOG(jdwp) << "SS new method";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002964 } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002965 event_flags |= kSingleStep;
2966 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002967 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002968 event_flags |= kSingleStep;
2969 VLOG(jdwp) << "SS new line";
2970 }
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002971 } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002972 // Step over method calls. We break when the line number is
2973 // different and the frame depth is <= the original frame
2974 // depth. (We can't just compare on the method, because we
2975 // might get unrolled past it by an exception, and it's tricky
2976 // to identify recursion.)
2977
2978 int stack_depth = GetStackDepth(thread);
2979
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002980 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002981 // Popped up one or more frames, always trigger.
2982 event_flags |= kSingleStep;
2983 VLOG(jdwp) << "SS method pop";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002984 } else if (stack_depth == single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002985 // Same depth, see if we moved.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002986 if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002987 event_flags |= kSingleStep;
2988 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02002989 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002990 event_flags |= kSingleStep;
2991 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002992 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002993 }
2994 } else {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01002995 CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002996 // Return from the current method. We break when the frame
2997 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002998
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002999 // This differs from the "method exit" break in that it stops
3000 // with the PC at the next instruction in the returned-to
3001 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08003002
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003003 int stack_depth = GetStackDepth(thread);
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003004 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003005 event_flags |= kSingleStep;
3006 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003007 }
3008 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003009 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003010
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003011 // If there's something interesting going on, see if it matches one
3012 // of the debugger filters.
3013 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01003014 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003015 }
3016}
3017
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003018size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
3019 switch (instrumentation_event) {
3020 case instrumentation::Instrumentation::kMethodEntered:
3021 return &method_enter_event_ref_count_;
3022 case instrumentation::Instrumentation::kMethodExited:
3023 return &method_exit_event_ref_count_;
3024 case instrumentation::Instrumentation::kDexPcMoved:
3025 return &dex_pc_change_event_ref_count_;
3026 case instrumentation::Instrumentation::kFieldRead:
3027 return &field_read_event_ref_count_;
3028 case instrumentation::Instrumentation::kFieldWritten:
3029 return &field_write_event_ref_count_;
3030 case instrumentation::Instrumentation::kExceptionCaught:
3031 return &exception_catch_event_ref_count_;
3032 default:
3033 return nullptr;
3034 }
3035}
3036
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003037// Process request while all mutator threads are suspended.
3038void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003039 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003040 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003041 case DeoptimizationRequest::kNothing:
3042 LOG(WARNING) << "Ignoring empty deoptimization request.";
3043 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003044 case DeoptimizationRequest::kRegisterForEvent:
3045 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003046 request.InstrumentationEvent());
3047 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
3048 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003049 break;
3050 case DeoptimizationRequest::kUnregisterForEvent:
3051 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003052 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003053 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003054 request.InstrumentationEvent());
3055 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003056 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003057 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003058 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz0462c4c2015-04-01 16:34:17 +02003059 instrumentation->DeoptimizeEverything(kDbgInstrumentationKey);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003060 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003061 break;
3062 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003063 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz0462c4c2015-04-01 16:34:17 +02003064 instrumentation->UndeoptimizeEverything(kDbgInstrumentationKey);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003065 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003066 break;
3067 case DeoptimizationRequest::kSelectiveDeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003068 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ...";
3069 instrumentation->Deoptimize(request.Method());
3070 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003071 break;
3072 case DeoptimizationRequest::kSelectiveUndeoptimization:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003073 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ...";
3074 instrumentation->Undeoptimize(request.Method());
3075 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003076 break;
3077 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003078 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003079 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003080 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003081}
3082
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003083void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003084 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003085 // Nothing to do.
3086 return;
3087 }
Brian Carlstrom306db812014-09-05 13:01:41 -07003088 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003089 RequestDeoptimizationLocked(req);
3090}
3091
3092void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003093 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003094 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003095 DCHECK_NE(req.InstrumentationEvent(), 0u);
3096 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003097 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003098 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003099 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003100 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003101 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003102 deoptimization_requests_.push_back(req);
3103 }
3104 *counter = *counter + 1;
3105 break;
3106 }
3107 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003108 DCHECK_NE(req.InstrumentationEvent(), 0u);
3109 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003110 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003111 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003112 *counter = *counter - 1;
3113 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003114 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003115 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003116 deoptimization_requests_.push_back(req);
3117 }
3118 break;
3119 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003120 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003121 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003122 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003123 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3124 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003125 deoptimization_requests_.push_back(req);
3126 }
3127 ++full_deoptimization_event_count_;
3128 break;
3129 }
3130 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003131 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003132 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003133 --full_deoptimization_event_count_;
3134 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003135 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3136 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003137 deoptimization_requests_.push_back(req);
3138 }
3139 break;
3140 }
3141 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003142 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003143 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003144 << " for deoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003145 deoptimization_requests_.push_back(req);
3146 break;
3147 }
3148 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003149 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003150 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003151 << " for undeoptimization of " << PrettyMethod(req.Method());
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003152 deoptimization_requests_.push_back(req);
3153 break;
3154 }
3155 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003156 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003157 break;
3158 }
3159 }
3160}
3161
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003162void Dbg::ManageDeoptimization() {
3163 Thread* const self = Thread::Current();
3164 {
3165 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003166 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003167 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003168 return;
3169 }
3170 }
3171 CHECK_EQ(self->GetState(), kRunnable);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003172 ScopedThreadSuspension sts(self, kWaitingForDeoptimization);
Mathieu Chartieraa516822015-10-02 15:53:37 -07003173 // Required for ProcessDeoptimizationRequest.
3174 gc::ScopedGCCriticalSection gcs(self,
3175 gc::kGcCauseInstrumentation,
3176 gc::kCollectorTypeInstrumentation);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003177 // We need to suspend mutator threads first.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07003178 ScopedSuspendAll ssa(__FUNCTION__);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003179 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003180 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003181 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003182 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003183 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003184 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003185 ProcessDeoptimizationRequest(request);
3186 }
3187 deoptimization_requests_.clear();
3188 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003189 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003190}
3191
Mathieu Chartiere401d142015-04-22 13:56:20 -07003192static bool IsMethodPossiblyInlined(Thread* self, ArtMethod* m)
Mathieu Chartier90443472015-07-16 20:32:27 -07003193 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003194 const DexFile::CodeItem* code_item = m->GetCodeItem();
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003195 if (code_item == nullptr) {
3196 // TODO We should not be asked to watch location in a native or abstract method so the code item
3197 // should never be null. We could just check we never encounter this case.
3198 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003199 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003200 // Note: method verifier may cause thread suspension.
3201 self->AssertThreadSuspensionIsAllowable();
Mathieu Chartiere401d142015-04-22 13:56:20 -07003202 StackHandleScope<2> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003203 mirror::Class* declaring_class = m->GetDeclaringClass();
3204 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
3205 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Ian Rogers7b078e82014-09-10 14:44:24 -07003206 verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader,
Mathieu Chartiere401d142015-04-22 13:56:20 -07003207 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), m,
Mathieu Chartier4306ef82014-12-19 18:41:47 -08003208 m->GetAccessFlags(), false, true, false, true);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003209 // Note: we don't need to verify the method.
3210 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
3211}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003212
Mathieu Chartiere401d142015-04-22 13:56:20 -07003213static const Breakpoint* FindFirstBreakpointForMethod(ArtMethod* m)
Mathieu Chartier90443472015-07-16 20:32:27 -07003214 SHARED_REQUIRES(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003215 for (Breakpoint& breakpoint : gBreakpoints) {
3216 if (breakpoint.Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003217 return &breakpoint;
3218 }
3219 }
3220 return nullptr;
3221}
3222
Mathieu Chartiere401d142015-04-22 13:56:20 -07003223bool Dbg::MethodHasAnyBreakpoints(ArtMethod* method) {
Mathieu Chartierd8565452015-03-26 09:41:50 -07003224 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
3225 return FindFirstBreakpointForMethod(method) != nullptr;
3226}
3227
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003228// Sanity checks all existing breakpoints on the same method.
Mathieu Chartiere401d142015-04-22 13:56:20 -07003229static void SanityCheckExistingBreakpoints(ArtMethod* m,
Sebastien Hertzf3928792014-11-17 19:00:37 +01003230 DeoptimizationRequest::Kind deoptimization_kind)
Mathieu Chartier90443472015-07-16 20:32:27 -07003231 SHARED_REQUIRES(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003232 for (const Breakpoint& breakpoint : gBreakpoints) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003233 if (breakpoint.Method() == m) {
3234 CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind());
3235 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003236 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003237 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
3238 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003239 // We should have deoptimized everything but not "selectively" deoptimized this method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003240 CHECK(instrumentation->AreAllMethodsDeoptimized());
3241 CHECK(!instrumentation->IsDeoptimized(m));
3242 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003243 // We should have "selectively" deoptimized this method.
3244 // Note: while we have not deoptimized everything for this method, we may have done it for
3245 // another event.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003246 CHECK(instrumentation->IsDeoptimized(m));
3247 } else {
3248 // This method does not require deoptimization.
3249 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3250 CHECK(!instrumentation->IsDeoptimized(m));
3251 }
3252}
3253
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003254// Returns the deoptimization kind required to set a breakpoint in a method.
3255// If a breakpoint has already been set, we also return the first breakpoint
3256// through the given 'existing_brkpt' pointer.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003257static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self,
Mathieu Chartiere401d142015-04-22 13:56:20 -07003258 ArtMethod* m,
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003259 const Breakpoint** existing_brkpt)
Mathieu Chartier90443472015-07-16 20:32:27 -07003260 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003261 if (!Dbg::RequiresDeoptimization()) {
3262 // We already run in interpreter-only mode so we don't need to deoptimize anything.
3263 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method "
3264 << PrettyMethod(m);
3265 return DeoptimizationRequest::kNothing;
3266 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003267 const Breakpoint* first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003268 {
3269 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003270 first_breakpoint = FindFirstBreakpointForMethod(m);
3271 *existing_brkpt = first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003272 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003273
3274 if (first_breakpoint == nullptr) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003275 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
3276 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
3277 // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension.
3278 // Therefore we must not hold any lock when we call it.
3279 bool need_full_deoptimization = IsMethodPossiblyInlined(self, m);
3280 if (need_full_deoptimization) {
3281 VLOG(jdwp) << "Need full deoptimization because of possible inlining of method "
3282 << PrettyMethod(m);
3283 return DeoptimizationRequest::kFullDeoptimization;
3284 } else {
3285 // We don't need to deoptimize if the method has not been compiled.
Nicolas Geoffraya5891e82015-11-06 14:18:27 +00003286 const bool is_compiled = m->HasAnyCompiledCode();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003287 if (is_compiled) {
Nicolas Geoffraya5891e82015-11-06 14:18:27 +00003288 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
Sebastien Hertz6963e442014-11-26 22:11:27 +01003289 // If the method may be called through its direct code pointer (without loading
3290 // its updated entrypoint), we need full deoptimization to not miss the breakpoint.
3291 if (class_linker->MayBeCalledWithDirectCodePointer(m)) {
3292 VLOG(jdwp) << "Need full deoptimization because of possible direct code call "
3293 << "into image for compiled method " << PrettyMethod(m);
3294 return DeoptimizationRequest::kFullDeoptimization;
3295 } else {
3296 VLOG(jdwp) << "Need selective deoptimization for compiled method " << PrettyMethod(m);
3297 return DeoptimizationRequest::kSelectiveDeoptimization;
3298 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003299 } else {
3300 // Method is not compiled: we don't need to deoptimize.
3301 VLOG(jdwp) << "No need for deoptimization for non-compiled method " << PrettyMethod(m);
3302 return DeoptimizationRequest::kNothing;
3303 }
3304 }
3305 } else {
3306 // There is at least one breakpoint for this method: we don't need to deoptimize.
3307 // Let's check that all breakpoints are configured the same way for deoptimization.
3308 VLOG(jdwp) << "Breakpoint already set: no deoptimization is required";
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003309 DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003310 if (kIsDebugBuild) {
3311 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3312 SanityCheckExistingBreakpoints(m, deoptimization_kind);
3313 }
3314 return DeoptimizationRequest::kNothing;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003315 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003316}
3317
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003318// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3319// request if we need to deoptimize.
3320void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3321 Thread* const self = Thread::Current();
Mathieu Chartiere401d142015-04-22 13:56:20 -07003322 ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003323 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003324
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003325 const Breakpoint* existing_breakpoint = nullptr;
3326 const DeoptimizationRequest::Kind deoptimization_kind =
3327 GetRequiredDeoptimizationKind(self, m, &existing_breakpoint);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003328 req->SetKind(deoptimization_kind);
3329 if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
3330 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003331 } else {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003332 CHECK(deoptimization_kind == DeoptimizationRequest::kNothing ||
3333 deoptimization_kind == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003334 req->SetMethod(nullptr);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003335 }
3336
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003337 {
3338 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003339 // If there is at least one existing breakpoint on the same method, the new breakpoint
3340 // must have the same deoptimization kind than the existing breakpoint(s).
3341 DeoptimizationRequest::Kind breakpoint_deoptimization_kind;
3342 if (existing_breakpoint != nullptr) {
3343 breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind();
3344 } else {
3345 breakpoint_deoptimization_kind = deoptimization_kind;
3346 }
3347 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind));
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003348 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3349 << gBreakpoints[gBreakpoints.size() - 1];
3350 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003351}
3352
3353// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3354// request if we need to undeoptimize.
3355void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003356 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003357 ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003358 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003359 DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003360 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003361 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003362 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Sebastien Hertzf3928792014-11-17 19:00:37 +01003363 deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind();
3364 DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization,
3365 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003366 gBreakpoints.erase(gBreakpoints.begin() + i);
3367 break;
3368 }
3369 }
3370 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3371 if (existing_breakpoint == nullptr) {
3372 // There is no more breakpoint on this method: we need to undeoptimize.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003373 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003374 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003375 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3376 req->SetMethod(nullptr);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003377 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003378 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003379 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3380 req->SetMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003381 } else {
3382 // This method had no need for deoptimization: do nothing.
3383 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3384 req->SetKind(DeoptimizationRequest::kNothing);
3385 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003386 }
3387 } else {
3388 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003389 req->SetKind(DeoptimizationRequest::kNothing);
3390 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003391 if (kIsDebugBuild) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003392 SanityCheckExistingBreakpoints(m, deoptimization_kind);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003393 }
Elliott Hughes86964332012-02-15 19:37:42 -08003394 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003395}
3396
Mathieu Chartiere401d142015-04-22 13:56:20 -07003397bool Dbg::IsForcedInterpreterNeededForCallingImpl(Thread* thread, ArtMethod* m) {
Daniel Mihalyieb076692014-08-22 17:33:31 +02003398 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3399 if (ssc == nullptr) {
3400 // If we are not single-stepping, then we don't have to force interpreter.
3401 return false;
3402 }
3403 if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) {
3404 // If we are in interpreter only mode, then we don't have to force interpreter.
3405 return false;
3406 }
3407
3408 if (!m->IsNative() && !m->IsProxyMethod()) {
3409 // If we want to step into a method, then we have to force interpreter on that call.
3410 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3411 return true;
3412 }
3413 }
3414 return false;
3415}
3416
Mathieu Chartiere401d142015-04-22 13:56:20 -07003417bool Dbg::IsForcedInterpreterNeededForResolutionImpl(Thread* thread, ArtMethod* m) {
Daniel Mihalyieb076692014-08-22 17:33:31 +02003418 instrumentation::Instrumentation* const instrumentation =
3419 Runtime::Current()->GetInstrumentation();
3420 // If we are in interpreter only mode, then we don't have to force interpreter.
3421 if (instrumentation->InterpretOnly()) {
3422 return false;
3423 }
3424 // We can only interpret pure Java method.
3425 if (m->IsNative() || m->IsProxyMethod()) {
3426 return false;
3427 }
3428 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3429 if (ssc != nullptr) {
3430 // If we want to step into a method, then we have to force interpreter on that call.
3431 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3432 return true;
3433 }
3434 // If we are stepping out from a static initializer, by issuing a step
3435 // in or step over, that was implicitly invoked by calling a static method,
3436 // then we need to step into that method. Having a lower stack depth than
3437 // the one the single step control has indicates that the step originates
3438 // from the static initializer.
3439 if (ssc->GetStepDepth() != JDWP::SD_OUT &&
3440 ssc->GetStackDepth() > GetStackDepth(thread)) {
3441 return true;
3442 }
3443 }
3444 // There are cases where we have to force interpreter on deoptimized methods,
3445 // because in some cases the call will not be performed by invoking an entry
3446 // point that has been replaced by the deoptimization, but instead by directly
3447 // invoking the compiled code of the method, for example.
3448 return instrumentation->IsDeoptimized(m);
3449}
3450
Mathieu Chartiere401d142015-04-22 13:56:20 -07003451bool Dbg::IsForcedInstrumentationNeededForResolutionImpl(Thread* thread, ArtMethod* m) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003452 // The upcall can be null and in that case we don't need to do anything.
Daniel Mihalyieb076692014-08-22 17:33:31 +02003453 if (m == nullptr) {
3454 return false;
3455 }
3456 instrumentation::Instrumentation* const instrumentation =
3457 Runtime::Current()->GetInstrumentation();
3458 // If we are in interpreter only mode, then we don't have to force interpreter.
3459 if (instrumentation->InterpretOnly()) {
3460 return false;
3461 }
3462 // We can only interpret pure Java method.
3463 if (m->IsNative() || m->IsProxyMethod()) {
3464 return false;
3465 }
3466 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3467 if (ssc != nullptr) {
3468 // If we are stepping out from a static initializer, by issuing a step
3469 // out, that was implicitly invoked by calling a static method, then we
3470 // need to step into the caller of that method. Having a lower stack
3471 // depth than the one the single step control has indicates that the
3472 // step originates from the static initializer.
3473 if (ssc->GetStepDepth() == JDWP::SD_OUT &&
3474 ssc->GetStackDepth() > GetStackDepth(thread)) {
3475 return true;
3476 }
3477 }
3478 // If we are returning from a static intializer, that was implicitly
3479 // invoked by calling a static method and the caller is deoptimized,
3480 // then we have to deoptimize the stack without forcing interpreter
3481 // on the static method that was called originally. This problem can
3482 // be solved easily by forcing instrumentation on the called method,
3483 // because the instrumentation exit hook will recognise the need of
3484 // stack deoptimization by calling IsForcedInterpreterNeededForUpcall.
3485 return instrumentation->IsDeoptimized(m);
3486}
3487
Mathieu Chartiere401d142015-04-22 13:56:20 -07003488bool Dbg::IsForcedInterpreterNeededForUpcallImpl(Thread* thread, ArtMethod* m) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003489 // The upcall can be null and in that case we don't need to do anything.
Daniel Mihalyieb076692014-08-22 17:33:31 +02003490 if (m == nullptr) {
3491 return false;
3492 }
3493 instrumentation::Instrumentation* const instrumentation =
3494 Runtime::Current()->GetInstrumentation();
3495 // If we are in interpreter only mode, then we don't have to force interpreter.
3496 if (instrumentation->InterpretOnly()) {
3497 return false;
3498 }
3499 // We can only interpret pure Java method.
3500 if (m->IsNative() || m->IsProxyMethod()) {
3501 return false;
3502 }
3503 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3504 if (ssc != nullptr) {
3505 // The debugger is not interested in what is happening under the level
3506 // of the step, thus we only force interpreter when we are not below of
3507 // the step.
3508 if (ssc->GetStackDepth() >= GetStackDepth(thread)) {
3509 return true;
3510 }
3511 }
Mingyao Yang99170c62015-07-06 11:10:37 -07003512 if (thread->HasDebuggerShadowFrames()) {
3513 // We need to deoptimize the stack for the exception handling flow so that
3514 // we don't miss any deoptimization that should be done when there are
3515 // debugger shadow frames.
3516 return true;
3517 }
Daniel Mihalyieb076692014-08-22 17:33:31 +02003518 // We have to require stack deoptimization if the upcall is deoptimized.
3519 return instrumentation->IsDeoptimized(m);
3520}
3521
Mingyao Yang99170c62015-07-06 11:10:37 -07003522class NeedsDeoptimizationVisitor : public StackVisitor {
Sebastien Hertz520633b2015-09-08 17:03:36 +02003523 public:
3524 explicit NeedsDeoptimizationVisitor(Thread* self)
3525 SHARED_REQUIRES(Locks::mutator_lock_)
3526 : StackVisitor(self, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
3527 needs_deoptimization_(false) {}
3528
3529 bool VisitFrame() OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
3530 // The visitor is meant to be used when handling exception from compiled code only.
3531 CHECK(!IsShadowFrame()) << "We only expect to visit compiled frame: " << PrettyMethod(GetMethod());
3532 ArtMethod* method = GetMethod();
3533 if (method == nullptr) {
3534 // We reach an upcall and don't need to deoptimize this part of the stack (ManagedFragment)
3535 // so we can stop the visit.
3536 DCHECK(!needs_deoptimization_);
3537 return false;
3538 }
3539 if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) {
3540 // We found a compiled frame in the stack but instrumentation is set to interpret
3541 // everything: we need to deoptimize.
3542 needs_deoptimization_ = true;
3543 return false;
3544 }
3545 if (Runtime::Current()->GetInstrumentation()->IsDeoptimized(method)) {
3546 // We found a deoptimized method in the stack.
3547 needs_deoptimization_ = true;
3548 return false;
3549 }
Mingyao Yang99170c62015-07-06 11:10:37 -07003550 ShadowFrame* frame = GetThread()->FindDebuggerShadowFrame(GetFrameId());
3551 if (frame != nullptr) {
3552 // The debugger allocated a ShadowFrame to update a variable in the stack: we need to
3553 // deoptimize the stack to execute (and deallocate) this frame.
3554 needs_deoptimization_ = true;
3555 return false;
3556 }
Sebastien Hertz520633b2015-09-08 17:03:36 +02003557 return true;
3558 }
3559
3560 bool NeedsDeoptimization() const {
3561 return needs_deoptimization_;
3562 }
3563
3564 private:
3565 // Do we need to deoptimize the stack?
3566 bool needs_deoptimization_;
3567
3568 DISALLOW_COPY_AND_ASSIGN(NeedsDeoptimizationVisitor);
3569};
3570
3571// Do we need to deoptimize the stack to handle an exception?
3572bool Dbg::IsForcedInterpreterNeededForExceptionImpl(Thread* thread) {
3573 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3574 if (ssc != nullptr) {
3575 // We deopt to step into the catch handler.
3576 return true;
3577 }
3578 // Deoptimization is required if at least one method in the stack needs it. However we
3579 // skip frames that will be unwound (thus not executed).
3580 NeedsDeoptimizationVisitor visitor(thread);
3581 visitor.WalkStack(true); // includes upcall.
3582 return visitor.NeedsDeoptimization();
3583}
3584
Jeff Hao449db332013-04-12 18:30:52 -07003585// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3586// cause suspension if the thread is the current thread.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003587class ScopedDebuggerThreadSuspension {
Jeff Hao449db332013-04-12 18:30:52 -07003588 public:
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003589 ScopedDebuggerThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Mathieu Chartier90443472015-07-16 20:32:27 -07003590 REQUIRES(!Locks::thread_list_lock_)
3591 SHARED_REQUIRES(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003592 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003593 error_(JDWP::ERR_NONE),
3594 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003595 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003596 ScopedObjectAccessUnchecked soa(self);
Sebastien Hertz69206392015-04-07 15:54:25 +02003597 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003598 if (error_ == JDWP::ERR_NONE) {
3599 if (thread_ == soa.Self()) {
3600 self_suspend_ = true;
3601 } else {
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003602 Thread* suspended_thread;
3603 {
3604 ScopedThreadSuspension sts(self, kWaitingForDebuggerSuspension);
3605 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
3606 bool timed_out;
3607 ThreadList* const thread_list = Runtime::Current()->GetThreadList();
3608 suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true, &timed_out);
3609 }
Ian Rogersf3d874c2014-07-17 18:52:42 -07003610 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003611 // Thread terminated from under us while suspending.
3612 error_ = JDWP::ERR_INVALID_THREAD;
3613 } else {
3614 CHECK_EQ(suspended_thread, thread_);
3615 other_suspend_ = true;
3616 }
3617 }
3618 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003619 }
Elliott Hughes86964332012-02-15 19:37:42 -08003620
Jeff Hao449db332013-04-12 18:30:52 -07003621 Thread* GetThread() const {
3622 return thread_;
3623 }
3624
3625 JDWP::JdwpError GetError() const {
3626 return error_;
3627 }
3628
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003629 ~ScopedDebuggerThreadSuspension() {
Jeff Hao449db332013-04-12 18:30:52 -07003630 if (other_suspend_) {
3631 Runtime::Current()->GetThreadList()->Resume(thread_, true);
3632 }
3633 }
3634
3635 private:
3636 Thread* thread_;
3637 JDWP::JdwpError error_;
3638 bool self_suspend_;
3639 bool other_suspend_;
3640};
3641
3642JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3643 JDWP::JdwpStepDepth step_depth) {
3644 Thread* self = Thread::Current();
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003645 ScopedDebuggerThreadSuspension sts(self, thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003646 if (sts.GetError() != JDWP::ERR_NONE) {
3647 return sts.GetError();
3648 }
3649
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003650 // Work out what ArtMethod* we're in, the current line number, and how deep the stack currently
Elliott Hughes2435a572012-02-17 16:07:41 -08003651 // is for step-out.
Ian Rogers0399dde2012-06-06 17:09:28 -07003652 struct SingleStepStackVisitor : public StackVisitor {
Mathieu Chartier90443472015-07-16 20:32:27 -07003653 explicit SingleStepStackVisitor(Thread* thread) SHARED_REQUIRES(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01003654 : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
3655 stack_depth(0),
3656 method(nullptr),
3657 line_number(-1) {}
Ian Rogersca190662012-06-26 15:45:57 -07003658
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003659 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3660 // annotalysis.
3661 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003662 ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003663 if (!m->IsRuntimeMethod()) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003664 ++stack_depth;
3665 if (method == nullptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003666 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003667 method = m;
Ian Rogersc0542af2014-09-03 16:16:56 -07003668 if (dex_cache != nullptr) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07003669 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003670 line_number = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003671 }
Elliott Hughes86964332012-02-15 19:37:42 -08003672 }
3673 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003674 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003675 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003676
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003677 int stack_depth;
Mathieu Chartiere401d142015-04-22 13:56:20 -07003678 ArtMethod* method;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003679 int32_t line_number;
Elliott Hughes86964332012-02-15 19:37:42 -08003680 };
Jeff Hao449db332013-04-12 18:30:52 -07003681
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003682 Thread* const thread = sts.GetThread();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003683 SingleStepStackVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07003684 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003685
Elliott Hughes2435a572012-02-17 16:07:41 -08003686 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
Elliott Hughes2435a572012-02-17 16:07:41 -08003687 struct DebugCallbackContext {
Roland Levillain3887c462015-08-12 18:15:42 +01003688 DebugCallbackContext(SingleStepControl* single_step_control_cb,
3689 int32_t line_number_cb, const DexFile::CodeItem* code_item)
3690 : single_step_control_(single_step_control_cb), line_number_(line_number_cb),
3691 code_item_(code_item), last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003692 }
3693
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003694 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number_cb) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003695 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003696 if (static_cast<int32_t>(line_number_cb) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003697 if (!context->last_pc_valid) {
3698 // Everything from this address until the next line change is ours.
3699 context->last_pc = address;
3700 context->last_pc_valid = true;
3701 }
3702 // Otherwise, if we're already in a valid range for this line,
3703 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003704 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08003705 // Add everything from the last entry up until here to the set
3706 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003707 context->single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003708 }
3709 context->last_pc_valid = false;
3710 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003711 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08003712 }
3713
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003714 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08003715 // If the line number was the last in the position table...
3716 if (last_pc_valid) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003717 size_t end = code_item_->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003718 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003719 single_step_control_->AddDexPc(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003720 }
3721 }
3722 }
3723
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003724 SingleStepControl* const single_step_control_;
3725 const int32_t line_number_;
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003726 const DexFile::CodeItem* const code_item_;
Elliott Hughes2435a572012-02-17 16:07:41 -08003727 bool last_pc_valid;
3728 uint32_t last_pc;
3729 };
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003730
3731 // Allocate single step.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003732 SingleStepControl* single_step_control =
3733 new (std::nothrow) SingleStepControl(step_size, step_depth,
3734 visitor.stack_depth, visitor.method);
3735 if (single_step_control == nullptr) {
3736 LOG(ERROR) << "Failed to allocate SingleStepControl";
3737 return JDWP::ERR_OUT_OF_MEMORY;
3738 }
3739
Mathieu Chartiere401d142015-04-22 13:56:20 -07003740 ArtMethod* m = single_step_control->GetMethod();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003741 const int32_t line_number = visitor.line_number;
Sebastien Hertz52f5f932015-05-28 11:00:57 +02003742 // Note: if the thread is not running Java code (pure native thread), there is no "current"
3743 // method on the stack (and no line number either).
3744 if (m != nullptr && !m->IsNative()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003745 const DexFile::CodeItem* const code_item = m->GetCodeItem();
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003746 DebugCallbackContext context(single_step_control, line_number, code_item);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003747 m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
Ian Rogersc0542af2014-09-03 16:16:56 -07003748 DebugCallbackContext::Callback, nullptr, &context);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003749 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003750
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003751 // Activate single-step in the thread.
3752 thread->ActivateSingleStepControl(single_step_control);
Elliott Hughes86964332012-02-15 19:37:42 -08003753
Elliott Hughes2435a572012-02-17 16:07:41 -08003754 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003755 VLOG(jdwp) << "Single-step thread: " << *thread;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003756 VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize();
3757 VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth();
3758 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->GetMethod());
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003759 VLOG(jdwp) << "Single-step current line: " << line_number;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003760 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth();
Elliott Hughes2435a572012-02-17 16:07:41 -08003761 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003762 for (uint32_t dex_pc : single_step_control->GetDexPcs()) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003763 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003764 }
3765 }
3766
3767 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003768}
3769
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003770void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3771 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07003772 JDWP::JdwpError error;
3773 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003774 if (error == JDWP::ERR_NONE) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003775 thread->DeactivateSingleStepControl();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003776 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003777}
3778
Elliott Hughes45651fd2012-02-21 15:48:20 -08003779static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3780 switch (tag) {
3781 default:
3782 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
Ian Rogersfc787ec2014-10-09 21:56:44 -07003783 UNREACHABLE();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003784
3785 // Primitives.
3786 case JDWP::JT_BYTE: return 'B';
3787 case JDWP::JT_CHAR: return 'C';
3788 case JDWP::JT_FLOAT: return 'F';
3789 case JDWP::JT_DOUBLE: return 'D';
3790 case JDWP::JT_INT: return 'I';
3791 case JDWP::JT_LONG: return 'J';
3792 case JDWP::JT_SHORT: return 'S';
3793 case JDWP::JT_VOID: return 'V';
3794 case JDWP::JT_BOOLEAN: return 'Z';
3795
3796 // Reference types.
3797 case JDWP::JT_ARRAY:
3798 case JDWP::JT_OBJECT:
3799 case JDWP::JT_STRING:
3800 case JDWP::JT_THREAD:
3801 case JDWP::JT_THREAD_GROUP:
3802 case JDWP::JT_CLASS_LOADER:
3803 case JDWP::JT_CLASS_OBJECT:
3804 return 'L';
3805 }
3806}
3807
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003808JDWP::JdwpError Dbg::PrepareInvokeMethod(uint32_t request_id, JDWP::ObjectId thread_id,
3809 JDWP::ObjectId object_id, JDWP::RefTypeId class_id,
3810 JDWP::MethodId method_id, uint32_t arg_count,
3811 uint64_t arg_values[], JDWP::JdwpTag* arg_types,
3812 uint32_t options) {
3813 Thread* const self = Thread::Current();
3814 CHECK_EQ(self, GetDebugThread()) << "This must be called by the JDWP thread";
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003815 const bool resume_all_threads = ((options & JDWP::INVOKE_SINGLE_THREADED) == 0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003816
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003817 ThreadList* thread_list = Runtime::Current()->GetThreadList();
Ian Rogersc0542af2014-09-03 16:16:56 -07003818 Thread* targetThread = nullptr;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003819 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003820 ScopedObjectAccessUnchecked soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07003821 JDWP::JdwpError error;
3822 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003823 if (error != JDWP::ERR_NONE) {
3824 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3825 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003826 }
Sebastien Hertz1558b572015-02-25 15:05:59 +01003827 if (targetThread->GetInvokeReq() != nullptr) {
3828 // Thread is already invoking a method on behalf of the debugger.
3829 LOG(ERROR) << "InvokeMethod request for thread already invoking a method: " << *targetThread;
3830 return JDWP::ERR_ALREADY_INVOKING;
3831 }
3832 if (!targetThread->IsReadyForDebugInvoke()) {
3833 // Thread is not suspended by an event so it cannot invoke a method.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003834 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3835 return JDWP::ERR_INVALID_THREAD;
3836 }
3837
3838 /*
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003839 * According to the JDWP specs, we are expected to resume all threads (or only the
3840 * target thread) once. So if a thread has been suspended more than once (either by
3841 * the debugger for an event or by the runtime for GC), it will remain suspended before
3842 * the invoke is executed. This means the debugger is responsible to properly resume all
3843 * the threads it has suspended so the target thread can execute the method.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003844 *
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003845 * However, for compatibility reason with older versions of debuggers (like Eclipse), we
3846 * fully resume all threads (by canceling *all* debugger suspensions) when the debugger
3847 * wants us to resume all threads. This is to avoid ending up in deadlock situation.
3848 *
3849 * On the other hand, if we are asked to only resume the target thread, then we follow the
3850 * JDWP specs by resuming that thread only once. This means the thread will remain suspended
3851 * if it has been suspended more than once before the invoke (and again, this is the
3852 * responsibility of the debugger to properly resume that thread before invoking a method).
Elliott Hughesd07986f2011-12-06 18:27:45 -08003853 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003854 int suspend_count;
3855 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003856 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003857 suspend_count = targetThread->GetSuspendCount();
3858 }
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003859 if (suspend_count > 1 && resume_all_threads) {
3860 // The target thread will remain suspended even after we resume it. Let's emit a warning
3861 // to indicate the invoke won't be executed until the thread is resumed.
3862 LOG(WARNING) << *targetThread << " suspended more than once (suspend count == "
3863 << suspend_count << "). This thread will invoke the method only once "
3864 << "it is fully resumed.";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003865 }
3866
Ian Rogersc0542af2014-09-03 16:16:56 -07003867 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3868 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003869 return JDWP::ERR_INVALID_OBJECT;
3870 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003871
Sebastien Hertz1558b572015-02-25 15:05:59 +01003872 gRegistry->Get<mirror::Object*>(thread_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07003873 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003874 return JDWP::ERR_INVALID_OBJECT;
3875 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003876
Ian Rogersc0542af2014-09-03 16:16:56 -07003877 mirror::Class* c = DecodeClass(class_id, &error);
3878 if (c == nullptr) {
3879 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003880 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003881
Mathieu Chartiere401d142015-04-22 13:56:20 -07003882 ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003883 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003884 return JDWP::ERR_INVALID_METHODID;
3885 }
3886 if (m->IsStatic()) {
3887 if (m->GetDeclaringClass() != c) {
3888 return JDWP::ERR_INVALID_METHODID;
3889 }
3890 } else {
3891 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3892 return JDWP::ERR_INVALID_METHODID;
3893 }
3894 }
3895
3896 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003897 uint32_t shorty_len = 0;
3898 const char* shorty = m->GetShorty(&shorty_len);
3899 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003900 return JDWP::ERR_ILLEGAL_ARGUMENT;
3901 }
Elliott Hughes09201632013-04-15 15:50:07 -07003902
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003903 {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003904 StackHandleScope<2> hs(soa.Self());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003905 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3906 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3907 const DexFile::TypeList* types = m->GetParameterTypeList();
3908 for (size_t i = 0; i < arg_count; ++i) {
3909 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003910 return JDWP::ERR_ILLEGAL_ARGUMENT;
3911 }
3912
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003913 if (shorty[i + 1] == 'L') {
3914 // Did we really get an argument of an appropriate reference type?
Ian Rogersa0485602014-12-02 15:48:04 -08003915 mirror::Class* parameter_type =
Vladimir Marko05792b92015-08-03 11:56:49 +01003916 m->GetClassFromTypeIndex(types->GetTypeItem(i).type_idx_,
3917 true /* resolve */,
3918 sizeof(void*));
Ian Rogersc0542af2014-09-03 16:16:56 -07003919 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
3920 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003921 return JDWP::ERR_INVALID_OBJECT;
3922 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003923 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003924 return JDWP::ERR_ILLEGAL_ARGUMENT;
3925 }
3926
3927 // Turn the on-the-wire ObjectId into a jobject.
3928 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3929 v.l = gRegistry->GetJObject(arg_values[i]);
3930 }
Elliott Hughes09201632013-04-15 15:50:07 -07003931 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003932 }
3933
Sebastien Hertz1558b572015-02-25 15:05:59 +01003934 // Allocates a DebugInvokeReq.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003935 DebugInvokeReq* req = new (std::nothrow) DebugInvokeReq(request_id, thread_id, receiver, c, m,
3936 options, arg_values, arg_count);
3937 if (req == nullptr) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01003938 LOG(ERROR) << "Failed to allocate DebugInvokeReq";
3939 return JDWP::ERR_OUT_OF_MEMORY;
3940 }
3941
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003942 // Attaches the DebugInvokeReq to the target thread so it executes the method when
3943 // it is resumed. Once the invocation completes, the target thread will delete it before
3944 // suspending itself (see ThreadList::SuspendSelfForDebugger).
3945 targetThread->SetDebugInvokeReq(req);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003946 }
3947
3948 // 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 +02003949 // away we're sitting high and dry -- but we must release this before the UndoDebuggerSuspensions
3950 // call.
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003951 if (resume_all_threads) {
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003952 VLOG(jdwp) << " Resuming all threads";
3953 thread_list->UndoDebuggerSuspensions();
3954 } else {
3955 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003956 thread_list->Resume(targetThread, true);
3957 }
3958
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003959 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003960}
3961
3962void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003963 Thread* const self = Thread::Current();
3964 CHECK_NE(self, GetDebugThread()) << "This must be called by the event thread";
3965
3966 ScopedObjectAccess soa(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003967
Elliott Hughes81ff3182012-03-23 20:35:56 -07003968 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003969 // to preserve that across the method invocation.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003970 StackHandleScope<1> hs(soa.Self());
3971 Handle<mirror::Throwable> old_exception = hs.NewHandle(soa.Self()->GetException());
Sebastien Hertz1558b572015-02-25 15:05:59 +01003972 soa.Self()->ClearException();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003973
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003974 // Execute the method then sends reply to the debugger.
3975 ExecuteMethodWithoutPendingException(soa, pReq);
3976
3977 // If an exception was pending before the invoke, restore it now.
3978 if (old_exception.Get() != nullptr) {
3979 soa.Self()->SetException(old_exception.Get());
3980 }
3981}
3982
3983// Helper function: write a variable-width value into the output input buffer.
3984static void WriteValue(JDWP::ExpandBuf* pReply, int width, uint64_t value) {
3985 switch (width) {
3986 case 1:
3987 expandBufAdd1(pReply, value);
3988 break;
3989 case 2:
3990 expandBufAdd2BE(pReply, value);
3991 break;
3992 case 4:
3993 expandBufAdd4BE(pReply, value);
3994 break;
3995 case 8:
3996 expandBufAdd8BE(pReply, value);
3997 break;
3998 default:
3999 LOG(FATAL) << width;
4000 UNREACHABLE();
4001 }
4002}
4003
4004void Dbg::ExecuteMethodWithoutPendingException(ScopedObjectAccess& soa, DebugInvokeReq* pReq) {
4005 soa.Self()->AssertNoPendingException();
4006
Elliott Hughesd07986f2011-12-06 18:27:45 -08004007 // Translate the method through the vtable, unless the debugger wants to suppress it.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004008 ArtMethod* m = pReq->method;
4009 size_t image_pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Sebastien Hertz1558b572015-02-25 15:05:59 +01004010 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07004011 ArtMethod* actual_method =
4012 pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m, image_pointer_size);
4013 if (actual_method != m) {
4014 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m)
Sebastien Hertz1558b572015-02-25 15:05:59 +01004015 << " to " << PrettyMethod(actual_method);
Mathieu Chartiere401d142015-04-22 13:56:20 -07004016 m = actual_method;
Elliott Hughes45651fd2012-02-21 15:48:20 -08004017 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08004018 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07004019 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m)
Sebastien Hertz1558b572015-02-25 15:05:59 +01004020 << " receiver=" << pReq->receiver.Read()
Sebastien Hertzd38667a2013-11-25 15:43:54 +01004021 << " arg_count=" << pReq->arg_count;
Mathieu Chartiere401d142015-04-22 13:56:20 -07004022 CHECK(m != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08004023
Roland Levillain33d69032015-06-18 18:20:59 +01004024 static_assert(sizeof(jvalue) == sizeof(uint64_t), "jvalue and uint64_t have different sizes.");
Elliott Hughesd07986f2011-12-06 18:27:45 -08004025
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004026 // Invoke the method.
Jeff Hao39b6c242015-05-19 20:30:23 -07004027 ScopedLocalRef<jobject> ref(soa.Env(), soa.AddLocalReference<jobject>(pReq->receiver.Read()));
Mathieu Chartiere401d142015-04-22 13:56:20 -07004028 JValue result = InvokeWithJValues(soa, ref.get(), soa.EncodeMethod(m),
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004029 reinterpret_cast<jvalue*>(pReq->arg_values.get()));
Elliott Hughesd07986f2011-12-06 18:27:45 -08004030
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004031 // Prepare JDWP ids for the reply.
4032 JDWP::JdwpTag result_tag = BasicTagFromDescriptor(m->GetShorty());
4033 const bool is_object_result = (result_tag == JDWP::JT_OBJECT);
4034 StackHandleScope<2> hs(soa.Self());
Sebastien Hertz1558b572015-02-25 15:05:59 +01004035 Handle<mirror::Object> object_result = hs.NewHandle(is_object_result ? result.GetL() : nullptr);
4036 Handle<mirror::Throwable> exception = hs.NewHandle(soa.Self()->GetException());
4037 soa.Self()->ClearException();
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004038
4039 if (!IsDebuggerActive()) {
4040 // The debugger detached: we must not re-suspend threads. We also don't need to fill the reply
4041 // because it won't be sent either.
4042 return;
4043 }
4044
4045 JDWP::ObjectId exceptionObjectId = gRegistry->Add(exception);
4046 uint64_t result_value = 0;
4047 if (exceptionObjectId != 0) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01004048 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get()
4049 << " " << exception->Dump();
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004050 result_value = 0;
Sebastien Hertz1558b572015-02-25 15:05:59 +01004051 } else if (is_object_result) {
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004052 /* if no exception was thrown, examine object result more closely */
Sebastien Hertz1558b572015-02-25 15:05:59 +01004053 JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get());
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004054 if (new_tag != result_tag) {
4055 VLOG(jdwp) << " JDWP promoted result from " << result_tag << " to " << new_tag;
4056 result_tag = new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08004057 }
4058
Sebastien Hertz1558b572015-02-25 15:05:59 +01004059 // Register the object in the registry and reference its ObjectId. This ensures
4060 // GC safety and prevents from accessing stale reference if the object is moved.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004061 result_value = gRegistry->Add(object_result.Get());
Sebastien Hertz1558b572015-02-25 15:05:59 +01004062 } else {
4063 // Primitive result.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004064 DCHECK(IsPrimitiveTag(result_tag));
4065 result_value = result.GetJ();
4066 }
4067 const bool is_constructor = m->IsConstructor() && !m->IsStatic();
4068 if (is_constructor) {
4069 // If we invoked a constructor (which actually returns void), return the receiver,
4070 // unless we threw, in which case we return null.
Sebastien Hertza3e13772015-11-05 12:09:44 +01004071 DCHECK_EQ(JDWP::JT_VOID, result_tag);
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004072 if (exceptionObjectId == 0) {
4073 // TODO we could keep the receiver ObjectId in the DebugInvokeReq to avoid looking into the
4074 // object registry.
4075 result_value = GetObjectRegistry()->Add(pReq->receiver.Read());
Sebastien Hertza3e13772015-11-05 12:09:44 +01004076 result_tag = TagFromObject(soa, pReq->receiver.Read());
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004077 } else {
4078 result_value = 0;
Sebastien Hertza3e13772015-11-05 12:09:44 +01004079 result_tag = JDWP::JT_OBJECT;
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004080 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08004081 }
4082
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004083 // Suspend other threads if the invoke is not single-threaded.
4084 if ((pReq->options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004085 ScopedThreadSuspension sts(soa.Self(), kWaitingForDebuggerSuspension);
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004086 VLOG(jdwp) << " Suspending all threads";
4087 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004088 }
4089
4090 VLOG(jdwp) << " --> returned " << result_tag
4091 << StringPrintf(" %#" PRIx64 " (except=%#" PRIx64 ")", result_value,
4092 exceptionObjectId);
4093
4094 // Show detailed debug output.
4095 if (result_tag == JDWP::JT_STRING && exceptionObjectId == 0) {
4096 if (result_value != 0) {
4097 if (VLOG_IS_ON(jdwp)) {
4098 std::string result_string;
4099 JDWP::JdwpError error = Dbg::StringToUtf8(result_value, &result_string);
4100 CHECK_EQ(error, JDWP::ERR_NONE);
4101 VLOG(jdwp) << " string '" << result_string << "'";
4102 }
4103 } else {
4104 VLOG(jdwp) << " string (null)";
4105 }
4106 }
4107
4108 // Attach the reply to DebugInvokeReq so it can be sent to the debugger when the event thread
4109 // is ready to suspend.
4110 BuildInvokeReply(pReq->reply, pReq->request_id, result_tag, result_value, exceptionObjectId);
4111}
4112
4113void Dbg::BuildInvokeReply(JDWP::ExpandBuf* pReply, uint32_t request_id, JDWP::JdwpTag result_tag,
4114 uint64_t result_value, JDWP::ObjectId exception) {
4115 // Make room for the JDWP header since we do not know the size of the reply yet.
4116 JDWP::expandBufAddSpace(pReply, kJDWPHeaderLen);
4117
4118 size_t width = GetTagWidth(result_tag);
4119 JDWP::expandBufAdd1(pReply, result_tag);
4120 if (width != 0) {
4121 WriteValue(pReply, width, result_value);
4122 }
4123 JDWP::expandBufAdd1(pReply, JDWP::JT_OBJECT);
4124 JDWP::expandBufAddObjectId(pReply, exception);
4125
4126 // Now we know the size, we can complete the JDWP header.
4127 uint8_t* buf = expandBufGetBuffer(pReply);
4128 JDWP::Set4BE(buf + kJDWPHeaderSizeOffset, expandBufGetLength(pReply));
4129 JDWP::Set4BE(buf + kJDWPHeaderIdOffset, request_id);
4130 JDWP::Set1(buf + kJDWPHeaderFlagsOffset, kJDWPFlagReply); // flags
4131 JDWP::Set2BE(buf + kJDWPHeaderErrorCodeOffset, JDWP::ERR_NONE);
4132}
4133
4134void Dbg::FinishInvokeMethod(DebugInvokeReq* pReq) {
4135 CHECK_NE(Thread::Current(), GetDebugThread()) << "This must be called by the event thread";
4136
4137 JDWP::ExpandBuf* const pReply = pReq->reply;
4138 CHECK(pReply != nullptr) << "No reply attached to DebugInvokeReq";
4139
4140 // We need to prevent other threads (including JDWP thread) from interacting with the debugger
4141 // while we send the reply but are not yet suspended. The JDWP token will be released just before
4142 // we suspend ourself again (see ThreadList::SuspendSelfForDebugger).
4143 gJdwpState->AcquireJdwpTokenForEvent(pReq->thread_id);
4144
4145 // Send the reply unless the debugger detached before the completion of the method.
4146 if (IsDebuggerActive()) {
4147 const size_t replyDataLength = expandBufGetLength(pReply) - kJDWPHeaderLen;
4148 VLOG(jdwp) << StringPrintf("REPLY INVOKE id=0x%06x (length=%zu)",
4149 pReq->request_id, replyDataLength);
4150
4151 gJdwpState->SendRequest(pReply);
4152 } else {
4153 VLOG(jdwp) << "Not sending invoke reply because debugger detached";
Elliott Hughesd07986f2011-12-06 18:27:45 -08004154 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004155}
4156
Elliott Hughesd07986f2011-12-06 18:27:45 -08004157/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004158 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004159 * need to process each, accumulate the replies, and ship the whole thing
4160 * back.
4161 *
4162 * Returns "true" if we have a reply. The reply buffer is newly allocated,
4163 * and includes the chunk type/length, followed by the data.
4164 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08004165 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004166 * chunk. If this becomes inconvenient we will need to adapt.
4167 */
Ian Rogersc0542af2014-09-03 16:16:56 -07004168bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004169 Thread* self = Thread::Current();
4170 JNIEnv* env = self->GetJniEnv();
4171
Ian Rogersc0542af2014-09-03 16:16:56 -07004172 uint32_t type = request->ReadUnsigned32("type");
4173 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004174
4175 // Create a byte[] corresponding to 'request'.
Ian Rogersc0542af2014-09-03 16:16:56 -07004176 size_t request_length = request->size();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004177 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Ian Rogersc0542af2014-09-03 16:16:56 -07004178 if (dataArray.get() == nullptr) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004179 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004180 env->ExceptionClear();
4181 return false;
4182 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004183 env->SetByteArrayRegion(dataArray.get(), 0, request_length,
4184 reinterpret_cast<const jbyte*>(request->data()));
4185 request->Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004186
4187 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004188 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004189 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08004190 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004191 return false;
4192 }
4193
4194 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07004195 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4196 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004197 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004198 if (env->ExceptionCheck()) {
4199 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
4200 env->ExceptionDescribe();
4201 env->ExceptionClear();
4202 return false;
4203 }
4204
Ian Rogersc0542af2014-09-03 16:16:56 -07004205 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004206 return false;
4207 }
4208
4209 /*
4210 * Pull the pieces out of the chunk. We copy the results into a
4211 * newly-allocated buffer that the caller can free. We don't want to
4212 * continue using the Chunk object because nothing has a reference to it.
4213 *
4214 * We could avoid this by returning type/data/offset/length and having
4215 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07004216 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004217 * if we have responses for multiple chunks.
4218 *
4219 * So we're pretty much stuck with copying data around multiple times.
4220 */
Elliott Hugheseac76672012-05-24 21:56:51 -07004221 ScopedLocalRef<jbyteArray> replyData(env, reinterpret_cast<jbyteArray>(env->GetObjectField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_data)));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004222 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07004223 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07004224 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004225
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004226 VLOG(jdwp) << StringPrintf("DDM reply: type=0x%08x data=%p offset=%d length=%d", type, replyData.get(), offset, length);
Ian Rogersc0542af2014-09-03 16:16:56 -07004227 if (length == 0 || replyData.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004228 return false;
4229 }
4230
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004231 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004232 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
Ian Rogersc0542af2014-09-03 16:16:56 -07004233 if (reply == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004234 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
4235 return false;
4236 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07004237 JDWP::Set4BE(reply + 0, type);
4238 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004239 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004240
4241 *pReplyBuf = reply;
4242 *pReplyLen = length + kChunkHdrLen;
4243
Elliott Hughes4b9702c2013-02-20 18:13:24 -08004244 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004245 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004246}
4247
Elliott Hughesa2155262011-11-16 16:26:58 -08004248void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004249 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07004250
4251 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07004252 if (self->GetState() != kRunnable) {
4253 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
4254 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07004255 }
4256
4257 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07004258 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07004259 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4260 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
4261 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07004262 if (env->ExceptionCheck()) {
4263 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
4264 env->ExceptionDescribe();
4265 env->ExceptionClear();
4266 }
4267}
4268
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004269void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004270 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004271}
4272
4273void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004274 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07004275 gDdmThreadNotification = false;
4276}
4277
4278/*
Elliott Hughes82188472011-11-07 18:11:48 -08004279 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07004280 *
4281 * Because we broadcast the full set of threads when the notifications are
4282 * first enabled, it's possible for "thread" to be actively executing.
4283 */
Elliott Hughes82188472011-11-07 18:11:48 -08004284void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004285 if (!gDdmThreadNotification) {
4286 return;
4287 }
4288
Elliott Hughes82188472011-11-07 18:11:48 -08004289 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004290 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004291 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07004292 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08004293 } else {
4294 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004295 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004296 StackHandleScope<1> hs(soa.Self());
4297 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa)));
Ian Rogersc0542af2014-09-03 16:16:56 -07004298 size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0;
Jeff Hao848f70a2014-01-15 13:49:50 -08004299 const jchar* chars = (name.Get() != nullptr) ? name->GetValue() : nullptr;
Elliott Hughes82188472011-11-07 18:11:48 -08004300
Elliott Hughes21f32d72011-11-09 17:44:13 -08004301 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004302 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08004303 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08004304 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
4305 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07004306 }
4307}
4308
Elliott Hughes47fce012011-10-25 18:37:19 -07004309void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004310 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07004311 gDdmThreadNotification = enable;
4312 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004313 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
4314 // see a suspension in progress and block until that ends. They then post their own start
4315 // notification.
4316 SuspendVM();
4317 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07004318 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004319 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004320 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004321 threads = Runtime::Current()->GetThreadList()->GetList();
4322 }
4323 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004324 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07004325 for (Thread* thread : threads) {
4326 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004327 }
4328 }
4329 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07004330 }
4331}
4332
Elliott Hughesa2155262011-11-16 16:26:58 -08004333void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07004334 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02004335 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004336 }
Elliott Hughes82188472011-11-07 18:11:48 -08004337 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07004338}
4339
4340void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004341 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004342}
4343
4344void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004345 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004346}
4347
Elliott Hughes82188472011-11-07 18:11:48 -08004348void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004349 CHECK(buf != nullptr);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004350 iovec vec[1];
4351 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
4352 vec[0].iov_len = byte_count;
4353 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004354}
4355
Elliott Hughes21f32d72011-11-09 17:44:13 -08004356void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
4357 DdmSendChunk(type, bytes.size(), &bytes[0]);
4358}
4359
Brian Carlstromf5293522013-07-19 00:24:00 -07004360void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004361 if (gJdwpState == nullptr) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004362 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07004363 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08004364 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07004365 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004366}
4367
Mathieu Chartierad466ad2015-01-08 16:28:08 -08004368JDWP::JdwpState* Dbg::GetJdwpState() {
4369 return gJdwpState;
4370}
4371
Elliott Hughes767a1472011-10-26 18:49:02 -07004372int Dbg::DdmHandleHpifChunk(HpifWhen when) {
4373 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07004374 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07004375 return true;
4376 }
4377
4378 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4379 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4380 return false;
4381 }
4382
4383 gDdmHpifWhen = when;
4384 return true;
4385}
4386
4387bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4388 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4389 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4390 return false;
4391 }
4392
4393 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4394 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4395 return false;
4396 }
4397
4398 if (native) {
4399 gDdmNhsgWhen = when;
4400 gDdmNhsgWhat = what;
4401 } else {
4402 gDdmHpsgWhen = when;
4403 gDdmHpsgWhat = what;
4404 }
4405 return true;
4406}
4407
Elliott Hughes7162ad92011-10-27 14:08:42 -07004408void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4409 // If there's a one-shot 'when', reset it.
4410 if (reason == gDdmHpifWhen) {
4411 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4412 gDdmHpifWhen = HPIF_WHEN_NEVER;
4413 }
4414 }
4415
4416 /*
4417 * Chunk HPIF (client --> server)
4418 *
4419 * Heap Info. General information about the heap,
4420 * suitable for a summary display.
4421 *
4422 * [u4]: number of heaps
4423 *
4424 * For each heap:
4425 * [u4]: heap ID
4426 * [u8]: timestamp in ms since Unix epoch
4427 * [u1]: capture reason (same as 'when' value from server)
4428 * [u4]: max heap size in bytes (-Xmx)
4429 * [u4]: current heap size in bytes
4430 * [u4]: current number of bytes allocated
4431 * [u4]: current number of objects allocated
4432 */
4433 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004434 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004435 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004436 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004437 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004438 JDWP::Append8BE(bytes, MilliTime());
4439 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004440 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4441 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004442 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4443 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004444 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
4445 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07004446}
4447
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004448enum HpsgSolidity {
4449 SOLIDITY_FREE = 0,
4450 SOLIDITY_HARD = 1,
4451 SOLIDITY_SOFT = 2,
4452 SOLIDITY_WEAK = 3,
4453 SOLIDITY_PHANTOM = 4,
4454 SOLIDITY_FINALIZABLE = 5,
4455 SOLIDITY_SWEEP = 6,
4456};
4457
4458enum HpsgKind {
4459 KIND_OBJECT = 0,
4460 KIND_CLASS_OBJECT = 1,
4461 KIND_ARRAY_1 = 2,
4462 KIND_ARRAY_2 = 3,
4463 KIND_ARRAY_4 = 4,
4464 KIND_ARRAY_8 = 5,
4465 KIND_UNKNOWN = 6,
4466 KIND_NATIVE = 7,
4467};
4468
4469#define HPSG_PARTIAL (1<<7)
4470#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4471
Ian Rogers30fab402012-01-23 15:43:46 -08004472class HeapChunkContext {
4473 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004474 // Maximum chunk size. Obtain this from the formula:
4475 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4476 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004477 : buf_(16384 - 16),
4478 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004479 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004480 Reset();
4481 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004482 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004483 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004484 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004485 }
4486 }
4487
4488 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004489 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004490 Flush();
4491 }
4492 }
4493
Mathieu Chartier36dab362014-07-30 14:59:56 -07004494 void SetChunkOverhead(size_t chunk_overhead) {
4495 chunk_overhead_ = chunk_overhead;
4496 }
4497
4498 void ResetStartOfNextChunk() {
4499 startOfNextMemoryChunk_ = nullptr;
4500 }
4501
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004502 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004503 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004504 return;
4505 }
4506
4507 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004508 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4509 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004510
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004511 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4512 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004513 // [u4]: length of piece, in allocation units
4514 // 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 -08004515 pieceLenField_ = p_;
4516 JDWP::Write4BE(&p_, 0x55555555);
4517 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004518 }
4519
Mathieu Chartier90443472015-07-16 20:32:27 -07004520 void Flush() SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004521 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004522 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4523 CHECK(needHeader_);
4524 return;
4525 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004526 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004527 CHECK_LE(&buf_[0], pieceLenField_);
4528 CHECK_LE(pieceLenField_, p_);
4529 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004530
Ian Rogers30fab402012-01-23 15:43:46 -08004531 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004532 Reset();
4533 }
4534
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004535 static void HeapChunkJavaCallback(void* start, void* end, size_t used_bytes, void* arg)
Mathieu Chartier90443472015-07-16 20:32:27 -07004536 SHARED_REQUIRES(Locks::heap_bitmap_lock_,
Ian Rogersb726dcb2012-09-05 08:57:23 -07004537 Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004538 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes);
4539 }
4540
4541 static void HeapChunkNativeCallback(void* start, void* end, size_t used_bytes, void* arg)
Mathieu Chartier90443472015-07-16 20:32:27 -07004542 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004543 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004544 }
4545
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004546 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004547 enum { ALLOCATION_UNIT_SIZE = 8 };
4548
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004549 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004550 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004551 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004552 totalAllocationUnits_ = 0;
4553 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004554 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004555 }
4556
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004557 bool IsNative() const {
4558 return type_ == CHUNK_TYPE("NHSG");
4559 }
4560
4561 // Returns true if the object is not an empty chunk.
Mathieu Chartier90443472015-07-16 20:32:27 -07004562 bool ProcessRecord(void* start, size_t used_bytes) SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004563 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4564 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004565 if (used_bytes == 0) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004566 if (start == nullptr) {
4567 // Reset for start of new heap.
4568 startOfNextMemoryChunk_ = nullptr;
4569 Flush();
4570 }
4571 // Only process in use memory so that free region information
4572 // also includes dlmalloc book keeping.
4573 return false;
Elliott Hughesa2155262011-11-16 16:26:58 -08004574 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004575 if (startOfNextMemoryChunk_ != nullptr) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004576 // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because
4577 // of the use of mmaps, so don't report. If not free memory then start a new segment.
4578 bool flush = true;
4579 if (start > startOfNextMemoryChunk_) {
4580 const size_t kMaxFreeLen = 2 * kPageSize;
4581 void* free_start = startOfNextMemoryChunk_;
4582 void* free_end = start;
4583 const size_t free_len =
4584 reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start);
4585 if (!IsNative() || free_len < kMaxFreeLen) {
4586 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative());
4587 flush = false;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004588 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004589 }
4590 if (flush) {
4591 startOfNextMemoryChunk_ = nullptr;
4592 Flush();
4593 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004594 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004595 return true;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004596 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004597
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004598 void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes)
Mathieu Chartier90443472015-07-16 20:32:27 -07004599 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004600 if (ProcessRecord(start, used_bytes)) {
4601 uint8_t state = ExamineNativeObject(start);
4602 AppendChunk(state, start, used_bytes + chunk_overhead_, true /*is_native*/);
4603 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4604 }
4605 }
4606
4607 void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes)
Mathieu Chartier90443472015-07-16 20:32:27 -07004608 SHARED_REQUIRES(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004609 if (ProcessRecord(start, used_bytes)) {
4610 // Determine the type of this chunk.
4611 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4612 // If it's the same, we should combine them.
4613 uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start));
4614 AppendChunk(state, start, used_bytes + chunk_overhead_, false /*is_native*/);
4615 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4616 }
4617 }
4618
4619 void AppendChunk(uint8_t state, void* ptr, size_t length, bool is_native)
Mathieu Chartier90443472015-07-16 20:32:27 -07004620 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004621 // Make sure there's enough room left in the buffer.
4622 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4623 // 17 bytes for any header.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004624 const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17;
4625 size_t byte_left = &buf_.back() - p_;
4626 if (byte_left < needed) {
4627 if (is_native) {
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004628 // Cannot trigger memory allocation while walking native heap.
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004629 return;
4630 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004631 Flush();
4632 }
4633
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004634 byte_left = &buf_.back() - p_;
4635 if (byte_left < needed) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004636 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4637 << needed << " bytes)";
4638 return;
4639 }
4640 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004641 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004642 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4643 totalAllocationUnits_ += length;
4644 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004645 *p_++ = state | HPSG_PARTIAL;
4646 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004647 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004648 }
Ian Rogers30fab402012-01-23 15:43:46 -08004649 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004650 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004651 }
4652
Mathieu Chartier90443472015-07-16 20:32:27 -07004653 uint8_t ExamineNativeObject(const void* p) SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004654 return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4655 }
4656
4657 uint8_t ExamineJavaObject(mirror::Object* o)
Mathieu Chartier90443472015-07-16 20:32:27 -07004658 SHARED_REQUIRES(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004659 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004660 return HPSG_STATE(SOLIDITY_FREE, 0);
4661 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004662 // It's an allocated chunk. Figure out what it is.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004663 gc::Heap* heap = Runtime::Current()->GetHeap();
4664 if (!heap->IsLiveObjectLocked(o)) {
4665 LOG(ERROR) << "Invalid object in managed heap: " << o;
Elliott Hughesa2155262011-11-16 16:26:58 -08004666 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4667 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004668 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004669 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004670 // The object was probably just created but hasn't been initialized yet.
4671 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4672 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004673 if (!heap->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004674 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004675 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4676 }
Mathieu Chartierf26e1b32015-01-29 10:47:10 -08004677 if (c->GetClass() == nullptr) {
4678 LOG(ERROR) << "Null class of class " << c << " for object " << o;
4679 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4680 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004681 if (c->IsClassClass()) {
4682 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4683 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004684 if (c->IsArrayClass()) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004685 switch (c->GetComponentSize()) {
4686 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4687 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4688 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4689 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4690 }
4691 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004692 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4693 }
4694
Ian Rogers30fab402012-01-23 15:43:46 -08004695 std::vector<uint8_t> buf_;
4696 uint8_t* p_;
4697 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004698 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004699 size_t totalAllocationUnits_;
4700 uint32_t type_;
Ian Rogers30fab402012-01-23 15:43:46 -08004701 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004702 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004703
Elliott Hughesa2155262011-11-16 16:26:58 -08004704 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4705};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004706
Mathieu Chartier36dab362014-07-30 14:59:56 -07004707static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg)
Mathieu Chartier90443472015-07-16 20:32:27 -07004708 SHARED_REQUIRES(Locks::mutator_lock_) REQUIRES(Locks::heap_bitmap_lock_) {
Mathieu Chartier36dab362014-07-30 14:59:56 -07004709 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004710 HeapChunkContext::HeapChunkJavaCallback(
Mathieu Chartier36dab362014-07-30 14:59:56 -07004711 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg);
4712}
4713
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004714void Dbg::DdmSendHeapSegments(bool native) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004715 Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen;
4716 Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004717 if (when == HPSG_WHEN_NEVER) {
4718 return;
4719 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004720 // Figure out what kind of chunks we'll be sending.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004721 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS)
4722 << static_cast<int>(what);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004723
4724 // First, send a heap start chunk.
4725 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004726 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004727 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004728 Thread* self = Thread::Current();
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004729 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004730
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004731 // Send a series of heap segment chunks.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004732 HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native);
Elliott Hughesa2155262011-11-16 16:26:58 -08004733 if (native) {
Andreas Gampec60e1b72015-07-30 08:57:50 -07004734#if defined(__ANDROID__) && defined(USE_DLMALLOC)
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004735 dlmalloc_inspect_all(HeapChunkContext::HeapChunkNativeCallback, &context);
4736 HeapChunkContext::HeapChunkNativeCallback(nullptr, nullptr, 0, &context); // Indicate end of a space.
Christopher Ferrisc4ddc042014-05-13 14:47:50 -07004737#else
4738 UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc";
4739#endif
Elliott Hughesa2155262011-11-16 16:26:58 -08004740 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004741 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004742 for (const auto& space : heap->GetContinuousSpaces()) {
4743 if (space->IsDlMallocSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004744 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004745 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4746 // allocation then the first sizeof(size_t) may belong to it.
4747 context.SetChunkOverhead(sizeof(size_t));
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004748 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004749 } else if (space->IsRosAllocSpace()) {
4750 context.SetChunkOverhead(0);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004751 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4752 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004753 ScopedThreadSuspension sts(self, kSuspended);
Mathieu Chartier4f55e222015-09-04 13:26:21 -07004754 ScopedSuspendAll ssa(__FUNCTION__);
4755 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4756 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004757 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004758 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004759 context.SetChunkOverhead(0);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004760 space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004761 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004762 } else if (space->IsRegionSpace()) {
4763 heap->IncrementDisableMovingGC(self);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004764 {
4765 ScopedThreadSuspension sts(self, kSuspended);
Mathieu Chartier4f55e222015-09-04 13:26:21 -07004766 ScopedSuspendAll ssa(__FUNCTION__);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004767 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4768 context.SetChunkOverhead(0);
4769 space->AsRegionSpace()->Walk(BumpPointerSpaceCallback, &context);
4770 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004771 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004772 heap->DecrementDisableMovingGC(self);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004773 } else {
4774 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004775 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004776 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004777 }
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004778 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004779 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004780 context.SetChunkOverhead(0);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004781 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004782 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004783
4784 // Finally, send a heap end chunk.
4785 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07004786}
4787
Brian Carlstrom306db812014-09-05 13:01:41 -07004788void Dbg::SetAllocTrackingEnabled(bool enable) {
Man Cao8c2ff642015-05-27 17:25:30 -07004789 gc::AllocRecordObjectMap::SetAllocTrackingEnabled(enable);
Elliott Hughes545a0642011-11-08 19:10:03 -08004790}
4791
4792void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004793 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004794 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Man Cao8c2ff642015-05-27 17:25:30 -07004795 if (!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled()) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004796 LOG(INFO) << "Not recording tracked allocations";
4797 return;
4798 }
Man Cao8c2ff642015-05-27 17:25:30 -07004799 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords();
4800 CHECK(records != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004801
Man Cao1ed11b92015-06-11 22:47:35 -07004802 const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize());
Brian Carlstrom306db812014-09-05 13:01:41 -07004803 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004804
Man Cao8c2ff642015-05-27 17:25:30 -07004805 LOG(INFO) << "Tracked allocations, (count=" << count << ")";
4806 for (auto it = records->RBegin(), end = records->REnd();
4807 count > 0 && it != end; count--, it++) {
4808 const gc::AllocRecord* record = it->second;
Elliott Hughes545a0642011-11-08 19:10:03 -08004809
Man Cao8c2ff642015-05-27 17:25:30 -07004810 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->GetTid(), record->ByteCount())
Man Cao42c3c332015-06-23 16:38:25 -07004811 << PrettyClass(record->GetClass());
Elliott Hughes545a0642011-11-08 19:10:03 -08004812
Man Cao8c2ff642015-05-27 17:25:30 -07004813 for (size_t stack_frame = 0, depth = record->GetDepth(); stack_frame < depth; ++stack_frame) {
4814 const gc::AllocRecordStackTraceElement& stack_element = record->StackElement(stack_frame);
4815 ArtMethod* m = stack_element.GetMethod();
4816 LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element.ComputeLineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004817 }
4818
4819 // pause periodically to help logcat catch up
4820 if ((count % 5) == 0) {
4821 usleep(40000);
4822 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004823 }
4824}
4825
4826class StringTable {
4827 public:
4828 StringTable() {
4829 }
4830
Mathieu Chartier4345c462014-06-27 10:20:14 -07004831 void Add(const std::string& str) {
4832 table_.insert(str);
4833 }
4834
4835 void Add(const char* str) {
4836 table_.insert(str);
Elliott Hughes545a0642011-11-08 19:10:03 -08004837 }
4838
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004839 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004840 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004841 if (it == table_.end()) {
4842 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4843 }
4844 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004845 }
4846
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004847 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004848 return table_.size();
4849 }
4850
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004851 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004852 for (const std::string& str : table_) {
4853 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004854 size_t s_len = CountModifiedUtf8Chars(s);
Christopher Ferris8a354052015-04-24 17:23:53 -07004855 std::unique_ptr<uint16_t[]> s_utf16(new uint16_t[s_len]);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004856 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4857 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004858 }
4859 }
4860
4861 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004862 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004863 DISALLOW_COPY_AND_ASSIGN(StringTable);
4864};
4865
Mathieu Chartiere401d142015-04-22 13:56:20 -07004866static const char* GetMethodSourceFile(ArtMethod* method)
Mathieu Chartier90443472015-07-16 20:32:27 -07004867 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004868 DCHECK(method != nullptr);
4869 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004870 return (source_file != nullptr) ? source_file : "";
4871}
4872
Elliott Hughes545a0642011-11-08 19:10:03 -08004873/*
4874 * The data we send to DDMS contains everything we have recorded.
4875 *
4876 * Message header (all values big-endian):
4877 * (1b) message header len (to allow future expansion); includes itself
4878 * (1b) entry header len
4879 * (1b) stack frame len
4880 * (2b) number of entries
4881 * (4b) offset to string table from start of message
4882 * (2b) number of class name strings
4883 * (2b) number of method name strings
4884 * (2b) number of source file name strings
4885 * For each entry:
4886 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004887 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004888 * (2b) allocated object's class name index
4889 * (1b) stack depth
4890 * For each stack frame:
4891 * (2b) method's class name
4892 * (2b) method name
4893 * (2b) method source file
4894 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4895 * (xb) class name strings
4896 * (xb) method name strings
4897 * (xb) source file strings
4898 *
4899 * As with other DDM traffic, strings are sent as a 4-byte length
4900 * followed by UTF-16 data.
4901 *
4902 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07004903 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004904 * each table, but in practice there should be far fewer.
4905 *
4906 * The chief reason for using a string table here is to keep the size of
4907 * the DDMS message to a minimum. This is partly to make the protocol
4908 * efficient, but also because we have to form the whole thing up all at
4909 * once in a memory buffer.
4910 *
4911 * We use separate string tables for class names, method names, and source
4912 * files to keep the indexes small. There will generally be no overlap
4913 * between the contents of these tables.
4914 */
4915jbyteArray Dbg::GetRecentAllocations() {
Ian Rogerscf7f1912014-10-22 22:06:39 -07004916 if ((false)) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004917 DumpRecentAllocations();
4918 }
4919
Ian Rogers50b35e22012-10-04 10:09:15 -07004920 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004921 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004922 {
Brian Carlstrom306db812014-09-05 13:01:41 -07004923 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Man Cao8c2ff642015-05-27 17:25:30 -07004924 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords();
4925 // In case this method is called when allocation tracker is disabled,
4926 // we should still send some data back.
4927 gc::AllocRecordObjectMap dummy;
4928 if (records == nullptr) {
4929 CHECK(!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled());
4930 records = &dummy;
4931 }
Man Cao41656de2015-07-06 18:53:15 -07004932 // We don't need to wait on the condition variable records->new_record_condition_, because this
4933 // function only reads the class objects, which are already marked so it doesn't change their
4934 // reachability.
Man Cao8c2ff642015-05-27 17:25:30 -07004935
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004936 //
4937 // Part 1: generate string tables.
4938 //
4939 StringTable class_names;
4940 StringTable method_names;
4941 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004942
Man Cao1ed11b92015-06-11 22:47:35 -07004943 const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize());
Brian Carlstrom306db812014-09-05 13:01:41 -07004944 uint16_t count = capped_count;
Man Cao8c2ff642015-05-27 17:25:30 -07004945 for (auto it = records->RBegin(), end = records->REnd();
4946 count > 0 && it != end; count--, it++) {
4947 const gc::AllocRecord* record = it->second;
Ian Rogers1ff3c982014-08-12 02:30:58 -07004948 std::string temp;
Man Cao41656de2015-07-06 18:53:15 -07004949 class_names.Add(record->GetClassDescriptor(&temp));
Man Cao8c2ff642015-05-27 17:25:30 -07004950 for (size_t i = 0, depth = record->GetDepth(); i < depth; i++) {
4951 ArtMethod* m = record->StackElement(i).GetMethod();
4952 class_names.Add(m->GetDeclaringClassDescriptor());
4953 method_names.Add(m->GetName());
4954 filenames.Add(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004955 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004956 }
4957
Man Cao8c2ff642015-05-27 17:25:30 -07004958 LOG(INFO) << "recent allocation records: " << capped_count;
4959 LOG(INFO) << "allocation records all objects: " << records->Size();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004960
4961 //
4962 // Part 2: Generate the output and store it in the buffer.
4963 //
4964
4965 // (1b) message header len (to allow future expansion); includes itself
4966 // (1b) entry header len
4967 // (1b) stack frame len
4968 const int kMessageHeaderLen = 15;
4969 const int kEntryHeaderLen = 9;
4970 const int kStackFrameLen = 8;
4971 JDWP::Append1BE(bytes, kMessageHeaderLen);
4972 JDWP::Append1BE(bytes, kEntryHeaderLen);
4973 JDWP::Append1BE(bytes, kStackFrameLen);
4974
4975 // (2b) number of entries
4976 // (4b) offset to string table from start of message
4977 // (2b) number of class name strings
4978 // (2b) number of method name strings
4979 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07004980 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004981 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004982 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004983 JDWP::Append2BE(bytes, class_names.Size());
4984 JDWP::Append2BE(bytes, method_names.Size());
4985 JDWP::Append2BE(bytes, filenames.Size());
4986
Ian Rogers1ff3c982014-08-12 02:30:58 -07004987 std::string temp;
Man Cao8c2ff642015-05-27 17:25:30 -07004988 count = capped_count;
4989 // The last "count" number of allocation records in "records" are the most recent "count" number
4990 // of allocations. Reverse iterate to get them. The most recent allocation is sent first.
4991 for (auto it = records->RBegin(), end = records->REnd();
4992 count > 0 && it != end; count--, it++) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004993 // For each entry:
4994 // (4b) total allocation size
4995 // (2b) thread id
4996 // (2b) allocated object's class name index
4997 // (1b) stack depth
Man Cao8c2ff642015-05-27 17:25:30 -07004998 const gc::AllocRecord* record = it->second;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004999 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07005000 size_t allocated_object_class_name_index =
Man Cao41656de2015-07-06 18:53:15 -07005001 class_names.IndexOf(record->GetClassDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07005002 JDWP::Append4BE(bytes, record->ByteCount());
Man Cao8c2ff642015-05-27 17:25:30 -07005003 JDWP::Append2BE(bytes, static_cast<uint16_t>(record->GetTid()));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005004 JDWP::Append2BE(bytes, allocated_object_class_name_index);
5005 JDWP::Append1BE(bytes, stack_depth);
5006
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005007 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
5008 // For each stack frame:
5009 // (2b) method's class name
5010 // (2b) method name
5011 // (2b) method source file
5012 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Man Cao8c2ff642015-05-27 17:25:30 -07005013 ArtMethod* m = record->StackElement(stack_frame).GetMethod();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07005014 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
5015 size_t method_name_index = method_names.IndexOf(m->GetName());
5016 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005017 JDWP::Append2BE(bytes, class_name_index);
5018 JDWP::Append2BE(bytes, method_name_index);
5019 JDWP::Append2BE(bytes, file_name_index);
Man Cao8c2ff642015-05-27 17:25:30 -07005020 JDWP::Append2BE(bytes, record->StackElement(stack_frame).ComputeLineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005021 }
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005022 }
5023
5024 // (xb) class name strings
5025 // (xb) method name strings
5026 // (xb) source file strings
5027 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
5028 class_names.WriteTo(bytes);
5029 method_names.WriteTo(bytes);
5030 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08005031 }
Ian Rogers50b35e22012-10-04 10:09:15 -07005032 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08005033 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07005034 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08005035 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
5036 }
5037 return result;
5038}
5039
Mathieu Chartiere401d142015-04-22 13:56:20 -07005040ArtMethod* DeoptimizationRequest::Method() const {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07005041 ScopedObjectAccessUnchecked soa(Thread::Current());
5042 return soa.DecodeMethod(method_);
5043}
5044
Mathieu Chartiere401d142015-04-22 13:56:20 -07005045void DeoptimizationRequest::SetMethod(ArtMethod* m) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07005046 ScopedObjectAccessUnchecked soa(Thread::Current());
5047 method_ = soa.EncodeMethod(m);
5048}
5049
Mathieu Chartiera6b1ead2015-10-06 10:32:38 -07005050void Dbg::VisitRoots(RootVisitor* visitor) {
5051 // Visit breakpoint roots, used to prevent unloading of methods with breakpoints.
5052 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
5053 BufferedRootVisitor<128> root_visitor(visitor, RootInfo(kRootVMInternal));
5054 for (Breakpoint& breakpoint : gBreakpoints) {
5055 breakpoint.Method()->VisitRoots(root_visitor, sizeof(void*));
5056 }
5057}
5058
Elliott Hughes872d4ec2011-10-21 17:07:15 -07005059} // namespace art