| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1 | /* |
| 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 Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 19 | #include <sys/uio.h> |
| 20 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 21 | #include <functional> |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 22 | #include <memory> |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 23 | #include <set> |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 24 | #include <vector> |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 25 | |
| Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 26 | #include "android-base/macros.h" |
| Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 27 | #include "android-base/stringprintf.h" |
| 28 | |
| Ian Rogers | 166db04 | 2013-07-26 12:05:57 -0700 | [diff] [blame] | 29 | #include "arch/context.h" |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 30 | #include "art_field-inl.h" |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 31 | #include "art_method-inl.h" |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 32 | #include "base/enums.h" |
| Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 33 | #include "base/memory_tool.h" |
| David Sehr | 67bf42e | 2018-02-26 16:43:04 -0800 | [diff] [blame] | 34 | #include "base/safe_map.h" |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 35 | #include "base/strlcpy.h" |
| Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 36 | #include "base/time_utils.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 37 | #include "class_linker-inl.h" |
| Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 38 | #include "class_linker.h" |
| David Sehr | b2ec9f5 | 2018-02-21 13:20:31 -0800 | [diff] [blame] | 39 | #include "dex/descriptors_names.h" |
| David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 40 | #include "dex/dex_file-inl.h" |
| 41 | #include "dex/dex_file_annotations.h" |
| 42 | #include "dex/dex_file_types.h" |
| 43 | #include "dex/dex_instruction.h" |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 44 | #include "dex/utf.h" |
| Mingyao Yang | 6ea1a0e | 2016-01-29 12:12:49 -0800 | [diff] [blame] | 45 | #include "entrypoints/runtime_asm_entrypoints.h" |
| Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 46 | #include "gc/accounting/card_table-inl.h" |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 47 | #include "gc/allocation_record.h" |
| Andreas Gampe | 94c589d | 2017-12-27 12:43:01 -0800 | [diff] [blame] | 48 | #include "gc/gc_cause.h" |
| Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 49 | #include "gc/scoped_gc_critical_section.h" |
| Andreas Gampe | 0c18338 | 2017-07-13 22:26:24 -0700 | [diff] [blame] | 50 | #include "gc/space/bump_pointer_space-walk-inl.h" |
| Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 51 | #include "gc/space/large_object_space.h" |
| 52 | #include "gc/space/space-inl.h" |
| Andreas Gampe | 513061a | 2017-06-01 09:17:34 -0700 | [diff] [blame] | 53 | #include "handle_scope-inl.h" |
| Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 54 | #include "instrumentation.h" |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 55 | #include "jdwp/jdwp_priv.h" |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 56 | #include "jdwp/object_registry-inl.h" |
| Vladimir Marko | a3ad0cd | 2018-05-04 10:06:38 +0100 | [diff] [blame] | 57 | #include "jni/jni_internal.h" |
| Mathieu Chartier | 28bd2e4 | 2016-10-04 13:54:57 -0700 | [diff] [blame] | 58 | #include "jvalue-inl.h" |
| Andreas Gampe | 8e0f043 | 2018-10-24 13:38:03 -0700 | [diff] [blame] | 59 | #include "mirror/array-alloc-inl.h" |
| Andreas Gampe | 70f5fd0 | 2018-10-24 19:58:37 -0700 | [diff] [blame] | 60 | #include "mirror/class-alloc-inl.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 61 | #include "mirror/class-inl.h" |
| Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 62 | #include "mirror/class.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 63 | #include "mirror/class_loader.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 64 | #include "mirror/object-inl.h" |
| 65 | #include "mirror/object_array-inl.h" |
| Andreas Gampe | fd63bbf | 2018-10-29 12:55:35 -0700 | [diff] [blame] | 66 | #include "mirror/string-alloc-inl.h" |
| Ian Rogers | b0fa5dc | 2014-04-28 16:47:08 -0700 | [diff] [blame] | 67 | #include "mirror/string-inl.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 68 | #include "mirror/throwable.h" |
| Andreas Gampe | 373a9b5 | 2017-10-18 09:01:57 -0700 | [diff] [blame] | 69 | #include "nativehelper/scoped_local_ref.h" |
| 70 | #include "nativehelper/scoped_primitive_array.h" |
| Nicolas Geoffray | 58cc1cb | 2017-11-20 13:27:29 +0000 | [diff] [blame] | 71 | #include "oat_file.h" |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 72 | #include "obj_ptr-inl.h" |
| Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 73 | #include "reflection.h" |
| Alex Light | 55eccdf | 2019-10-07 13:51:13 +0000 | [diff] [blame] | 74 | #include "reflective_handle.h" |
| 75 | #include "reflective_handle_scope-inl.h" |
| David Srbecky | 28f6cff | 2018-10-16 15:07:28 +0100 | [diff] [blame] | 76 | #include "runtime-inl.h" |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 77 | #include "scoped_thread_state_change-inl.h" |
| Andreas Gampe | 513061a | 2017-06-01 09:17:34 -0700 | [diff] [blame] | 78 | #include "stack.h" |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 79 | #include "thread_list.h" |
| Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 80 | #include "well_known_classes.h" |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 81 | |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 82 | namespace art { |
| 83 | |
| Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 84 | using android::base::StringPrintf; |
| 85 | |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 86 | // The key identifying the debugger to update instrumentation. |
| 87 | static constexpr const char* kDbgInstrumentationKey = "Debugger"; |
| 88 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 89 | // Limit alloc_record_count to the 2BE value (64k-1) that is the limit of the current protocol. |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 90 | static uint16_t CappedAllocRecordCount(size_t alloc_record_count) { |
| Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 91 | const size_t cap = 0xffff; |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 92 | if (alloc_record_count > cap) { |
| 93 | return cap; |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 94 | } |
| 95 | return alloc_record_count; |
| 96 | } |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 97 | |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 98 | class Breakpoint : public ValueObject { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 99 | public: |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 100 | Breakpoint(ArtMethod* method, uint32_t dex_pc, DeoptimizationRequest::Kind deoptimization_kind) |
| Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 101 | : method_(method->GetCanonicalMethod(kRuntimePointerSize)), |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 102 | dex_pc_(dex_pc), |
| 103 | deoptimization_kind_(deoptimization_kind) { |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 104 | CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing || |
| 105 | deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization || |
| 106 | deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization); |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 107 | } |
| 108 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 109 | Breakpoint(const Breakpoint& other) REQUIRES_SHARED(Locks::mutator_lock_) |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 110 | : method_(other.method_), |
| 111 | dex_pc_(other.dex_pc_), |
| 112 | deoptimization_kind_(other.deoptimization_kind_) {} |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 113 | |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 114 | // Method() is called from root visiting, do not use ScopedObjectAccess here or it can cause |
| 115 | // GC to deadlock if another thread tries to call SuspendAll while the GC is in a runnable state. |
| 116 | ArtMethod* Method() const { |
| 117 | return method_; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | uint32_t DexPc() const { |
| 121 | return dex_pc_; |
| 122 | } |
| 123 | |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 124 | DeoptimizationRequest::Kind GetDeoptimizationKind() const { |
| 125 | return deoptimization_kind_; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 126 | } |
| 127 | |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 128 | // Returns true if the method of this breakpoint and the passed in method should be considered the |
| 129 | // same. That is, they are either the same method or they are copied from the same method. |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 130 | bool IsInMethod(ArtMethod* m) const REQUIRES_SHARED(Locks::mutator_lock_) { |
| Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 131 | return method_ == m->GetCanonicalMethod(kRuntimePointerSize); |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 132 | } |
| 133 | |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 134 | private: |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 135 | // The location of this breakpoint. |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 136 | ArtMethod* method_; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 137 | uint32_t dex_pc_; |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 138 | |
| 139 | // Indicates whether breakpoint needs full deoptimization or selective deoptimization. |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 140 | DeoptimizationRequest::Kind deoptimization_kind_; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 141 | }; |
| 142 | |
| Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 143 | static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 144 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 145 | os << StringPrintf("Breakpoint[%s @%#x]", ArtMethod::PrettyMethod(rhs.Method()).c_str(), |
| 146 | rhs.DexPc()); |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 147 | return os; |
| 148 | } |
| 149 | |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 150 | class DebugInstrumentationListener final : public instrumentation::InstrumentationListener { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 151 | public: |
| 152 | DebugInstrumentationListener() {} |
| 153 | virtual ~DebugInstrumentationListener() {} |
| 154 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 155 | void MethodEntered(Thread* thread, |
| 156 | Handle<mirror::Object> this_object, |
| 157 | ArtMethod* method, |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 158 | uint32_t dex_pc) |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 159 | override REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 160 | if (method->IsNative()) { |
| 161 | // TODO: post location events is a suspension point and native method entry stubs aren't. |
| 162 | return; |
| 163 | } |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 164 | if (IsListeningToDexPcMoved()) { |
| 165 | // We also listen to kDexPcMoved instrumentation event so we know the DexPcMoved method is |
| 166 | // going to be called right after us. To avoid sending JDWP events twice for this location, |
| 167 | // we report the event in DexPcMoved. However, we must remind this is method entry so we |
| 168 | // send the METHOD_ENTRY event. And we can also group it with other events for this location |
| 169 | // like BREAKPOINT or SINGLE_STEP (or even METHOD_EXIT if this is a RETURN instruction). |
| 170 | thread->SetDebugMethodEntry(); |
| 171 | } else if (IsListeningToMethodExit() && IsReturn(method, dex_pc)) { |
| 172 | // We also listen to kMethodExited instrumentation event and the current instruction is a |
| 173 | // RETURN so we know the MethodExited method is going to be called right after us. To avoid |
| 174 | // sending JDWP events twice for this location, we report the event(s) in MethodExited. |
| 175 | // However, we must remind this is method entry so we send the METHOD_ENTRY event. And we can |
| 176 | // also group it with other events for this location like BREAKPOINT or SINGLE_STEP. |
| 177 | thread->SetDebugMethodEntry(); |
| 178 | } else { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 179 | Dbg::UpdateDebugger(thread, this_object.Get(), method, 0, Dbg::kMethodEntry, nullptr); |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 180 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 181 | } |
| 182 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 183 | void MethodExited(Thread* thread, |
| 184 | Handle<mirror::Object> this_object, |
| 185 | ArtMethod* method, |
| 186 | uint32_t dex_pc, |
| Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 187 | instrumentation::OptionalFrame frame ATTRIBUTE_UNUSED, |
| 188 | JValue& return_value) |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 189 | override REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 190 | if (method->IsNative()) { |
| 191 | // TODO: post location events is a suspension point and native method entry stubs aren't. |
| 192 | return; |
| 193 | } |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 194 | uint32_t events = Dbg::kMethodExit; |
| 195 | if (thread->IsDebugMethodEntry()) { |
| 196 | // It is also the method entry. |
| 197 | DCHECK(IsReturn(method, dex_pc)); |
| 198 | events |= Dbg::kMethodEntry; |
| 199 | thread->ClearDebugMethodEntry(); |
| 200 | } |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 201 | Dbg::UpdateDebugger(thread, this_object.Get(), method, dex_pc, events, &return_value); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 202 | } |
| 203 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 204 | void MethodUnwind(Thread* thread ATTRIBUTE_UNUSED, |
| 205 | Handle<mirror::Object> this_object ATTRIBUTE_UNUSED, |
| 206 | ArtMethod* method, |
| 207 | uint32_t dex_pc) |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 208 | override REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 209 | // We're not recorded to listen to this kind of event, so complain. |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 210 | LOG(ERROR) << "Unexpected method unwind event in debugger " << ArtMethod::PrettyMethod(method) |
| Sebastien Hertz | 51db44a | 2013-11-19 10:00:29 +0100 | [diff] [blame] | 211 | << " " << dex_pc; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 212 | } |
| 213 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 214 | void DexPcMoved(Thread* thread, |
| 215 | Handle<mirror::Object> this_object, |
| 216 | ArtMethod* method, |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 217 | uint32_t new_dex_pc) |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 218 | override REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 219 | if (IsListeningToMethodExit() && IsReturn(method, new_dex_pc)) { |
| 220 | // We also listen to kMethodExited instrumentation event and the current instruction is a |
| 221 | // RETURN so we know the MethodExited method is going to be called right after us. Like in |
| 222 | // MethodEntered, we delegate event reporting to MethodExited. |
| 223 | // Besides, if this RETURN instruction is the only one in the method, we can send multiple |
| 224 | // JDWP events in the same packet: METHOD_ENTRY, METHOD_EXIT, BREAKPOINT and/or SINGLE_STEP. |
| 225 | // Therefore, we must not clear the debug method entry flag here. |
| 226 | } else { |
| 227 | uint32_t events = 0; |
| 228 | if (thread->IsDebugMethodEntry()) { |
| 229 | // It is also the method entry. |
| 230 | events = Dbg::kMethodEntry; |
| 231 | thread->ClearDebugMethodEntry(); |
| 232 | } |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 233 | Dbg::UpdateDebugger(thread, this_object.Get(), method, new_dex_pc, events, nullptr); |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 234 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 235 | } |
| 236 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 237 | void FieldRead(Thread* thread ATTRIBUTE_UNUSED, |
| 238 | Handle<mirror::Object> this_object, |
| 239 | ArtMethod* method, |
| 240 | uint32_t dex_pc, |
| 241 | ArtField* field) |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 242 | override REQUIRES_SHARED(Locks::mutator_lock_) { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 243 | Dbg::PostFieldAccessEvent(method, dex_pc, this_object.Get(), field); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 244 | } |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 245 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 246 | void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, |
| 247 | Handle<mirror::Object> this_object, |
| 248 | ArtMethod* method, |
| 249 | uint32_t dex_pc, |
| 250 | ArtField* field, |
| Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 251 | const JValue& field_value) |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 252 | override REQUIRES_SHARED(Locks::mutator_lock_) { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 253 | Dbg::PostFieldModificationEvent(method, dex_pc, this_object.Get(), field, &field_value); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 254 | } |
| 255 | |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 256 | void ExceptionThrown(Thread* thread ATTRIBUTE_UNUSED, |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 257 | Handle<mirror::Throwable> exception_object) |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 258 | override REQUIRES_SHARED(Locks::mutator_lock_) { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 259 | Dbg::PostException(exception_object.Get()); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 260 | } |
| 261 | |
| Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 262 | // We only care about branches in the Jit. |
| 263 | void Branch(Thread* /*thread*/, ArtMethod* method, uint32_t dex_pc, int32_t dex_pc_offset) |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 264 | override REQUIRES_SHARED(Locks::mutator_lock_) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 265 | LOG(ERROR) << "Unexpected branch event in debugger " << ArtMethod::PrettyMethod(method) |
| Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 266 | << " " << dex_pc << ", " << dex_pc_offset; |
| Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 267 | } |
| 268 | |
| Alex Light | 798eab0 | 2017-08-23 12:54:53 -0700 | [diff] [blame] | 269 | // TODO Might be worth it to post ExceptionCatch event. |
| 270 | void ExceptionHandled(Thread* thread ATTRIBUTE_UNUSED, |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 271 | Handle<mirror::Throwable> throwable ATTRIBUTE_UNUSED) override { |
| Alex Light | 798eab0 | 2017-08-23 12:54:53 -0700 | [diff] [blame] | 272 | LOG(ERROR) << "Unexpected exception handled event in debugger"; |
| 273 | } |
| 274 | |
| Alex Light | 05f4774 | 2017-09-14 00:34:44 +0000 | [diff] [blame] | 275 | // TODO Might be worth it to implement this. |
| 276 | void WatchedFramePop(Thread* thread ATTRIBUTE_UNUSED, |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 277 | const ShadowFrame& frame ATTRIBUTE_UNUSED) override { |
| Alex Light | 05f4774 | 2017-09-14 00:34:44 +0000 | [diff] [blame] | 278 | LOG(ERROR) << "Unexpected WatchedFramePop event in debugger"; |
| 279 | } |
| Alex Light | 798eab0 | 2017-08-23 12:54:53 -0700 | [diff] [blame] | 280 | |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 281 | private: |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 282 | static bool IsReturn(ArtMethod* method, uint32_t dex_pc) REQUIRES_SHARED(Locks::mutator_lock_) { |
| 283 | return method->DexInstructions().InstructionAt(dex_pc).IsReturn(); |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 284 | } |
| 285 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 286 | static bool IsListeningToDexPcMoved() REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 287 | return IsListeningTo(instrumentation::Instrumentation::kDexPcMoved); |
| 288 | } |
| 289 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 290 | static bool IsListeningToMethodExit() REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 291 | return IsListeningTo(instrumentation::Instrumentation::kMethodExited); |
| 292 | } |
| 293 | |
| 294 | static bool IsListeningTo(instrumentation::Instrumentation::InstrumentationEvent event) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 295 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 296 | return (Dbg::GetInstrumentationEvents() & event) != 0; |
| 297 | } |
| 298 | |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 299 | DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 300 | } gDebugInstrumentationListener; |
| 301 | |
| Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 302 | // JDWP is allowed unless the Zygote forbids it. |
| 303 | static bool gJdwpAllowed = true; |
| 304 | |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 305 | // Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line? |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 306 | static bool gJdwpConfigured = false; |
| 307 | |
| Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 308 | // JDWP options for debugging. Only valid if IsJdwpConfigured() is true. |
| 309 | static JDWP::JdwpOptions gJdwpOptions; |
| 310 | |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 311 | // Runtime JDWP state. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 312 | static JDWP::JdwpState* gJdwpState = nullptr; |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 313 | static bool gDebuggerConnected; // debugger or DDMS is connected. |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 314 | |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 315 | static bool gDdmThreadNotification = false; |
| 316 | |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 317 | // DDMS GC-related settings. |
| 318 | static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER; |
| 319 | static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER; |
| 320 | static Dbg::HpsgWhat gDdmHpsgWhat; |
| 321 | static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER; |
| 322 | static Dbg::HpsgWhat gDdmNhsgWhat; |
| 323 | |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 324 | bool Dbg::gDebuggerActive = false; |
| Sebastien Hertz | 4e5b208 | 2015-03-24 19:03:40 +0100 | [diff] [blame] | 325 | bool Dbg::gDisposed = false; |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 326 | ObjectRegistry* Dbg::gRegistry = nullptr; |
| Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 327 | DebuggerActiveMethodInspectionCallback Dbg::gDebugActiveCallback; |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 328 | DebuggerDdmCallback Dbg::gDebugDdmCallback; |
| Alex Light | 4032071 | 2017-12-14 11:52:04 -0800 | [diff] [blame] | 329 | InternalDebuggerControlCallback Dbg::gDebuggerControlCallback; |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 330 | |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 331 | // Deoptimization support. |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 332 | std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_; |
| 333 | size_t Dbg::full_deoptimization_event_count_ = 0; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 334 | |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 335 | // Instrumentation event reference counters. |
| 336 | size_t Dbg::dex_pc_change_event_ref_count_ = 0; |
| 337 | size_t Dbg::method_enter_event_ref_count_ = 0; |
| 338 | size_t Dbg::method_exit_event_ref_count_ = 0; |
| 339 | size_t Dbg::field_read_event_ref_count_ = 0; |
| 340 | size_t Dbg::field_write_event_ref_count_ = 0; |
| 341 | size_t Dbg::exception_catch_event_ref_count_ = 0; |
| 342 | uint32_t Dbg::instrumentation_events_ = 0; |
| 343 | |
| Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 344 | Dbg::DbgThreadLifecycleCallback Dbg::thread_lifecycle_callback_; |
| Andreas Gampe | 0f01b58 | 2017-01-18 15:22:37 -0800 | [diff] [blame] | 345 | Dbg::DbgClassLoadCallback Dbg::class_load_callback_; |
| Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 346 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 347 | void DebuggerDdmCallback::DdmPublishChunk(uint32_t type, const ArrayRef<const uint8_t>& data) { |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 348 | if (gJdwpState == nullptr) { |
| 349 | VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type; |
| 350 | } else { |
| 351 | iovec vec[1]; |
| 352 | vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(data.data())); |
| 353 | vec[0].iov_len = data.size(); |
| 354 | gJdwpState->DdmSendChunkV(type, vec, 1); |
| 355 | } |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 356 | } |
| 357 | |
| Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 358 | bool DebuggerActiveMethodInspectionCallback::IsMethodBeingInspected(ArtMethod* m ATTRIBUTE_UNUSED) { |
| 359 | return Dbg::IsDebuggerActive(); |
| 360 | } |
| 361 | |
| Alex Light | 0fa1786 | 2017-10-24 13:43:05 -0700 | [diff] [blame] | 362 | bool DebuggerActiveMethodInspectionCallback::IsMethodSafeToJit(ArtMethod* m) { |
| 363 | return !Dbg::MethodHasAnyBreakpoints(m); |
| 364 | } |
| 365 | |
| Alex Light | f285863 | 2018-04-02 11:28:50 -0700 | [diff] [blame] | 366 | bool DebuggerActiveMethodInspectionCallback::MethodNeedsDebugVersion( |
| 367 | ArtMethod* m ATTRIBUTE_UNUSED) { |
| 368 | return Dbg::IsDebuggerActive(); |
| 369 | } |
| 370 | |
| Alex Light | 4032071 | 2017-12-14 11:52:04 -0800 | [diff] [blame] | 371 | void InternalDebuggerControlCallback::StartDebugger() { |
| 372 | // Release the mutator lock. |
| 373 | ScopedThreadStateChange stsc(art::Thread::Current(), kNative); |
| 374 | Dbg::StartJdwp(); |
| 375 | } |
| 376 | |
| 377 | void InternalDebuggerControlCallback::StopDebugger() { |
| 378 | Dbg::StopJdwp(); |
| 379 | } |
| 380 | |
| 381 | bool InternalDebuggerControlCallback::IsDebuggerConfigured() { |
| 382 | return Dbg::IsJdwpConfigured(); |
| 383 | } |
| 384 | |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 385 | // Breakpoints. |
| jeffhao | 09bfc6a | 2012-12-11 18:11:43 -0800 | [diff] [blame] | 386 | static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_); |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 387 | |
| Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 388 | void DebugInvokeReq::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) { |
| 389 | receiver.VisitRootIfNonNull(visitor, root_info); // null for static method call. |
| 390 | klass.VisitRoot(visitor, root_info); |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 391 | } |
| 392 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 393 | void SingleStepControl::AddDexPc(uint32_t dex_pc) { |
| 394 | dex_pcs_.insert(dex_pc); |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 395 | } |
| 396 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 397 | bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const { |
| 398 | return dex_pcs_.find(dex_pc) == dex_pcs_.end(); |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 399 | } |
| 400 | |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 401 | static bool IsBreakpoint(ArtMethod* m, uint32_t dex_pc) |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 402 | REQUIRES(!Locks::breakpoint_lock_) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 403 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 404 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 405 | for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) { |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 406 | if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].IsInMethod(m)) { |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 407 | VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i]; |
| 408 | return true; |
| 409 | } |
| 410 | } |
| 411 | return false; |
| 412 | } |
| 413 | |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 414 | static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread) |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 415 | REQUIRES(!Locks::thread_suspend_count_lock_) { |
| Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 416 | MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_); |
| 417 | // A thread may be suspended for GC; in this code, we really want to know whether |
| 418 | // there's a debugger suspension active. |
| 419 | return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0; |
| 420 | } |
| 421 | |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 422 | static ObjPtr<mirror::Array> DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 423 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 424 | ObjPtr<mirror::Object> o = Dbg::GetObjectRegistry()->Get<mirror::Object>(id, error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 425 | if (o == nullptr) { |
| 426 | *error = JDWP::ERR_INVALID_OBJECT; |
| 427 | return nullptr; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 428 | } |
| 429 | if (!o->IsArrayInstance()) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 430 | *error = JDWP::ERR_INVALID_ARRAY; |
| 431 | return nullptr; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 432 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 433 | *error = JDWP::ERR_NONE; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 434 | return o->AsArray(); |
| 435 | } |
| 436 | |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 437 | static ObjPtr<mirror::Class> DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 438 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 439 | ObjPtr<mirror::Object> o = Dbg::GetObjectRegistry()->Get<mirror::Object>(id, error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 440 | if (o == nullptr) { |
| 441 | *error = JDWP::ERR_INVALID_OBJECT; |
| 442 | return nullptr; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 443 | } |
| 444 | if (!o->IsClass()) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 445 | *error = JDWP::ERR_INVALID_CLASS; |
| 446 | return nullptr; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 447 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 448 | *error = JDWP::ERR_NONE; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 449 | return o->AsClass(); |
| 450 | } |
| 451 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 452 | static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, |
| 453 | JDWP::JdwpError* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 454 | REQUIRES_SHARED(Locks::mutator_lock_) |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 455 | REQUIRES(!Locks::thread_list_lock_, !Locks::thread_suspend_count_lock_) { |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 456 | ObjPtr<mirror::Object> thread_peer = |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 457 | Dbg::GetObjectRegistry()->Get<mirror::Object>(thread_id, error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 458 | if (thread_peer == nullptr) { |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 459 | // This isn't even an object. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 460 | *error = JDWP::ERR_INVALID_OBJECT; |
| 461 | return nullptr; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 462 | } |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 463 | |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 464 | ObjPtr<mirror::Class> java_lang_Thread = |
| 465 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 466 | if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) { |
| 467 | // This isn't a thread. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 468 | *error = JDWP::ERR_INVALID_THREAD; |
| 469 | return nullptr; |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 470 | } |
| 471 | |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 472 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 473 | Thread* thread = Thread::FromManagedThread(soa, thread_peer); |
| 474 | // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a |
| 475 | // zombie. |
| 476 | *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE; |
| 477 | return thread; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 478 | } |
| 479 | |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 480 | static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) { |
| 481 | // JDWP deliberately uses the descriptor characters' ASCII values for its enum. |
| 482 | // Note that by "basic" we mean that we don't get more specific than JT_OBJECT. |
| 483 | return static_cast<JDWP::JdwpTag>(descriptor[0]); |
| 484 | } |
| 485 | |
| Vladimir Marko | c524e9e | 2019-03-26 10:54:50 +0000 | [diff] [blame] | 486 | static JDWP::JdwpTag BasicTagFromClass(ObjPtr<mirror::Class> klass) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 487 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 488 | std::string temp; |
| 489 | const char* descriptor = klass->GetDescriptor(&temp); |
| 490 | return BasicTagFromDescriptor(descriptor); |
| 491 | } |
| 492 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 493 | static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, ObjPtr<mirror::Class> c) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 494 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 495 | CHECK(c != nullptr); |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 496 | if (c->IsArrayClass()) { |
| 497 | return JDWP::JT_ARRAY; |
| 498 | } |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 499 | if (c->IsStringClass()) { |
| 500 | return JDWP::JT_STRING; |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 501 | } |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 502 | if (c->IsClassClass()) { |
| 503 | return JDWP::JT_CLASS_OBJECT; |
| 504 | } |
| 505 | { |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 506 | ObjPtr<mirror::Class> thread_class = |
| 507 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 508 | if (thread_class->IsAssignableFrom(c)) { |
| 509 | return JDWP::JT_THREAD; |
| 510 | } |
| 511 | } |
| 512 | { |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 513 | ObjPtr<mirror::Class> thread_group_class = |
| 514 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ThreadGroup); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 515 | if (thread_group_class->IsAssignableFrom(c)) { |
| 516 | return JDWP::JT_THREAD_GROUP; |
| 517 | } |
| 518 | } |
| 519 | { |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 520 | ObjPtr<mirror::Class> class_loader_class = |
| 521 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ClassLoader); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 522 | if (class_loader_class->IsAssignableFrom(c)) { |
| 523 | return JDWP::JT_CLASS_LOADER; |
| 524 | } |
| 525 | } |
| 526 | return JDWP::JT_OBJECT; |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 527 | } |
| 528 | |
| 529 | /* |
| 530 | * Objects declared to hold Object might actually hold a more specific |
| 531 | * type. The debugger may take a special interest in these (e.g. it |
| 532 | * wants to display the contents of Strings), so we want to return an |
| 533 | * appropriate tag. |
| 534 | * |
| 535 | * Null objects are tagged JT_OBJECT. |
| 536 | */ |
| Vladimir Marko | 423bebb | 2019-03-26 15:17:21 +0000 | [diff] [blame] | 537 | JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, ObjPtr<mirror::Object> o) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 538 | return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass()); |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 539 | } |
| 540 | |
| 541 | static bool IsPrimitiveTag(JDWP::JdwpTag tag) { |
| 542 | switch (tag) { |
| 543 | case JDWP::JT_BOOLEAN: |
| 544 | case JDWP::JT_BYTE: |
| 545 | case JDWP::JT_CHAR: |
| 546 | case JDWP::JT_FLOAT: |
| 547 | case JDWP::JT_DOUBLE: |
| 548 | case JDWP::JT_INT: |
| 549 | case JDWP::JT_LONG: |
| 550 | case JDWP::JT_SHORT: |
| 551 | case JDWP::JT_VOID: |
| 552 | return true; |
| 553 | default: |
| 554 | return false; |
| 555 | } |
| 556 | } |
| 557 | |
| Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 558 | void Dbg::StartJdwp() { |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 559 | if (!gJdwpAllowed || !IsJdwpConfigured()) { |
| Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 560 | // No JDWP for you! |
| 561 | return; |
| 562 | } |
| 563 | |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 564 | CHECK(gRegistry == nullptr); |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 565 | gRegistry = new ObjectRegistry; |
| 566 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 567 | { |
| 568 | // Setup the Ddm listener |
| 569 | ScopedObjectAccess soa(Thread::Current()); |
| 570 | Runtime::Current()->GetRuntimeCallbacks()->AddDdmCallback(&gDebugDdmCallback); |
| 571 | } |
| 572 | |
| Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 573 | // Init JDWP if the debugger is enabled. This may connect out to a |
| 574 | // debugger, passively listen for a debugger, or block waiting for a |
| 575 | // debugger. |
| Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 576 | gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 577 | if (gJdwpState == nullptr) { |
| Elliott Hughes | f8a2df7 | 2011-12-01 12:19:54 -0800 | [diff] [blame] | 578 | // We probably failed because some other process has the port already, which means that |
| 579 | // if we don't abort the user is likely to think they're talking to us when they're actually |
| 580 | // talking to that other process. |
| Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 581 | LOG(FATAL) << "Debugger thread failed to initialize"; |
| Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 582 | } |
| 583 | |
| 584 | // If a debugger has already attached, send the "welcome" message. |
| 585 | // This may cause us to suspend all threads. |
| Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 586 | if (gJdwpState->IsActive()) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 587 | ScopedObjectAccess soa(Thread::Current()); |
| Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 588 | gJdwpState->PostVMStart(); |
| Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 589 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 590 | } |
| 591 | |
| Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 592 | void Dbg::StopJdwp() { |
| Sebastien Hertz | c6345ef | 2014-08-18 19:26:39 +0200 | [diff] [blame] | 593 | // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the |
| 594 | // destruction of gJdwpState). |
| 595 | if (gJdwpState != nullptr && gJdwpState->IsActive()) { |
| 596 | gJdwpState->PostVMDeath(); |
| 597 | } |
| Sebastien Hertz | 0376e6b | 2014-02-06 18:12:59 +0100 | [diff] [blame] | 598 | // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection. |
| Sebastien Hertz | 4e5b208 | 2015-03-24 19:03:40 +0100 | [diff] [blame] | 599 | Dispose(); |
| Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 600 | delete gJdwpState; |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 601 | gJdwpState = nullptr; |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 602 | delete gRegistry; |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 603 | gRegistry = nullptr; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 604 | } |
| 605 | |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 606 | void Dbg::GcDidFinish() { |
| 607 | if (gDdmHpifWhen != HPIF_WHEN_NEVER) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 608 | ScopedObjectAccess soa(Thread::Current()); |
| Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 609 | VLOG(jdwp) << "Sending heap info to DDM"; |
| Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 610 | DdmSendHeapInfo(gDdmHpifWhen); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 611 | } |
| 612 | if (gDdmHpsgWhen != HPSG_WHEN_NEVER) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 613 | ScopedObjectAccess soa(Thread::Current()); |
| Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 614 | VLOG(jdwp) << "Dumping heap to DDM"; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 615 | DdmSendHeapSegments(false); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 616 | } |
| 617 | if (gDdmNhsgWhen != HPSG_WHEN_NEVER) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 618 | ScopedObjectAccess soa(Thread::Current()); |
| Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 619 | VLOG(jdwp) << "Dumping native heap to DDM"; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 620 | DdmSendHeapSegments(true); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 621 | } |
| 622 | } |
| 623 | |
| Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 624 | void Dbg::SetJdwpAllowed(bool allowed) { |
| 625 | gJdwpAllowed = allowed; |
| 626 | } |
| 627 | |
| Leonard Mosescu | eb84221 | 2016-10-06 17:26:36 -0700 | [diff] [blame] | 628 | bool Dbg::IsJdwpAllowed() { |
| 629 | return gJdwpAllowed; |
| 630 | } |
| 631 | |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 632 | DebugInvokeReq* Dbg::GetInvokeReq() { |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 633 | return Thread::Current()->GetInvokeReq(); |
| 634 | } |
| 635 | |
| 636 | Thread* Dbg::GetDebugThread() { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 637 | return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr; |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 638 | } |
| 639 | |
| 640 | void Dbg::ClearWaitForEventThread() { |
| Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 641 | gJdwpState->ReleaseJdwpTokenForEvent(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 642 | } |
| 643 | |
| 644 | void Dbg::Connected() { |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 645 | CHECK(!gDebuggerConnected); |
| Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 646 | VLOG(jdwp) << "JDWP has attached"; |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 647 | gDebuggerConnected = true; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 648 | gDisposed = false; |
| 649 | } |
| 650 | |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 651 | bool Dbg::RequiresDeoptimization() { |
| 652 | // We don't need deoptimization if everything runs with interpreter after |
| 653 | // enabling -Xint mode. |
| 654 | return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly(); |
| 655 | } |
| 656 | |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 657 | void Dbg::GoActive() { |
| 658 | // Enable all debugging features, including scans for breakpoints. |
| 659 | // This is a no-op if we're already active. |
| 660 | // Only called from the JDWP handler thread. |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 661 | if (IsDebuggerActive()) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 662 | return; |
| 663 | } |
| 664 | |
| Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 665 | Thread* const self = Thread::Current(); |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 666 | { |
| 667 | // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected? |
| Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 668 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 669 | CHECK_EQ(gBreakpoints.size(), 0U); |
| 670 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 671 | |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 672 | { |
| Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 673 | MutexLock mu(self, *Locks::deoptimization_lock_); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 674 | CHECK_EQ(deoptimization_requests_.size(), 0U); |
| 675 | CHECK_EQ(full_deoptimization_event_count_, 0U); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 676 | CHECK_EQ(dex_pc_change_event_ref_count_, 0U); |
| 677 | CHECK_EQ(method_enter_event_ref_count_, 0U); |
| 678 | CHECK_EQ(method_exit_event_ref_count_, 0U); |
| 679 | CHECK_EQ(field_read_event_ref_count_, 0U); |
| 680 | CHECK_EQ(field_write_event_ref_count_, 0U); |
| 681 | CHECK_EQ(exception_catch_event_ref_count_, 0U); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 682 | } |
| 683 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 684 | Runtime* runtime = Runtime::Current(); |
| Nicolas Geoffray | 433b79a | 2017-01-30 20:54:45 +0000 | [diff] [blame] | 685 | // Best effort deoptimization if the runtime is non-Java debuggable. This happens when |
| 686 | // ro.debuggable is set, but the application is not debuggable, or when a standalone |
| 687 | // dalvikvm invocation is not passed the debuggable option (-Xcompiler-option --debuggable). |
| 688 | // |
| 689 | // The performance cost of this is non-negligible during native-debugging due to the |
| David Srbecky | f448016 | 2016-03-16 00:06:24 +0000 | [diff] [blame] | 690 | // forced JIT, so we keep the AOT code in that case in exchange for limited native debugging. |
| Nicolas Geoffray | 226805d | 2018-12-14 10:59:02 +0000 | [diff] [blame] | 691 | ScopedSuspendAll ssa(__FUNCTION__); |
| Nicolas Geoffray | 433b79a | 2017-01-30 20:54:45 +0000 | [diff] [blame] | 692 | if (!runtime->IsJavaDebuggable() && |
| 693 | !runtime->GetInstrumentation()->IsForcedInterpretOnly() && |
| 694 | !runtime->IsNativeDebuggable()) { |
| 695 | runtime->DeoptimizeBootImage(); |
| Mingyao Yang | 6ea1a0e | 2016-01-29 12:12:49 -0800 | [diff] [blame] | 696 | } |
| 697 | |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 698 | if (RequiresDeoptimization()) { |
| 699 | runtime->GetInstrumentation()->EnableDeoptimization(); |
| 700 | } |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 701 | instrumentation_events_ = 0; |
| David Srbecky | 28f6cff | 2018-10-16 15:07:28 +0100 | [diff] [blame] | 702 | Runtime::DoAndMaybeSwitchInterpreter([=](){ gDebuggerActive = true; }); |
| Andreas Gampe | 380f0d8 | 2019-06-10 11:01:43 -0700 | [diff] [blame] | 703 | runtime->GetRuntimeCallbacks()->AddClassLoadCallback(Dbg::GetClassLoadCallback()); |
| 704 | runtime->GetRuntimeCallbacks()->AddMethodInspectionCallback(&gDebugActiveCallback); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 705 | LOG(INFO) << "Debugger is active"; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 706 | } |
| 707 | |
| 708 | void Dbg::Disconnected() { |
| Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 709 | CHECK(gDebuggerConnected); |
| 710 | |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 711 | LOG(INFO) << "Debugger is no longer active"; |
| Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 712 | |
| Hiroshi Yamauchi | 98810e3 | 2016-05-24 14:55:40 -0700 | [diff] [blame] | 713 | // Suspend all threads and exclusively acquire the mutator lock. Remove the debugger as a listener |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 714 | // and clear the object registry. |
| 715 | Runtime* runtime = Runtime::Current(); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 716 | Thread* self = Thread::Current(); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 717 | { |
| Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 718 | // Required for DisableDeoptimization. |
| 719 | gc::ScopedGCCriticalSection gcs(self, |
| 720 | gc::kGcCauseInstrumentation, |
| 721 | gc::kCollectorTypeInstrumentation); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 722 | ScopedSuspendAll ssa(__FUNCTION__); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 723 | // Debugger may not be active at this point. |
| 724 | if (IsDebuggerActive()) { |
| 725 | { |
| 726 | // Since we're going to disable deoptimization, we clear the deoptimization requests queue. |
| 727 | // This prevents us from having any pending deoptimization request when the debugger attaches |
| 728 | // to us again while no event has been requested yet. |
| Mathieu Chartier | a6b1ead | 2015-10-06 10:32:38 -0700 | [diff] [blame] | 729 | MutexLock mu(self, *Locks::deoptimization_lock_); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 730 | deoptimization_requests_.clear(); |
| 731 | full_deoptimization_event_count_ = 0U; |
| 732 | } |
| 733 | if (instrumentation_events_ != 0) { |
| 734 | runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener, |
| 735 | instrumentation_events_); |
| 736 | instrumentation_events_ = 0; |
| 737 | } |
| 738 | if (RequiresDeoptimization()) { |
| 739 | runtime->GetInstrumentation()->DisableDeoptimization(kDbgInstrumentationKey); |
| 740 | } |
| David Srbecky | 28f6cff | 2018-10-16 15:07:28 +0100 | [diff] [blame] | 741 | Runtime::DoAndMaybeSwitchInterpreter([=](){ gDebuggerActive = false; }); |
| Andreas Gampe | 380f0d8 | 2019-06-10 11:01:43 -0700 | [diff] [blame] | 742 | runtime->GetRuntimeCallbacks()->RemoveClassLoadCallback(Dbg::GetClassLoadCallback()); |
| 743 | runtime->GetRuntimeCallbacks()->RemoveMethodInspectionCallback( |
| Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 744 | &gDebugActiveCallback); |
| Sebastien Hertz | aaea734 | 2014-02-25 15:10:04 +0100 | [diff] [blame] | 745 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 746 | } |
| Sebastien Hertz | 55f6534 | 2015-01-13 22:48:34 +0100 | [diff] [blame] | 747 | |
| 748 | { |
| 749 | ScopedObjectAccess soa(self); |
| 750 | gRegistry->Clear(); |
| 751 | } |
| 752 | |
| 753 | gDebuggerConnected = false; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 754 | } |
| 755 | |
| Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 756 | void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) { |
| 757 | CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown); |
| 758 | gJdwpOptions = jdwp_options; |
| 759 | gJdwpConfigured = true; |
| Alex Light | 4032071 | 2017-12-14 11:52:04 -0800 | [diff] [blame] | 760 | Runtime::Current()->GetRuntimeCallbacks()->AddDebuggerControlCallback(&gDebuggerControlCallback); |
| Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 761 | } |
| 762 | |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 763 | bool Dbg::IsJdwpConfigured() { |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 764 | return gJdwpConfigured; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 765 | } |
| 766 | |
| 767 | int64_t Dbg::LastDebuggerActivity() { |
| Elliott Hughes | ca95152 | 2011-12-05 12:01:32 -0800 | [diff] [blame] | 768 | return gJdwpState->LastDebuggerActivity(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 769 | } |
| 770 | |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 771 | void Dbg::UndoDebuggerSuspensions() { |
| Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 772 | Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 773 | } |
| 774 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 775 | std::string Dbg::GetClassName(JDWP::RefTypeId class_id) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 776 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 777 | ObjPtr<mirror::Object> o = gRegistry->Get<mirror::Object>(class_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 778 | if (o == nullptr) { |
| 779 | if (error == JDWP::ERR_NONE) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 780 | return "null"; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 781 | } else { |
| 782 | return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id)); |
| 783 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 784 | } |
| 785 | if (!o->IsClass()) { |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 786 | return StringPrintf("non-class %p", o.Ptr()); // This is only used for debugging output anyway. |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 787 | } |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 788 | return GetClassName(o->AsClass()); |
| 789 | } |
| 790 | |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 791 | std::string Dbg::GetClassName(ObjPtr<mirror::Class> klass) { |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 792 | if (klass == nullptr) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 793 | return "null"; |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 794 | } |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 795 | std::string temp; |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 796 | return DescriptorToName(klass->GetDescriptor(&temp)); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 797 | } |
| 798 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 799 | JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) { |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 800 | JDWP::JdwpError status; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 801 | ObjPtr<mirror::Class> c = DecodeClass(id, &status); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 802 | if (c == nullptr) { |
| 803 | *class_object_id = 0; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 804 | return status; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 805 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 806 | *class_object_id = gRegistry->Add(c); |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 807 | return JDWP::ERR_NONE; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 808 | } |
| 809 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 810 | JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) { |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 811 | JDWP::JdwpError status; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 812 | ObjPtr<mirror::Class> c = DecodeClass(id, &status); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 813 | if (c == nullptr) { |
| 814 | *superclass_id = 0; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 815 | return status; |
| 816 | } |
| 817 | if (c->IsInterface()) { |
| 818 | // http://code.google.com/p/android/issues/detail?id=20856 |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 819 | *superclass_id = 0; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 820 | } else { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 821 | *superclass_id = gRegistry->Add(c->GetSuperClass()); |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 822 | } |
| 823 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 824 | } |
| 825 | |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 826 | JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 827 | JDWP::JdwpError error; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 828 | ObjPtr<mirror::Class> c = DecodeClass(id, &error); |
| Andreas Gampe | 7929a48 | 2015-12-30 19:33:49 -0800 | [diff] [blame] | 829 | if (c == nullptr) { |
| 830 | return error; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 831 | } |
| Andreas Gampe | 7929a48 | 2015-12-30 19:33:49 -0800 | [diff] [blame] | 832 | expandBufAddObjectId(pReply, gRegistry->Add(c->GetClassLoader())); |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 833 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 834 | } |
| 835 | |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 836 | JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 837 | JDWP::JdwpError error; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 838 | ObjPtr<mirror::Class> c = DecodeClass(id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 839 | if (c == nullptr) { |
| 840 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 841 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 842 | |
| 843 | uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask; |
| 844 | |
| Yevgeny Rouban | de34eea | 2014-02-15 01:06:03 +0700 | [diff] [blame] | 845 | // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set, |
| 846 | // not interfaces. |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 847 | // Class.getModifiers doesn't return it, but JDWP does, so we set it here. |
| Yevgeny Rouban | de34eea | 2014-02-15 01:06:03 +0700 | [diff] [blame] | 848 | if ((access_flags & kAccInterface) == 0) { |
| 849 | access_flags |= kAccSuper; |
| 850 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 851 | |
| 852 | expandBufAdd4BE(pReply, access_flags); |
| 853 | |
| 854 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 855 | } |
| 856 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 857 | JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) { |
| 858 | JDWP::JdwpError error; |
| Vladimir Marko | 67f0e9c | 2019-03-29 14:00:12 +0000 | [diff] [blame] | 859 | Thread* self = Thread::Current(); |
| 860 | StackHandleScope<1u> hs(self); |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 861 | Handle<mirror::Object> o = hs.NewHandle(gRegistry->Get<mirror::Object>(object_id, &error)); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 862 | if (o == nullptr) { |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 863 | return JDWP::ERR_INVALID_OBJECT; |
| 864 | } |
| 865 | |
| 866 | // Ensure all threads are suspended while we read objects' lock words. |
| Sebastien Hertz | 5426324 | 2014-03-19 18:16:50 +0100 | [diff] [blame] | 867 | CHECK_EQ(self->GetState(), kRunnable); |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 868 | |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 869 | MonitorInfo monitor_info; |
| 870 | { |
| 871 | ScopedThreadSuspension sts(self, kSuspended); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 872 | ScopedSuspendAll ssa(__FUNCTION__); |
| Vladimir Marko | 67f0e9c | 2019-03-29 14:00:12 +0000 | [diff] [blame] | 873 | monitor_info = MonitorInfo(o.Get()); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 874 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 875 | if (monitor_info.owner_ != nullptr) { |
| Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 876 | expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeerFromOtherThread())); |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 877 | } else { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 878 | expandBufAddObjectId(reply, gRegistry->Add(nullptr)); |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 879 | } |
| Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 880 | expandBufAdd4BE(reply, monitor_info.entry_count_); |
| 881 | expandBufAdd4BE(reply, monitor_info.waiters_.size()); |
| 882 | for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) { |
| Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 883 | expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeerFromOtherThread())); |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 884 | } |
| 885 | return JDWP::ERR_NONE; |
| 886 | } |
| 887 | |
| Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 888 | JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 889 | std::vector<JDWP::ObjectId>* monitors, |
| 890 | std::vector<uint32_t>* stack_depths) { |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 891 | struct OwnedMonitorVisitor : public StackVisitor { |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 892 | OwnedMonitorVisitor(Thread* thread, Context* context, |
| Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 893 | std::vector<JDWP::ObjectId>* monitor_vector, |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 894 | std::vector<uint32_t>* stack_depth_vector) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 895 | REQUIRES_SHARED(Locks::mutator_lock_) |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 896 | : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 897 | current_stack_depth(0), |
| 898 | monitors(monitor_vector), |
| 899 | stack_depths(stack_depth_vector) {} |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 900 | |
| 901 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 902 | // annotalysis. |
| Andreas Gampe | fa6a1b0 | 2018-09-07 08:11:55 -0700 | [diff] [blame] | 903 | bool VisitFrame() override NO_THREAD_SAFETY_ANALYSIS { |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 904 | if (!GetMethod()->IsRuntimeMethod()) { |
| 905 | Monitor::VisitLocks(this, AppendOwnedMonitors, this); |
| Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 906 | ++current_stack_depth; |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 907 | } |
| 908 | return true; |
| 909 | } |
| 910 | |
| Vladimir Marko | f52d92f | 2019-03-29 12:33:02 +0000 | [diff] [blame] | 911 | static void AppendOwnedMonitors(ObjPtr<mirror::Object> owned_monitor, void* arg) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 912 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 913 | OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg); |
| Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 914 | visitor->monitors->push_back(gRegistry->Add(owned_monitor)); |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 915 | visitor->stack_depths->push_back(visitor->current_stack_depth); |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 916 | } |
| 917 | |
| Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 918 | size_t current_stack_depth; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 919 | std::vector<JDWP::ObjectId>* const monitors; |
| 920 | std::vector<uint32_t>* const stack_depths; |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 921 | }; |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 922 | |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 923 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 924 | JDWP::JdwpError error; |
| 925 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 926 | if (thread == nullptr) { |
| 927 | return error; |
| 928 | } |
| 929 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 930 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 931 | } |
| Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 932 | std::unique_ptr<Context> context(Context::Create()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 933 | OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths); |
| Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 934 | visitor.WalkStack(); |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 935 | return JDWP::ERR_NONE; |
| 936 | } |
| 937 | |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 938 | JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 939 | JDWP::ObjectId* contended_monitor) { |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 940 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 941 | *contended_monitor = 0; |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 942 | JDWP::JdwpError error; |
| 943 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 944 | if (thread == nullptr) { |
| 945 | return error; |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 946 | } |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 947 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 948 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 949 | } |
| Vladimir Marko | f52d92f | 2019-03-29 12:33:02 +0000 | [diff] [blame] | 950 | ObjPtr<mirror::Object> contended_monitor_obj = Monitor::GetContendedMonitor(thread); |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 951 | // Add() requires the thread_list_lock_ not held to avoid the lock |
| 952 | // level violation. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 953 | *contended_monitor = gRegistry->Add(contended_monitor_obj); |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 954 | return JDWP::ERR_NONE; |
| 955 | } |
| 956 | |
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 957 | JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 958 | std::vector<uint64_t>* counts) { |
| Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 959 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 960 | heap->CollectGarbage(/* clear_soft_references= */ false, gc::GcCause::kGcCauseDebugger); |
| Mathieu Chartier | e8a3c57 | 2016-10-11 16:52:17 -0700 | [diff] [blame] | 961 | VariableSizedHandleScope hs(Thread::Current()); |
| Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 962 | std::vector<Handle<mirror::Class>> classes; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 963 | counts->clear(); |
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 964 | for (size_t i = 0; i < class_ids.size(); ++i) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 965 | JDWP::JdwpError error; |
| Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 966 | ObjPtr<mirror::Class> c = DecodeClass(class_ids[i], &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 967 | if (c == nullptr) { |
| 968 | return error; |
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 969 | } |
| Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 970 | classes.push_back(hs.NewHandle(c)); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 971 | counts->push_back(0); |
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 972 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 973 | heap->CountInstances(classes, false, &(*counts)[0]); |
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 974 | return JDWP::ERR_NONE; |
| 975 | } |
| 976 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 977 | JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, |
| 978 | std::vector<JDWP::ObjectId>* instances) { |
| Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 979 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 980 | // We only want reachable instances, so do a GC. |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 981 | heap->CollectGarbage(/* clear_soft_references= */ false, gc::GcCause::kGcCauseDebugger); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 982 | JDWP::JdwpError error; |
| Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 983 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
| Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 984 | if (c == nullptr) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 985 | return error; |
| Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 986 | } |
| Mathieu Chartier | 2d85595 | 2016-10-12 19:37:59 -0700 | [diff] [blame] | 987 | VariableSizedHandleScope hs(Thread::Current()); |
| 988 | std::vector<Handle<mirror::Object>> raw_instances; |
| Richard Uhler | 660be6f | 2017-11-22 16:12:29 +0000 | [diff] [blame] | 989 | Runtime::Current()->GetHeap()->GetInstances(hs, |
| 990 | hs.NewHandle(c), |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 991 | /* use_is_assignable_from= */ false, |
| Richard Uhler | 660be6f | 2017-11-22 16:12:29 +0000 | [diff] [blame] | 992 | max_count, |
| 993 | raw_instances); |
| Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 994 | for (size_t i = 0; i < raw_instances.size(); ++i) { |
| Mathieu Chartier | 2d85595 | 2016-10-12 19:37:59 -0700 | [diff] [blame] | 995 | instances->push_back(gRegistry->Add(raw_instances[i].Get())); |
| Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 996 | } |
| 997 | return JDWP::ERR_NONE; |
| 998 | } |
| 999 | |
| Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 1000 | JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1001 | std::vector<JDWP::ObjectId>* referring_objects) { |
| Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 1002 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 1003 | heap->CollectGarbage(/* clear_soft_references= */ false, gc::GcCause::kGcCauseDebugger); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1004 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1005 | ObjPtr<mirror::Object> o = gRegistry->Get<mirror::Object>(object_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1006 | if (o == nullptr) { |
| Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 1007 | return JDWP::ERR_INVALID_OBJECT; |
| 1008 | } |
| Mathieu Chartier | aea9bfb | 2016-10-12 19:19:56 -0700 | [diff] [blame] | 1009 | VariableSizedHandleScope hs(Thread::Current()); |
| 1010 | std::vector<Handle<mirror::Object>> raw_instances; |
| 1011 | heap->GetReferringObjects(hs, hs.NewHandle(o), max_count, raw_instances); |
| Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 1012 | for (size_t i = 0; i < raw_instances.size(); ++i) { |
| Mathieu Chartier | aea9bfb | 2016-10-12 19:19:56 -0700 | [diff] [blame] | 1013 | referring_objects->push_back(gRegistry->Add(raw_instances[i].Get())); |
| Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 1014 | } |
| 1015 | return JDWP::ERR_NONE; |
| 1016 | } |
| 1017 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1018 | JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) { |
| 1019 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1020 | ObjPtr<mirror::Object> o = gRegistry->Get<mirror::Object>(object_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1021 | if (o == nullptr) { |
| Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1022 | return JDWP::ERR_INVALID_OBJECT; |
| 1023 | } |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1024 | gRegistry->DisableCollection(object_id); |
| 1025 | return JDWP::ERR_NONE; |
| 1026 | } |
| 1027 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1028 | JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) { |
| 1029 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1030 | ObjPtr<mirror::Object> o = gRegistry->Get<mirror::Object>(object_id, &error); |
| Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1031 | // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI |
| 1032 | // also ignores these cases and never return an error. However it's not obvious why this command |
| 1033 | // should behave differently from DisableCollection and IsCollected commands. So let's be more |
| 1034 | // strict and return an error if this happens. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1035 | if (o == nullptr) { |
| Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1036 | return JDWP::ERR_INVALID_OBJECT; |
| 1037 | } |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1038 | gRegistry->EnableCollection(object_id); |
| 1039 | return JDWP::ERR_NONE; |
| 1040 | } |
| 1041 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1042 | JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) { |
| 1043 | *is_collected = true; |
| Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 1044 | if (object_id == 0) { |
| 1045 | // Null object id is invalid. |
| Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1046 | return JDWP::ERR_INVALID_OBJECT; |
| 1047 | } |
| Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 1048 | // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However |
| 1049 | // the RI seems to ignore this and assume object has been collected. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1050 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1051 | ObjPtr<mirror::Object> o = gRegistry->Get<mirror::Object>(object_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1052 | if (o != nullptr) { |
| 1053 | *is_collected = gRegistry->IsCollected(object_id); |
| Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 1054 | } |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1055 | return JDWP::ERR_NONE; |
| 1056 | } |
| 1057 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1058 | void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) { |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1059 | gRegistry->DisposeObject(object_id, reference_count); |
| 1060 | } |
| 1061 | |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1062 | JDWP::JdwpTypeTag Dbg::GetTypeTag(ObjPtr<mirror::Class> klass) { |
| Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1063 | DCHECK(klass != nullptr); |
| 1064 | if (klass->IsArrayClass()) { |
| 1065 | return JDWP::TT_ARRAY; |
| 1066 | } else if (klass->IsInterface()) { |
| 1067 | return JDWP::TT_INTERFACE; |
| 1068 | } else { |
| 1069 | return JDWP::TT_CLASS; |
| 1070 | } |
| 1071 | } |
| 1072 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1073 | JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1074 | JDWP::JdwpError error; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1075 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1076 | if (c == nullptr) { |
| 1077 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1078 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1079 | |
| Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1080 | JDWP::JdwpTypeTag type_tag = GetTypeTag(c); |
| 1081 | expandBufAdd1(pReply, type_tag); |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1082 | expandBufAddRefTypeId(pReply, class_id); |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1083 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1084 | } |
| 1085 | |
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1086 | // Get the complete list of reference classes (i.e. all classes except |
| 1087 | // the primitive types). |
| 1088 | // Returns a newly-allocated buffer full of RefTypeId values. |
| 1089 | class ClassListCreator : public ClassVisitor { |
| 1090 | public: |
| 1091 | explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes) : classes_(classes) {} |
| 1092 | |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 1093 | bool operator()(ObjPtr<mirror::Class> c) override REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1094 | if (!c->IsPrimitive()) { |
| 1095 | classes_->push_back(Dbg::GetObjectRegistry()->AddRefType(c)); |
| 1096 | } |
| 1097 | return true; |
| 1098 | } |
| 1099 | |
| 1100 | private: |
| 1101 | std::vector<JDWP::RefTypeId>* const classes_; |
| 1102 | }; |
| 1103 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1104 | void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) { |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1105 | ClassListCreator clc(classes); |
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1106 | Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&clc); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1107 | } |
| 1108 | |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1109 | JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, |
| 1110 | uint32_t* pStatus, std::string* pDescriptor) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1111 | JDWP::JdwpError error; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1112 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1113 | if (c == nullptr) { |
| 1114 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1115 | } |
| 1116 | |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1117 | if (c->IsArrayClass()) { |
| 1118 | *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED; |
| 1119 | *pTypeTag = JDWP::TT_ARRAY; |
| 1120 | } else { |
| 1121 | if (c->IsErroneous()) { |
| 1122 | *pStatus = JDWP::CS_ERROR; |
| 1123 | } else { |
| 1124 | *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED; |
| 1125 | } |
| 1126 | *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS; |
| 1127 | } |
| 1128 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1129 | if (pDescriptor != nullptr) { |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1130 | std::string temp; |
| 1131 | *pDescriptor = c->GetDescriptor(&temp); |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1132 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1133 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1134 | } |
| 1135 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1136 | void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) { |
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 1137 | std::vector<ObjPtr<mirror::Class>> classes; |
| Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 1138 | Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1139 | ids->clear(); |
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 1140 | for (ObjPtr<mirror::Class> c : classes) { |
| 1141 | ids->push_back(gRegistry->Add(c)); |
| Elliott Hughes | 6fa602d | 2011-12-02 17:54:25 -0800 | [diff] [blame] | 1142 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1143 | } |
| 1144 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1145 | JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) { |
| 1146 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1147 | ObjPtr<mirror::Object> o = gRegistry->Get<mirror::Object>(object_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1148 | if (o == nullptr) { |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1149 | return JDWP::ERR_INVALID_OBJECT; |
| Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 1150 | } |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1151 | |
| Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1152 | JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass()); |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1153 | JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass()); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1154 | |
| 1155 | expandBufAdd1(pReply, type_tag); |
| 1156 | expandBufAddRefTypeId(pReply, type_id); |
| 1157 | |
| 1158 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1159 | } |
| 1160 | |
| Ian Rogers | fc0e94b | 2013-09-23 23:51:32 -0700 | [diff] [blame] | 1161 | JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1162 | JDWP::JdwpError error; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1163 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1164 | if (c == nullptr) { |
| 1165 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1166 | } |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1167 | std::string temp; |
| 1168 | *signature = c->GetDescriptor(&temp); |
| Elliott Hughes | 1fe7afb | 2012-02-13 17:23:03 -0800 | [diff] [blame] | 1169 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1170 | } |
| 1171 | |
| Orion Hodson | 77d8a1c | 2017-04-24 14:53:19 +0100 | [diff] [blame] | 1172 | JDWP::JdwpError Dbg::GetSourceDebugExtension(JDWP::RefTypeId class_id, |
| 1173 | std::string* extension_data) { |
| 1174 | JDWP::JdwpError error; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1175 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
| Orion Hodson | 77d8a1c | 2017-04-24 14:53:19 +0100 | [diff] [blame] | 1176 | if (c == nullptr) { |
| 1177 | return error; |
| 1178 | } |
| 1179 | StackHandleScope<1> hs(Thread::Current()); |
| 1180 | Handle<mirror::Class> klass(hs.NewHandle(c)); |
| 1181 | const char* data = annotations::GetSourceDebugExtension(klass); |
| 1182 | if (data == nullptr) { |
| 1183 | return JDWP::ERR_ABSENT_INFORMATION; |
| 1184 | } |
| 1185 | *extension_data = data; |
| 1186 | return JDWP::ERR_NONE; |
| 1187 | } |
| 1188 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1189 | JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) { |
| 1190 | JDWP::JdwpError error; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1191 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
| Sebastien Hertz | 4206eb5 | 2014-06-05 10:15:45 +0200 | [diff] [blame] | 1192 | if (c == nullptr) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1193 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1194 | } |
| Sebastien Hertz | 4206eb5 | 2014-06-05 10:15:45 +0200 | [diff] [blame] | 1195 | const char* source_file = c->GetSourceFile(); |
| 1196 | if (source_file == nullptr) { |
| Sebastien Hertz | b7054ba | 2014-03-13 11:52:31 +0100 | [diff] [blame] | 1197 | return JDWP::ERR_ABSENT_INFORMATION; |
| 1198 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1199 | *result = source_file; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1200 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1201 | } |
| 1202 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1203 | JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) { |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1204 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1205 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1206 | ObjPtr<mirror::Object> o = gRegistry->Get<mirror::Object>(object_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1207 | if (error != JDWP::ERR_NONE) { |
| 1208 | *tag = JDWP::JT_VOID; |
| 1209 | return error; |
| Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 1210 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1211 | *tag = TagFromObject(soa, o); |
| Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 1212 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1213 | } |
| 1214 | |
| Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1215 | size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) { |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1216 | switch (tag) { |
| 1217 | case JDWP::JT_VOID: |
| 1218 | return 0; |
| 1219 | case JDWP::JT_BYTE: |
| 1220 | case JDWP::JT_BOOLEAN: |
| 1221 | return 1; |
| 1222 | case JDWP::JT_CHAR: |
| 1223 | case JDWP::JT_SHORT: |
| 1224 | return 2; |
| 1225 | case JDWP::JT_FLOAT: |
| 1226 | case JDWP::JT_INT: |
| 1227 | return 4; |
| 1228 | case JDWP::JT_ARRAY: |
| 1229 | case JDWP::JT_OBJECT: |
| 1230 | case JDWP::JT_STRING: |
| 1231 | case JDWP::JT_THREAD: |
| 1232 | case JDWP::JT_THREAD_GROUP: |
| 1233 | case JDWP::JT_CLASS_LOADER: |
| 1234 | case JDWP::JT_CLASS_OBJECT: |
| 1235 | return sizeof(JDWP::ObjectId); |
| 1236 | case JDWP::JT_DOUBLE: |
| 1237 | case JDWP::JT_LONG: |
| 1238 | return 8; |
| 1239 | default: |
| Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 1240 | LOG(FATAL) << "Unknown tag " << tag; |
| Elliott Hughes | c1896c9 | 2018-11-29 11:33:18 -0800 | [diff] [blame] | 1241 | UNREACHABLE(); |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1242 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1243 | } |
| 1244 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1245 | JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) { |
| 1246 | JDWP::JdwpError error; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1247 | ObjPtr<mirror::Array> a = DecodeNonNullArray(array_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1248 | if (a == nullptr) { |
| 1249 | return error; |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1250 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1251 | *length = a->GetLength(); |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1252 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1253 | } |
| 1254 | |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1255 | JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, |
| 1256 | int offset, |
| 1257 | int count, |
| 1258 | JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1259 | JDWP::JdwpError error; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1260 | ObjPtr<mirror::Array> a = DecodeNonNullArray(array_id, &error); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1261 | if (a == nullptr) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1262 | return error; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1263 | } |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1264 | |
| 1265 | if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) { |
| 1266 | LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1267 | return JDWP::ERR_INVALID_LENGTH; |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1268 | } |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1269 | JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType()); |
| 1270 | expandBufAdd1(pReply, element_tag); |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1271 | expandBufAdd4BE(pReply, count); |
| 1272 | |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1273 | if (IsPrimitiveTag(element_tag)) { |
| 1274 | size_t width = GetTagWidth(element_tag); |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1275 | uint8_t* dst = expandBufAddSpace(pReply, count * width); |
| 1276 | if (width == 8) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1277 | const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0)); |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1278 | for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]); |
| 1279 | } else if (width == 4) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1280 | const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0)); |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1281 | for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]); |
| 1282 | } else if (width == 2) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1283 | const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0)); |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1284 | for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]); |
| 1285 | } else { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1286 | const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0)); |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1287 | memcpy(dst, &src[offset * width], count * width); |
| 1288 | } |
| 1289 | } else { |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1290 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1291 | ObjPtr<mirror::ObjectArray<mirror::Object>> oa = a->AsObjectArray<mirror::Object>(); |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1292 | for (int i = 0; i < count; ++i) { |
| Vladimir Marko | 423bebb | 2019-03-26 15:17:21 +0000 | [diff] [blame] | 1293 | ObjPtr<mirror::Object> element = oa->Get(offset + i); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1294 | JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element) |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1295 | : element_tag; |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1296 | expandBufAdd1(pReply, specific_tag); |
| 1297 | expandBufAddObjectId(pReply, gRegistry->Add(element)); |
| 1298 | } |
| 1299 | } |
| 1300 | |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1301 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1302 | } |
| 1303 | |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1304 | template <typename T> |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1305 | static void CopyArrayData(ObjPtr<mirror::Array> a, JDWP::Request* src, int offset, int count) |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1306 | NO_THREAD_SAFETY_ANALYSIS { |
| 1307 | // TODO: fix when annotalysis correctly handles non-member functions. |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1308 | DCHECK(a->GetClass()->IsPrimitiveArray()); |
| 1309 | |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1310 | T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset)); |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1311 | for (int i = 0; i < count; ++i) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1312 | *dst++ = src->ReadValue(sizeof(T)); |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1313 | } |
| 1314 | } |
| 1315 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1316 | JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1317 | JDWP::Request* request) { |
| 1318 | JDWP::JdwpError error; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1319 | ObjPtr<mirror::Array> dst = DecodeNonNullArray(array_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1320 | if (dst == nullptr) { |
| 1321 | return error; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1322 | } |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1323 | |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1324 | if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) { |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1325 | LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1326 | return JDWP::ERR_INVALID_LENGTH; |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1327 | } |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1328 | JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType()); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1329 | |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1330 | if (IsPrimitiveTag(element_tag)) { |
| 1331 | size_t width = GetTagWidth(element_tag); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1332 | if (width == 8) { |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1333 | CopyArrayData<uint64_t>(dst, request, offset, count); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1334 | } else if (width == 4) { |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1335 | CopyArrayData<uint32_t>(dst, request, offset, count); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1336 | } else if (width == 2) { |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1337 | CopyArrayData<uint16_t>(dst, request, offset, count); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1338 | } else { |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1339 | CopyArrayData<uint8_t>(dst, request, offset, count); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1340 | } |
| 1341 | } else { |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1342 | ObjPtr<mirror::ObjectArray<mirror::Object>> oa = dst->AsObjectArray<mirror::Object>(); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1343 | for (int i = 0; i < count; ++i) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1344 | JDWP::ObjectId id = request->ReadObjectId(); |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1345 | ObjPtr<mirror::Object> o = gRegistry->Get<mirror::Object>(id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1346 | if (error != JDWP::ERR_NONE) { |
| 1347 | return error; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1348 | } |
| Sebastien Hertz | 2e1c16d | 2015-08-28 11:57:49 +0200 | [diff] [blame] | 1349 | // Check if the object's type is compatible with the array's type. |
| 1350 | if (o != nullptr && !o->InstanceOf(oa->GetClass()->GetComponentType())) { |
| 1351 | return JDWP::ERR_TYPE_MISMATCH; |
| 1352 | } |
| Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1353 | oa->Set<false>(offset + i, o); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1354 | } |
| 1355 | } |
| 1356 | |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1357 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1358 | } |
| 1359 | |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1360 | JDWP::JdwpError Dbg::CreateString(const std::string& str, JDWP::ObjectId* new_string_id) { |
| 1361 | Thread* self = Thread::Current(); |
| Vladimir Marko | 179b7c6 | 2019-03-22 13:38:57 +0000 | [diff] [blame] | 1362 | ObjPtr<mirror::String> new_string = mirror::String::AllocFromModifiedUtf8(self, str.c_str()); |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1363 | if (new_string == nullptr) { |
| 1364 | DCHECK(self->IsExceptionPending()); |
| 1365 | self->ClearException(); |
| 1366 | LOG(ERROR) << "Could not allocate string"; |
| 1367 | *new_string_id = 0; |
| 1368 | return JDWP::ERR_OUT_OF_MEMORY; |
| 1369 | } |
| 1370 | *new_string_id = gRegistry->Add(new_string); |
| 1371 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1372 | } |
| 1373 | |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1374 | JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object_id) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1375 | JDWP::JdwpError error; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1376 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1377 | if (c == nullptr) { |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1378 | *new_object_id = 0; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1379 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1380 | } |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1381 | Thread* self = Thread::Current(); |
| Mathieu Chartier | 28bd2e4 | 2016-10-04 13:54:57 -0700 | [diff] [blame] | 1382 | ObjPtr<mirror::Object> new_object; |
| Sebastien Hertz | 56d5e50 | 2015-11-03 17:38:35 +0100 | [diff] [blame] | 1383 | if (c->IsStringClass()) { |
| 1384 | // Special case for java.lang.String. |
| 1385 | gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator(); |
| Vladimir Marko | 9b81ac3 | 2019-05-16 16:47:08 +0100 | [diff] [blame] | 1386 | new_object = mirror::String::AllocEmptyString(self, allocator_type); |
| Sebastien Hertz | 56d5e50 | 2015-11-03 17:38:35 +0100 | [diff] [blame] | 1387 | } else { |
| 1388 | new_object = c->AllocObject(self); |
| 1389 | } |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1390 | if (new_object == nullptr) { |
| 1391 | DCHECK(self->IsExceptionPending()); |
| 1392 | self->ClearException(); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1393 | LOG(ERROR) << "Could not allocate object of type " << mirror::Class::PrettyDescriptor(c); |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1394 | *new_object_id = 0; |
| 1395 | return JDWP::ERR_OUT_OF_MEMORY; |
| 1396 | } |
| Vladimir Marko | bcf1752 | 2018-06-01 13:14:32 +0100 | [diff] [blame] | 1397 | *new_object_id = gRegistry->Add(new_object); |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1398 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1399 | } |
| 1400 | |
| Elliott Hughes | bf13d36 | 2011-12-08 15:51:37 -0800 | [diff] [blame] | 1401 | /* |
| 1402 | * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]". |
| 1403 | */ |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1404 | JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length, |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1405 | JDWP::ObjectId* new_array_id) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1406 | JDWP::JdwpError error; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1407 | ObjPtr<mirror::Class> c = DecodeClass(array_class_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1408 | if (c == nullptr) { |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1409 | *new_array_id = 0; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1410 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1411 | } |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1412 | Thread* self = Thread::Current(); |
| Vladimir Marko | bcf1752 | 2018-06-01 13:14:32 +0100 | [diff] [blame] | 1413 | gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator(); |
| 1414 | ObjPtr<mirror::Array> new_array = |
| Vladimir Marko | 9b81ac3 | 2019-05-16 16:47:08 +0100 | [diff] [blame] | 1415 | mirror::Array::Alloc(self, c, length, c->GetComponentSizeShift(), allocator_type); |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1416 | if (new_array == nullptr) { |
| 1417 | DCHECK(self->IsExceptionPending()); |
| 1418 | self->ClearException(); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1419 | LOG(ERROR) << "Could not allocate array of type " << mirror::Class::PrettyDescriptor(c); |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1420 | *new_array_id = 0; |
| 1421 | return JDWP::ERR_OUT_OF_MEMORY; |
| 1422 | } |
| 1423 | *new_array_id = gRegistry->Add(new_array); |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1424 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1425 | } |
| 1426 | |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1427 | JDWP::FieldId Dbg::ToFieldId(const ArtField* f) { |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1428 | return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f)); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1429 | } |
| 1430 | |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 1431 | static JDWP::MethodId ToMethodId(ArtMethod* m) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1432 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 1433 | return static_cast<JDWP::MethodId>( |
| 1434 | reinterpret_cast<uintptr_t>(m->GetCanonicalMethod(kRuntimePointerSize))); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1435 | } |
| 1436 | |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1437 | static ArtField* FromFieldId(JDWP::FieldId fid) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1438 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1439 | return reinterpret_cast<ArtField*>(static_cast<uintptr_t>(fid)); |
| Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1440 | } |
| 1441 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1442 | static ArtMethod* FromMethodId(JDWP::MethodId mid) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1443 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1444 | return reinterpret_cast<ArtMethod*>(static_cast<uintptr_t>(mid)); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1445 | } |
| 1446 | |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1447 | bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) { |
| 1448 | CHECK(event_thread != nullptr); |
| 1449 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1450 | ObjPtr<mirror::Object> expected_thread_peer = gRegistry->Get<mirror::Object>( |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1451 | expected_thread_id, &error); |
| Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 1452 | return expected_thread_peer == event_thread->GetPeerFromOtherThread(); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1453 | } |
| 1454 | |
| 1455 | bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location, |
| 1456 | const JDWP::EventLocation& event_location) { |
| 1457 | if (expected_location.dex_pc != event_location.dex_pc) { |
| 1458 | return false; |
| 1459 | } |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1460 | ArtMethod* m = FromMethodId(expected_location.method_id); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1461 | return m == event_location.method; |
| 1462 | } |
| 1463 | |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1464 | bool Dbg::MatchType(ObjPtr<mirror::Class> event_class, JDWP::RefTypeId class_id) { |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1465 | if (event_class == nullptr) { |
| 1466 | return false; |
| 1467 | } |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1468 | JDWP::JdwpError error; |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1469 | ObjPtr<mirror::Class> expected_class = DecodeClass(class_id, &error); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1470 | CHECK(expected_class != nullptr); |
| 1471 | return expected_class->IsAssignableFrom(event_class); |
| 1472 | } |
| 1473 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1474 | bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, |
| 1475 | JDWP::FieldId expected_field_id, |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1476 | ArtField* event_field) { |
| 1477 | ArtField* expected_field = FromFieldId(expected_field_id); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1478 | if (expected_field != event_field) { |
| 1479 | return false; |
| 1480 | } |
| 1481 | return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id); |
| 1482 | } |
| 1483 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1484 | bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, |
| 1485 | ObjPtr<mirror::Object> event_instance) { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1486 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1487 | ObjPtr<mirror::Object> modifier_instance = |
| 1488 | gRegistry->Get<mirror::Object>(expected_instance_id, &error); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1489 | return modifier_instance == event_instance; |
| 1490 | } |
| 1491 | |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1492 | void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, ArtMethod* m, uint32_t dex_pc) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1493 | if (m == nullptr) { |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1494 | memset(location, 0, sizeof(*location)); |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 1495 | } else { |
| Vladimir Marko | d93e374 | 2018-07-18 10:58:13 +0100 | [diff] [blame] | 1496 | ObjPtr<mirror::Class> c = m->GetDeclaringClass(); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1497 | location->type_tag = GetTypeTag(c); |
| 1498 | location->class_id = gRegistry->AddRefType(c); |
| Alex Light | 7337631 | 2017-04-06 10:10:51 -0700 | [diff] [blame] | 1499 | // The RI Seems to return 0 for all obsolete methods. For compatibility we shall do the same. |
| 1500 | location->method_id = m->IsObsolete() ? 0 : ToMethodId(m); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1501 | location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc; |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 1502 | } |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 1503 | } |
| 1504 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1505 | std::string Dbg::GetMethodName(JDWP::MethodId method_id) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1506 | ArtMethod* m = FromMethodId(method_id); |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1507 | if (m == nullptr) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1508 | return "null"; |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1509 | } |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 1510 | return m->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetName(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1511 | } |
| 1512 | |
| Alex Light | 7337631 | 2017-04-06 10:10:51 -0700 | [diff] [blame] | 1513 | bool Dbg::IsMethodObsolete(JDWP::MethodId method_id) { |
| 1514 | ArtMethod* m = FromMethodId(method_id); |
| 1515 | if (m == nullptr) { |
| 1516 | // NB Since we return 0 as MID for obsolete methods we want to default to true here. |
| 1517 | return true; |
| 1518 | } |
| 1519 | return m->IsObsolete(); |
| 1520 | } |
| 1521 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1522 | std::string Dbg::GetFieldName(JDWP::FieldId field_id) { |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1523 | ArtField* f = FromFieldId(field_id); |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1524 | if (f == nullptr) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1525 | return "null"; |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1526 | } |
| 1527 | return f->GetName(); |
| Elliott Hughes | a96836a | 2013-01-17 12:27:49 -0800 | [diff] [blame] | 1528 | } |
| 1529 | |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1530 | /* |
| 1531 | * Augment the access flags for synthetic methods and fields by setting |
| 1532 | * the (as described by the spec) "0xf0000000 bit". Also, strip out any |
| 1533 | * flags not specified by the Java programming language. |
| 1534 | */ |
| 1535 | static uint32_t MangleAccessFlags(uint32_t accessFlags) { |
| 1536 | accessFlags &= kAccJavaFlagsMask; |
| 1537 | if ((accessFlags & kAccSynthetic) != 0) { |
| 1538 | accessFlags |= 0xf0000000; |
| 1539 | } |
| 1540 | return accessFlags; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1541 | } |
| 1542 | |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1543 | /* |
| Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1544 | * Circularly shifts registers so that arguments come first. Debuggers |
| 1545 | * expect slots to begin with arguments, but dex code places them at |
| 1546 | * the end. |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1547 | */ |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1548 | static uint16_t MangleSlot(uint16_t slot, ArtMethod* m) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1549 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 1550 | CodeItemDataAccessor accessor(m->DexInstructionData()); |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 1551 | if (!accessor.HasCodeItem()) { |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1552 | // We should not get here for a method without code (native, proxy or abstract). Log it and |
| 1553 | // return the slot as is since all registers are arguments. |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1554 | LOG(WARNING) << "Trying to mangle slot for method without code " << m->PrettyMethod(); |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1555 | return slot; |
| 1556 | } |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 1557 | uint16_t ins_size = accessor.InsSize(); |
| 1558 | uint16_t locals_size = accessor.RegistersSize() - ins_size; |
| Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1559 | if (slot >= locals_size) { |
| 1560 | return slot - locals_size; |
| 1561 | } else { |
| 1562 | return slot + ins_size; |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1563 | } |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1564 | } |
| 1565 | |
| Sebastien Hertz | aef0c91 | 2016-08-08 10:20:28 +0200 | [diff] [blame] | 1566 | static size_t GetMethodNumArgRegistersIncludingThis(ArtMethod* method) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1567 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | aef0c91 | 2016-08-08 10:20:28 +0200 | [diff] [blame] | 1568 | uint32_t num_registers = ArtMethod::NumArgRegisters(method->GetShorty()); |
| 1569 | if (!method->IsStatic()) { |
| 1570 | ++num_registers; |
| 1571 | } |
| 1572 | return num_registers; |
| 1573 | } |
| 1574 | |
| Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1575 | /* |
| 1576 | * Circularly shifts registers so that arguments come last. Reverts |
| 1577 | * slots to dex style argument placement. |
| 1578 | */ |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1579 | static uint16_t DemangleSlot(uint16_t slot, ArtMethod* m, JDWP::JdwpError* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1580 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 1581 | CodeItemDataAccessor accessor(m->DexInstructionData()); |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 1582 | if (!accessor.HasCodeItem()) { |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1583 | // We should not get here for a method without code (native, proxy or abstract). Log it and |
| 1584 | // return the slot as is since all registers are arguments. |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1585 | LOG(WARNING) << "Trying to demangle slot for method without code " |
| 1586 | << m->PrettyMethod(); |
| Sebastien Hertz | aef0c91 | 2016-08-08 10:20:28 +0200 | [diff] [blame] | 1587 | uint16_t vreg_count = GetMethodNumArgRegistersIncludingThis(m); |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1588 | if (slot < vreg_count) { |
| 1589 | *error = JDWP::ERR_NONE; |
| 1590 | return slot; |
| 1591 | } |
| Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1592 | } else { |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 1593 | if (slot < accessor.RegistersSize()) { |
| 1594 | uint16_t ins_size = accessor.InsSize(); |
| 1595 | uint16_t locals_size = accessor.RegistersSize() - ins_size; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1596 | *error = JDWP::ERR_NONE; |
| 1597 | return (slot < ins_size) ? slot + locals_size : slot - ins_size; |
| 1598 | } |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1599 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1600 | |
| 1601 | // Slot is invalid in the method. |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1602 | LOG(ERROR) << "Invalid local slot " << slot << " for method " << m->PrettyMethod(); |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1603 | *error = JDWP::ERR_INVALID_SLOT; |
| 1604 | return DexFile::kDexNoIndex16; |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1605 | } |
| 1606 | |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1607 | JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, |
| 1608 | JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1609 | JDWP::JdwpError error; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1610 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1611 | if (c == nullptr) { |
| 1612 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1613 | } |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1614 | |
| 1615 | size_t instance_field_count = c->NumInstanceFields(); |
| 1616 | size_t static_field_count = c->NumStaticFields(); |
| 1617 | |
| 1618 | expandBufAdd4BE(pReply, instance_field_count + static_field_count); |
| 1619 | |
| 1620 | for (size_t i = 0; i < instance_field_count + static_field_count; ++i) { |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1621 | ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : |
| 1622 | c->GetStaticField(i - instance_field_count); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1623 | expandBufAddFieldId(pReply, ToFieldId(f)); |
| Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1624 | expandBufAddUtf8String(pReply, f->GetName()); |
| 1625 | expandBufAddUtf8String(pReply, f->GetTypeDescriptor()); |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1626 | if (with_generic) { |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1627 | static const char genericSignature[1] = ""; |
| 1628 | expandBufAddUtf8String(pReply, genericSignature); |
| 1629 | } |
| 1630 | expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags())); |
| 1631 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1632 | return JDWP::ERR_NONE; |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1633 | } |
| 1634 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1635 | JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic, |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1636 | JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1637 | JDWP::JdwpError error; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1638 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1639 | if (c == nullptr) { |
| 1640 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1641 | } |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1642 | |
| Alex Light | 51a64d5 | 2015-12-17 13:55:59 -0800 | [diff] [blame] | 1643 | expandBufAdd4BE(pReply, c->NumMethods()); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1644 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1645 | auto* cl = Runtime::Current()->GetClassLinker(); |
| 1646 | auto ptr_size = cl->GetImagePointerSize(); |
| Alex Light | 51a64d5 | 2015-12-17 13:55:59 -0800 | [diff] [blame] | 1647 | for (ArtMethod& m : c->GetMethods(ptr_size)) { |
| 1648 | expandBufAddMethodId(pReply, ToMethodId(&m)); |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 1649 | expandBufAddUtf8String(pReply, m.GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetName()); |
| 1650 | expandBufAddUtf8String( |
| 1651 | pReply, m.GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetSignature().ToString()); |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1652 | if (with_generic) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1653 | const char* generic_signature = ""; |
| 1654 | expandBufAddUtf8String(pReply, generic_signature); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1655 | } |
| Alex Light | 51a64d5 | 2015-12-17 13:55:59 -0800 | [diff] [blame] | 1656 | expandBufAdd4BE(pReply, MangleAccessFlags(m.GetAccessFlags())); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1657 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1658 | return JDWP::ERR_NONE; |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1659 | } |
| 1660 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1661 | JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1662 | JDWP::JdwpError error; |
| Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1663 | Thread* self = Thread::Current(); |
| Vladimir Marko | 19a4d37 | 2016-12-08 14:41:46 +0000 | [diff] [blame] | 1664 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
| 1665 | if (c == nullptr) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1666 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1667 | } |
| Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1668 | size_t interface_count = c->NumDirectInterfaces(); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1669 | expandBufAdd4BE(pReply, interface_count); |
| 1670 | for (size_t i = 0; i < interface_count; ++i) { |
| Vladimir Marko | 19a4d37 | 2016-12-08 14:41:46 +0000 | [diff] [blame] | 1671 | ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, c, i); |
| 1672 | DCHECK(interface != nullptr); |
| 1673 | expandBufAddRefTypeId(pReply, gRegistry->AddRefType(interface)); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1674 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1675 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1676 | } |
| 1677 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1678 | void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1679 | ArtMethod* m = FromMethodId(method_id); |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 1680 | CodeItemDebugInfoAccessor accessor(m->DexInstructionDebugInfo()); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1681 | uint64_t start, end; |
| Mathieu Chartier | 31f4c9f | 2017-12-08 15:46:11 -0800 | [diff] [blame] | 1682 | if (!accessor.HasCodeItem()) { |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1683 | DCHECK(m->IsNative() || m->IsProxyMethod()); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1684 | start = -1; |
| 1685 | end = -1; |
| 1686 | } else { |
| 1687 | start = 0; |
| jeffhao | 14f0db9 | 2012-12-14 17:50:42 -0800 | [diff] [blame] | 1688 | // Return the index of the last instruction |
| Mathieu Chartier | 31f4c9f | 2017-12-08 15:46:11 -0800 | [diff] [blame] | 1689 | end = accessor.InsnsSizeInCodeUnits() - 1; |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1690 | } |
| 1691 | |
| 1692 | expandBufAdd8BE(pReply, start); |
| 1693 | expandBufAdd8BE(pReply, end); |
| 1694 | |
| 1695 | // Add numLines later |
| 1696 | size_t numLinesOffset = expandBufGetLength(pReply); |
| 1697 | expandBufAdd4BE(pReply, 0); |
| 1698 | |
| Mathieu Chartier | 3e2e123 | 2018-09-11 12:35:30 -0700 | [diff] [blame] | 1699 | int numItems = 0; |
| 1700 | accessor.DecodeDebugPositionInfo([&](const DexFile::PositionInfo& entry) { |
| 1701 | expandBufAdd8BE(pReply, entry.address_); |
| 1702 | expandBufAdd4BE(pReply, entry.line_); |
| 1703 | numItems++; |
| 1704 | return false; |
| 1705 | }); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1706 | |
| Mathieu Chartier | 3e2e123 | 2018-09-11 12:35:30 -0700 | [diff] [blame] | 1707 | JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, numItems); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1708 | } |
| 1709 | |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1710 | void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, |
| 1711 | JDWP::ExpandBuf* pReply) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1712 | ArtMethod* m = FromMethodId(method_id); |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 1713 | CodeItemDebugInfoAccessor accessor(m->DexInstructionDebugInfo()); |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1714 | |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1715 | // arg_count considers doubles and longs to take 2 units. |
| 1716 | // variable_count considers everything to take 1 unit. |
| Sebastien Hertz | aef0c91 | 2016-08-08 10:20:28 +0200 | [diff] [blame] | 1717 | expandBufAdd4BE(pReply, GetMethodNumArgRegistersIncludingThis(m)); |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1718 | |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1719 | // We don't know the total number of variables yet, so leave a blank and update it later. |
| 1720 | size_t variable_count_offset = expandBufGetLength(pReply); |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1721 | expandBufAdd4BE(pReply, 0); |
| 1722 | |
| Mathieu Chartier | e5afbf3 | 2018-09-12 17:51:54 -0700 | [diff] [blame] | 1723 | size_t variable_count = 0; |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1724 | |
| Mathieu Chartier | 31f4c9f | 2017-12-08 15:46:11 -0800 | [diff] [blame] | 1725 | if (accessor.HasCodeItem()) { |
| Mathieu Chartier | e5afbf3 | 2018-09-12 17:51:54 -0700 | [diff] [blame] | 1726 | accessor.DecodeDebugLocalInfo(m->IsStatic(), |
| 1727 | m->GetDexMethodIndex(), |
| 1728 | [&](const DexFile::LocalInfo& entry) |
| 1729 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 1730 | uint16_t slot = entry.reg_; |
| 1731 | VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d", |
| 1732 | variable_count, |
| 1733 | entry.start_address_, |
| 1734 | entry.end_address_ - entry.start_address_, |
| 1735 | entry.name_, |
| 1736 | entry.descriptor_, entry.signature_, |
| 1737 | slot, |
| 1738 | MangleSlot(slot, m)); |
| 1739 | |
| 1740 | slot = MangleSlot(slot, m); |
| 1741 | |
| 1742 | expandBufAdd8BE(pReply, entry.start_address_); |
| 1743 | expandBufAddUtf8String(pReply, entry.name_); |
| 1744 | expandBufAddUtf8String(pReply, entry.descriptor_); |
| 1745 | if (with_generic) { |
| 1746 | expandBufAddUtf8String(pReply, entry.signature_); |
| 1747 | } |
| 1748 | expandBufAdd4BE(pReply, entry.end_address_- entry.start_address_); |
| 1749 | expandBufAdd4BE(pReply, slot); |
| 1750 | |
| 1751 | ++variable_count; |
| 1752 | }); |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1753 | } |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1754 | |
| Mathieu Chartier | e5afbf3 | 2018-09-12 17:51:54 -0700 | [diff] [blame] | 1755 | JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, variable_count); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1756 | } |
| 1757 | |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1758 | void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, |
| 1759 | JDWP::ExpandBuf* pReply) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1760 | ArtMethod* m = FromMethodId(method_id); |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1761 | JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty()); |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1762 | OutputJValue(tag, return_value, pReply); |
| 1763 | } |
| 1764 | |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1765 | void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value, |
| 1766 | JDWP::ExpandBuf* pReply) { |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1767 | ArtField* f = FromFieldId(field_id); |
| Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1768 | JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1769 | OutputJValue(tag, field_value, pReply); |
| 1770 | } |
| 1771 | |
| Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1772 | JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1773 | std::vector<uint8_t>* bytecodes) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1774 | ArtMethod* m = FromMethodId(method_id); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1775 | if (m == nullptr) { |
| Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1776 | return JDWP::ERR_INVALID_METHODID; |
| 1777 | } |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 1778 | CodeItemDataAccessor accessor(m->DexInstructionData()); |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 1779 | size_t byte_count = accessor.InsnsSizeInCodeUnits() * 2; |
| 1780 | const uint8_t* begin = reinterpret_cast<const uint8_t*>(accessor.Insns()); |
| Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1781 | const uint8_t* end = begin + byte_count; |
| 1782 | for (const uint8_t* p = begin; p != end; ++p) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1783 | bytecodes->push_back(*p); |
| Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1784 | } |
| 1785 | return JDWP::ERR_NONE; |
| 1786 | } |
| 1787 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1788 | JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) { |
| Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1789 | return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1790 | } |
| 1791 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1792 | JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) { |
| Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1793 | return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1794 | } |
| 1795 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1796 | static JValue GetArtFieldValue(ArtField* f, ObjPtr<mirror::Object> o) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1797 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1798 | Primitive::Type fieldType = f->GetTypeAsPrimitiveType(); |
| 1799 | JValue field_value; |
| 1800 | switch (fieldType) { |
| 1801 | case Primitive::kPrimBoolean: |
| 1802 | field_value.SetZ(f->GetBoolean(o)); |
| 1803 | return field_value; |
| 1804 | |
| 1805 | case Primitive::kPrimByte: |
| 1806 | field_value.SetB(f->GetByte(o)); |
| 1807 | return field_value; |
| 1808 | |
| 1809 | case Primitive::kPrimChar: |
| 1810 | field_value.SetC(f->GetChar(o)); |
| 1811 | return field_value; |
| 1812 | |
| 1813 | case Primitive::kPrimShort: |
| 1814 | field_value.SetS(f->GetShort(o)); |
| 1815 | return field_value; |
| 1816 | |
| 1817 | case Primitive::kPrimInt: |
| 1818 | case Primitive::kPrimFloat: |
| 1819 | // Int and Float must be treated as 32-bit values in JDWP. |
| 1820 | field_value.SetI(f->GetInt(o)); |
| 1821 | return field_value; |
| 1822 | |
| 1823 | case Primitive::kPrimLong: |
| 1824 | case Primitive::kPrimDouble: |
| 1825 | // Long and Double must be treated as 64-bit values in JDWP. |
| 1826 | field_value.SetJ(f->GetLong(o)); |
| 1827 | return field_value; |
| 1828 | |
| 1829 | case Primitive::kPrimNot: |
| Vladimir Marko | bcf1752 | 2018-06-01 13:14:32 +0100 | [diff] [blame] | 1830 | field_value.SetL(f->GetObject(o)); |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1831 | return field_value; |
| 1832 | |
| 1833 | case Primitive::kPrimVoid: |
| 1834 | LOG(FATAL) << "Attempt to read from field of type 'void'"; |
| 1835 | UNREACHABLE(); |
| 1836 | } |
| 1837 | LOG(FATAL) << "Attempt to read from field of unknown type"; |
| 1838 | UNREACHABLE(); |
| 1839 | } |
| 1840 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1841 | static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id, |
| 1842 | JDWP::FieldId field_id, JDWP::ExpandBuf* pReply, |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1843 | bool is_static) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1844 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1845 | JDWP::JdwpError error; |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1846 | ObjPtr<mirror::Class> c = DecodeClass(ref_type_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1847 | if (ref_type_id != 0 && c == nullptr) { |
| 1848 | return error; |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1849 | } |
| 1850 | |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1851 | Thread* self = Thread::Current(); |
| 1852 | StackHandleScope<2> hs(self); |
| 1853 | MutableHandle<mirror::Object> |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1854 | o(hs.NewHandle(Dbg::GetObjectRegistry()->Get<mirror::Object>(object_id, &error))); |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1855 | if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) { |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1856 | return JDWP::ERR_INVALID_OBJECT; |
| 1857 | } |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1858 | ArtField* f = FromFieldId(field_id); |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1859 | |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 1860 | ObjPtr<mirror::Class> receiver_class = c; |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1861 | if (receiver_class == nullptr && o != nullptr) { |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1862 | receiver_class = o->GetClass(); |
| 1863 | } |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1864 | |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1865 | // TODO: should we give up now if receiver_class is null? |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1866 | if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1867 | LOG(INFO) << "ERR_INVALID_FIELDID: " << f->PrettyField() << " " |
| 1868 | << receiver_class->PrettyClass(); |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1869 | return JDWP::ERR_INVALID_FIELDID; |
| 1870 | } |
| Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1871 | |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1872 | // Ensure the field's class is initialized. |
| 1873 | Handle<mirror::Class> klass(hs.NewHandle(f->GetDeclaringClass())); |
| 1874 | if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, klass, true, false)) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1875 | LOG(WARNING) << "Not able to initialize class for SetValues: " |
| 1876 | << mirror::Class::PrettyClass(klass.Get()); |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1877 | } |
| 1878 | |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1879 | // The RI only enforces the static/non-static mismatch in one direction. |
| 1880 | // TODO: should we change the tests and check both? |
| 1881 | if (is_static) { |
| 1882 | if (!f->IsStatic()) { |
| 1883 | return JDWP::ERR_INVALID_FIELDID; |
| 1884 | } |
| 1885 | } else { |
| 1886 | if (f->IsStatic()) { |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1887 | LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.GetValues" |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1888 | << " on static field " << f->PrettyField(); |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1889 | } |
| 1890 | } |
| jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1891 | if (f->IsStatic()) { |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1892 | o.Assign(f->GetDeclaringClass()); |
| jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1893 | } |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1894 | |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1895 | JValue field_value(GetArtFieldValue(f, o.Get())); |
| Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1896 | JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1897 | Dbg::OutputJValue(tag, &field_value, pReply); |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1898 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1899 | } |
| 1900 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1901 | JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1902 | JDWP::ExpandBuf* pReply) { |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1903 | return GetFieldValueImpl(0, object_id, field_id, pReply, false); |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1904 | } |
| 1905 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1906 | JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, |
| 1907 | JDWP::ExpandBuf* pReply) { |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1908 | return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true); |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1909 | } |
| 1910 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1911 | static JDWP::JdwpError SetArtFieldValue(ArtField* f, |
| 1912 | ObjPtr<mirror::Object> o, |
| 1913 | uint64_t value, |
| 1914 | int width) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1915 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1916 | Primitive::Type fieldType = f->GetTypeAsPrimitiveType(); |
| 1917 | // Debugging only happens at runtime so we know we are not running in a transaction. |
| 1918 | static constexpr bool kNoTransactionMode = false; |
| 1919 | switch (fieldType) { |
| 1920 | case Primitive::kPrimBoolean: |
| 1921 | CHECK_EQ(width, 1); |
| 1922 | f->SetBoolean<kNoTransactionMode>(o, static_cast<uint8_t>(value)); |
| 1923 | return JDWP::ERR_NONE; |
| 1924 | |
| 1925 | case Primitive::kPrimByte: |
| 1926 | CHECK_EQ(width, 1); |
| 1927 | f->SetByte<kNoTransactionMode>(o, static_cast<uint8_t>(value)); |
| 1928 | return JDWP::ERR_NONE; |
| 1929 | |
| 1930 | case Primitive::kPrimChar: |
| 1931 | CHECK_EQ(width, 2); |
| 1932 | f->SetChar<kNoTransactionMode>(o, static_cast<uint16_t>(value)); |
| 1933 | return JDWP::ERR_NONE; |
| 1934 | |
| 1935 | case Primitive::kPrimShort: |
| 1936 | CHECK_EQ(width, 2); |
| 1937 | f->SetShort<kNoTransactionMode>(o, static_cast<int16_t>(value)); |
| 1938 | return JDWP::ERR_NONE; |
| 1939 | |
| 1940 | case Primitive::kPrimInt: |
| 1941 | case Primitive::kPrimFloat: |
| 1942 | CHECK_EQ(width, 4); |
| 1943 | // Int and Float must be treated as 32-bit values in JDWP. |
| 1944 | f->SetInt<kNoTransactionMode>(o, static_cast<int32_t>(value)); |
| 1945 | return JDWP::ERR_NONE; |
| 1946 | |
| 1947 | case Primitive::kPrimLong: |
| 1948 | case Primitive::kPrimDouble: |
| 1949 | CHECK_EQ(width, 8); |
| 1950 | // Long and Double must be treated as 64-bit values in JDWP. |
| 1951 | f->SetLong<kNoTransactionMode>(o, value); |
| 1952 | return JDWP::ERR_NONE; |
| 1953 | |
| 1954 | case Primitive::kPrimNot: { |
| 1955 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1956 | ObjPtr<mirror::Object> v = Dbg::GetObjectRegistry()->Get<mirror::Object>(value, &error); |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1957 | if (error != JDWP::ERR_NONE) { |
| 1958 | return JDWP::ERR_INVALID_OBJECT; |
| 1959 | } |
| 1960 | if (v != nullptr) { |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1961 | ObjPtr<mirror::Class> field_type; |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1962 | { |
| 1963 | StackHandleScope<2> hs(Thread::Current()); |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1964 | HandleWrapperObjPtr<mirror::Object> h_v(hs.NewHandleWrapper(&v)); |
| 1965 | HandleWrapperObjPtr<mirror::Object> h_o(hs.NewHandleWrapper(&o)); |
| Vladimir Marko | 4098a7a | 2017-11-06 16:00:51 +0000 | [diff] [blame] | 1966 | field_type = f->ResolveType(); |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1967 | } |
| 1968 | if (!field_type->IsAssignableFrom(v->GetClass())) { |
| 1969 | return JDWP::ERR_INVALID_OBJECT; |
| 1970 | } |
| 1971 | } |
| 1972 | f->SetObject<kNoTransactionMode>(o, v); |
| 1973 | return JDWP::ERR_NONE; |
| 1974 | } |
| 1975 | |
| 1976 | case Primitive::kPrimVoid: |
| 1977 | LOG(FATAL) << "Attempt to write to field of type 'void'"; |
| 1978 | UNREACHABLE(); |
| 1979 | } |
| 1980 | LOG(FATAL) << "Attempt to write to field of unknown type"; |
| 1981 | UNREACHABLE(); |
| 1982 | } |
| 1983 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1984 | static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id, |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1985 | uint64_t value, int width, bool is_static) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1986 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1987 | JDWP::JdwpError error; |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1988 | Thread* self = Thread::Current(); |
| 1989 | StackHandleScope<2> hs(self); |
| 1990 | MutableHandle<mirror::Object> |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 1991 | o(hs.NewHandle(Dbg::GetObjectRegistry()->Get<mirror::Object>(object_id, &error))); |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1992 | if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) { |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1993 | return JDWP::ERR_INVALID_OBJECT; |
| 1994 | } |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1995 | ArtField* f = FromFieldId(field_id); |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1996 | |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1997 | // Ensure the field's class is initialized. |
| 1998 | Handle<mirror::Class> klass(hs.NewHandle(f->GetDeclaringClass())); |
| 1999 | if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, klass, true, false)) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2000 | LOG(WARNING) << "Not able to initialize class for SetValues: " |
| 2001 | << mirror::Class::PrettyClass(klass.Get()); |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 2002 | } |
| 2003 | |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 2004 | // The RI only enforces the static/non-static mismatch in one direction. |
| 2005 | // TODO: should we change the tests and check both? |
| 2006 | if (is_static) { |
| 2007 | if (!f->IsStatic()) { |
| 2008 | return JDWP::ERR_INVALID_FIELDID; |
| 2009 | } |
| 2010 | } else { |
| 2011 | if (f->IsStatic()) { |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 2012 | LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues" |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2013 | << " on static field " << f->PrettyField(); |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 2014 | } |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 2015 | } |
| jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 2016 | if (f->IsStatic()) { |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 2017 | o.Assign(f->GetDeclaringClass()); |
| jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 2018 | } |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 2019 | return SetArtFieldValue(f, o.Get(), value, width); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2020 | } |
| 2021 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 2022 | JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value, |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2023 | int width) { |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 2024 | return SetFieldValueImpl(object_id, field_id, value, width, false); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2025 | } |
| 2026 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 2027 | JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) { |
| 2028 | return SetFieldValueImpl(0, field_id, value, width, true); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2029 | } |
| 2030 | |
| Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 2031 | JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2032 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2033 | ObjPtr<mirror::Object> obj = gRegistry->Get<mirror::Object>(string_id, &error); |
| Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 2034 | if (error != JDWP::ERR_NONE) { |
| 2035 | return error; |
| 2036 | } |
| 2037 | if (obj == nullptr) { |
| 2038 | return JDWP::ERR_INVALID_OBJECT; |
| 2039 | } |
| 2040 | { |
| 2041 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 2042 | ObjPtr<mirror::Class> java_lang_String = |
| 2043 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_String); |
| Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 2044 | if (!java_lang_String->IsAssignableFrom(obj->GetClass())) { |
| 2045 | // This isn't a string. |
| 2046 | return JDWP::ERR_INVALID_STRING; |
| 2047 | } |
| 2048 | } |
| 2049 | *str = obj->AsString()->ToModifiedUtf8(); |
| 2050 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2051 | } |
| 2052 | |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 2053 | void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) { |
| 2054 | if (IsPrimitiveTag(tag)) { |
| 2055 | expandBufAdd1(pReply, tag); |
| 2056 | if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) { |
| 2057 | expandBufAdd1(pReply, return_value->GetI()); |
| 2058 | } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) { |
| 2059 | expandBufAdd2BE(pReply, return_value->GetI()); |
| 2060 | } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) { |
| 2061 | expandBufAdd4BE(pReply, return_value->GetI()); |
| 2062 | } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) { |
| 2063 | expandBufAdd8BE(pReply, return_value->GetJ()); |
| 2064 | } else { |
| 2065 | CHECK_EQ(tag, JDWP::JT_VOID); |
| 2066 | } |
| 2067 | } else { |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2068 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2069 | ObjPtr<mirror::Object> value = return_value->GetL(); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2070 | expandBufAdd1(pReply, TagFromObject(soa, value)); |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 2071 | expandBufAddObjectId(pReply, gRegistry->Add(value)); |
| 2072 | } |
| 2073 | } |
| 2074 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2075 | JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) { |
| jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 2076 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2077 | JDWP::JdwpError error; |
| Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 2078 | DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2079 | if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2080 | return error; |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 2081 | } |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2082 | |
| 2083 | // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName. |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2084 | ObjPtr<mirror::Object> thread_object = gRegistry->Get<mirror::Object>(thread_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2085 | CHECK(thread_object != nullptr) << error; |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2086 | ArtField* java_lang_Thread_name_field = |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2087 | jni::DecodeArtField(WellKnownClasses::java_lang_Thread_name); |
| Mathieu Chartier | f8ac97f | 2016-10-05 15:56:52 -0700 | [diff] [blame] | 2088 | ObjPtr<mirror::String> s(java_lang_Thread_name_field->GetObject(thread_object)->AsString()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2089 | if (s != nullptr) { |
| 2090 | *name = s->ToModifiedUtf8(); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2091 | } |
| 2092 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2093 | } |
| 2094 | |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2095 | JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2096 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2097 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2098 | ObjPtr<mirror::Object> thread_object = gRegistry->Get<mirror::Object>(thread_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2099 | if (error != JDWP::ERR_NONE) { |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2100 | return JDWP::ERR_INVALID_OBJECT; |
| 2101 | } |
| Mathieu Chartier | 268764d | 2016-09-13 12:09:38 -0700 | [diff] [blame] | 2102 | ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroup"); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2103 | // Okay, so it's an object, but is it actually a thread? |
| Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 2104 | DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2105 | if (error == JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2106 | // Zombie threads are in the null group. |
| 2107 | expandBufAddObjectId(pReply, JDWP::ObjectId(0)); |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2108 | error = JDWP::ERR_NONE; |
| 2109 | } else if (error == JDWP::ERR_NONE) { |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 2110 | ObjPtr<mirror::Class> c = soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread); |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2111 | CHECK(c != nullptr); |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2112 | ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_Thread_group); |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 2113 | CHECK(f != nullptr); |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2114 | ObjPtr<mirror::Object> group = f->GetObject(thread_object); |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 2115 | CHECK(group != nullptr); |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2116 | JDWP::ObjectId thread_group_id = gRegistry->Add(group); |
| 2117 | expandBufAddObjectId(pReply, thread_group_id); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2118 | } |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2119 | return error; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2120 | } |
| 2121 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2122 | static ObjPtr<mirror::Object> DecodeThreadGroup(ScopedObjectAccessUnchecked& soa, |
| 2123 | JDWP::ObjectId thread_group_id, |
| 2124 | JDWP::JdwpError* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2125 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2126 | ObjPtr<mirror::Object> thread_group = |
| 2127 | Dbg::GetObjectRegistry()->Get<mirror::Object>(thread_group_id, error); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2128 | if (*error != JDWP::ERR_NONE) { |
| 2129 | return nullptr; |
| 2130 | } |
| 2131 | if (thread_group == nullptr) { |
| 2132 | *error = JDWP::ERR_INVALID_OBJECT; |
| 2133 | return nullptr; |
| 2134 | } |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 2135 | ObjPtr<mirror::Class> c = |
| 2136 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ThreadGroup); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2137 | CHECK(c != nullptr); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2138 | if (!c->IsAssignableFrom(thread_group->GetClass())) { |
| 2139 | // This is not a java.lang.ThreadGroup. |
| 2140 | *error = JDWP::ERR_INVALID_THREAD_GROUP; |
| 2141 | return nullptr; |
| 2142 | } |
| 2143 | *error = JDWP::ERR_NONE; |
| 2144 | return thread_group; |
| 2145 | } |
| 2146 | |
| 2147 | JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) { |
| 2148 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2149 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2150 | ObjPtr<mirror::Object> thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2151 | if (error != JDWP::ERR_NONE) { |
| 2152 | return error; |
| 2153 | } |
| Mathieu Chartier | 268764d | 2016-09-13 12:09:38 -0700 | [diff] [blame] | 2154 | ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroupName"); |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2155 | ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_name); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2156 | CHECK(f != nullptr); |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2157 | ObjPtr<mirror::String> s = f->GetObject(thread_group)->AsString(); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2158 | |
| 2159 | std::string thread_group_name(s->ToModifiedUtf8()); |
| 2160 | expandBufAddUtf8String(pReply, thread_group_name); |
| 2161 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2162 | } |
| 2163 | |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2164 | JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2165 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2166 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2167 | ObjPtr<mirror::Object> thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2168 | if (error != JDWP::ERR_NONE) { |
| 2169 | return error; |
| 2170 | } |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2171 | ObjPtr<mirror::Object> parent; |
| Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2172 | { |
| Mathieu Chartier | 268764d | 2016-09-13 12:09:38 -0700 | [diff] [blame] | 2173 | ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroupParent"); |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2174 | ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_parent); |
| Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2175 | CHECK(f != nullptr); |
| 2176 | parent = f->GetObject(thread_group); |
| 2177 | } |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2178 | JDWP::ObjectId parent_group_id = gRegistry->Add(parent); |
| 2179 | expandBufAddObjectId(pReply, parent_group_id); |
| 2180 | return JDWP::ERR_NONE; |
| 2181 | } |
| 2182 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2183 | static void GetChildThreadGroups(ObjPtr<mirror::Object> thread_group, |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2184 | std::vector<JDWP::ObjectId>* child_thread_group_ids) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2185 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2186 | CHECK(thread_group != nullptr); |
| 2187 | |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2188 | // Get the int "ngroups" count of this thread group... |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2189 | ArtField* ngroups_field = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_ngroups); |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2190 | CHECK(ngroups_field != nullptr); |
| 2191 | const int32_t size = ngroups_field->GetInt(thread_group); |
| 2192 | if (size == 0) { |
| 2193 | return; |
| Sebastien Hertz | e49e195 | 2014-10-13 11:27:13 +0200 | [diff] [blame] | 2194 | } |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2195 | |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2196 | // Get the ThreadGroup[] "groups" out of this thread group... |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2197 | ArtField* groups_field = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_groups); |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2198 | ObjPtr<mirror::Object> groups_array = groups_field->GetObject(thread_group); |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2199 | |
| 2200 | CHECK(groups_array != nullptr); |
| 2201 | CHECK(groups_array->IsObjectArray()); |
| 2202 | |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2203 | ObjPtr<mirror::ObjectArray<mirror::Object>> groups_array_as_array = |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2204 | groups_array->AsObjectArray<mirror::Object>(); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2205 | |
| 2206 | // Copy the first 'size' elements out of the array into the result. |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2207 | ObjectRegistry* registry = Dbg::GetObjectRegistry(); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2208 | for (int32_t i = 0; i < size; ++i) { |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2209 | child_thread_group_ids->push_back(registry->Add(groups_array_as_array->Get(i))); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2210 | } |
| 2211 | } |
| 2212 | |
| 2213 | JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id, |
| 2214 | JDWP::ExpandBuf* pReply) { |
| 2215 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2216 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2217 | ObjPtr<mirror::Object> thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2218 | if (error != JDWP::ERR_NONE) { |
| 2219 | return error; |
| 2220 | } |
| 2221 | |
| 2222 | // Add child threads. |
| 2223 | { |
| 2224 | std::vector<JDWP::ObjectId> child_thread_ids; |
| 2225 | GetThreads(thread_group, &child_thread_ids); |
| 2226 | expandBufAdd4BE(pReply, child_thread_ids.size()); |
| 2227 | for (JDWP::ObjectId child_thread_id : child_thread_ids) { |
| 2228 | expandBufAddObjectId(pReply, child_thread_id); |
| 2229 | } |
| 2230 | } |
| 2231 | |
| 2232 | // Add child thread groups. |
| 2233 | { |
| 2234 | std::vector<JDWP::ObjectId> child_thread_groups_ids; |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2235 | GetChildThreadGroups(thread_group, &child_thread_groups_ids); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2236 | expandBufAdd4BE(pReply, child_thread_groups_ids.size()); |
| 2237 | for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) { |
| 2238 | expandBufAddObjectId(pReply, child_thread_group_id); |
| 2239 | } |
| 2240 | } |
| 2241 | |
| 2242 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2243 | } |
| 2244 | |
| 2245 | JDWP::ObjectId Dbg::GetSystemThreadGroupId() { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2246 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2247 | ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup); |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2248 | ObjPtr<mirror::Object> group = f->GetObject(f->GetDeclaringClass()); |
| Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 2249 | return gRegistry->Add(group); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2250 | } |
| 2251 | |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2252 | JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) { |
| 2253 | switch (state) { |
| 2254 | case kBlocked: |
| 2255 | return JDWP::TS_MONITOR; |
| 2256 | case kNative: |
| 2257 | case kRunnable: |
| 2258 | case kSuspended: |
| 2259 | return JDWP::TS_RUNNING; |
| 2260 | case kSleeping: |
| 2261 | return JDWP::TS_SLEEPING; |
| 2262 | case kStarting: |
| 2263 | case kTerminated: |
| 2264 | return JDWP::TS_ZOMBIE; |
| 2265 | case kTimedWaiting: |
| Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 2266 | case kWaitingForTaskProcessor: |
| 2267 | case kWaitingForLockInflation: |
| Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 2268 | case kWaitingForCheckPointsToRun: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2269 | case kWaitingForDebuggerSend: |
| 2270 | case kWaitingForDebuggerSuspension: |
| 2271 | case kWaitingForDebuggerToAttach: |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 2272 | case kWaitingForDeoptimization: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2273 | case kWaitingForGcToComplete: |
| Mathieu Chartier | b43390c | 2015-05-12 10:47:11 -0700 | [diff] [blame] | 2274 | case kWaitingForGetObjectsAllocated: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2275 | case kWaitingForJniOnLoad: |
| Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 2276 | case kWaitingForMethodTracingStart: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2277 | case kWaitingForSignalCatcherOutput: |
| Hiroshi Yamauchi | 0c8c303 | 2015-01-16 16:54:35 -0800 | [diff] [blame] | 2278 | case kWaitingForVisitObjects: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2279 | case kWaitingInMainDebuggerLoop: |
| 2280 | case kWaitingInMainSignalCatcherLoop: |
| 2281 | case kWaitingPerformingGc: |
| Mathieu Chartier | 90ef3db | 2015-08-04 15:19:41 -0700 | [diff] [blame] | 2282 | case kWaitingWeakGcRootRead: |
| Hiroshi Yamauchi | 76f55b0 | 2015-08-21 16:10:39 -0700 | [diff] [blame] | 2283 | case kWaitingForGcThreadFlip: |
| Koji Fukui | 34857b5 | 2019-03-20 19:13:00 +0900 | [diff] [blame] | 2284 | case kNativeForAbort: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2285 | case kWaiting: |
| 2286 | return JDWP::TS_WAIT; |
| 2287 | // Don't add a 'default' here so the compiler can spot incompatible enum changes. |
| 2288 | } |
| 2289 | LOG(FATAL) << "Unknown thread state: " << state; |
| Elliott Hughes | c1896c9 | 2018-11-29 11:33:18 -0800 | [diff] [blame] | 2290 | UNREACHABLE(); |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2291 | } |
| 2292 | |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2293 | JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus, |
| 2294 | JDWP::JdwpSuspendStatus* pSuspendStatus) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2295 | ScopedObjectAccess soa(Thread::Current()); |
| Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2296 | |
| Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 2297 | *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED; |
| 2298 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2299 | JDWP::JdwpError error; |
| 2300 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2301 | if (error != JDWP::ERR_NONE) { |
| 2302 | if (error == JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2303 | *pThreadStatus = JDWP::TS_ZOMBIE; |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2304 | return JDWP::ERR_NONE; |
| 2305 | } |
| 2306 | return error; |
| Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2307 | } |
| 2308 | |
| Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 2309 | if (IsSuspendedForDebugger(soa, thread)) { |
| 2310 | *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED; |
| Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2311 | } |
| 2312 | |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2313 | *pThreadStatus = ToJdwpThreadStatus(thread->GetState()); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2314 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2315 | } |
| 2316 | |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2317 | JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2318 | ScopedObjectAccess soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2319 | JDWP::JdwpError error; |
| 2320 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2321 | if (error != JDWP::ERR_NONE) { |
| 2322 | return error; |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2323 | } |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2324 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2325 | expandBufAdd4BE(pReply, thread->GetDebugSuspendCount()); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2326 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2327 | } |
| 2328 | |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2329 | JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) { |
| 2330 | ScopedObjectAccess soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2331 | JDWP::JdwpError error; |
| 2332 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2333 | if (error != JDWP::ERR_NONE) { |
| 2334 | return error; |
| 2335 | } |
| Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2336 | thread->Interrupt(soa.Self()); |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2337 | return JDWP::ERR_NONE; |
| 2338 | } |
| 2339 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2340 | static bool IsInDesiredThreadGroup(ObjPtr<mirror::Object> desired_thread_group, |
| 2341 | ObjPtr<mirror::Object> peer) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2342 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2343 | // Do we want threads from all thread groups? |
| 2344 | if (desired_thread_group == nullptr) { |
| 2345 | return true; |
| 2346 | } |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2347 | ArtField* thread_group_field = jni::DecodeArtField(WellKnownClasses::java_lang_Thread_group); |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2348 | DCHECK(thread_group_field != nullptr); |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2349 | ObjPtr<mirror::Object> group = thread_group_field->GetObject(peer); |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2350 | return (group == desired_thread_group); |
| 2351 | } |
| 2352 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2353 | void Dbg::GetThreads(ObjPtr<mirror::Object> thread_group, std::vector<JDWP::ObjectId>* thread_ids) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2354 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2355 | std::list<Thread*> all_threads_list; |
| 2356 | { |
| 2357 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
| 2358 | all_threads_list = Runtime::Current()->GetThreadList()->GetList(); |
| 2359 | } |
| 2360 | for (Thread* t : all_threads_list) { |
| 2361 | if (t == Dbg::GetDebugThread()) { |
| 2362 | // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and |
| 2363 | // query all threads, so it's easier if we just don't tell them about this thread. |
| 2364 | continue; |
| 2365 | } |
| 2366 | if (t->IsStillStarting()) { |
| 2367 | // This thread is being started (and has been registered in the thread list). However, it is |
| 2368 | // not completely started yet so we must ignore it. |
| 2369 | continue; |
| 2370 | } |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2371 | ObjPtr<mirror::Object> peer = t->GetPeerFromOtherThread(); |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2372 | if (peer == nullptr) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 2373 | // peer might be null if the thread is still starting up. We can't tell the debugger about |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2374 | // this thread yet. |
| 2375 | // TODO: if we identified threads to the debugger by their Thread* |
| 2376 | // rather than their peer's mirror::Object*, we could fix this. |
| 2377 | // Doing so might help us report ZOMBIE threads too. |
| 2378 | continue; |
| 2379 | } |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2380 | if (IsInDesiredThreadGroup(thread_group, peer)) { |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2381 | thread_ids->push_back(gRegistry->Add(peer)); |
| 2382 | } |
| 2383 | } |
| Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 2384 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2385 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2386 | static int GetStackDepth(Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_) { |
| Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame] | 2387 | size_t depth = 0u; |
| 2388 | StackVisitor::WalkStack( |
| 2389 | [&depth](const StackVisitor* visitor) REQUIRES_SHARED(Locks::mutator_lock_) { |
| 2390 | if (!visitor->GetMethod()->IsRuntimeMethod()) { |
| 2391 | ++depth; |
| 2392 | } |
| 2393 | return true; |
| 2394 | }, |
| 2395 | thread, |
| 2396 | /* context= */ nullptr, |
| 2397 | StackVisitor::StackWalkKind::kIncludeInlinedFrames); |
| 2398 | return depth; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2399 | } |
| 2400 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2401 | JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2402 | ScopedObjectAccess soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2403 | JDWP::JdwpError error; |
| 2404 | *result = 0; |
| 2405 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2406 | if (error != JDWP::ERR_NONE) { |
| 2407 | return error; |
| 2408 | } |
| Elliott Hughes | f15f4a0 | 2013-01-09 10:09:38 -0800 | [diff] [blame] | 2409 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2410 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 2411 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2412 | *result = GetStackDepth(thread); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2413 | return JDWP::ERR_NONE; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2414 | } |
| 2415 | |
| Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame] | 2416 | JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, |
| 2417 | const size_t start_frame, |
| 2418 | const size_t frame_count, |
| 2419 | JDWP::ExpandBuf* buf) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2420 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2421 | JDWP::JdwpError error; |
| 2422 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2423 | if (error != JDWP::ERR_NONE) { |
| 2424 | return error; |
| 2425 | } |
| Elliott Hughes | f15f4a0 | 2013-01-09 10:09:38 -0800 | [diff] [blame] | 2426 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2427 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 2428 | } |
| Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame] | 2429 | |
| 2430 | expandBufAdd4BE(buf, frame_count); |
| 2431 | |
| 2432 | size_t depth = 0u; |
| 2433 | StackVisitor::WalkStack( |
| 2434 | [&](StackVisitor* visitor) REQUIRES_SHARED(Locks::mutator_lock_) { |
| 2435 | if (visitor->GetMethod()->IsRuntimeMethod()) { |
| 2436 | return true; // The debugger can't do anything useful with a frame that has no Method*. |
| 2437 | } |
| 2438 | if (depth >= start_frame + frame_count) { |
| 2439 | return false; |
| 2440 | } |
| 2441 | if (depth >= start_frame) { |
| 2442 | JDWP::FrameId frame_id(visitor->GetFrameId()); |
| 2443 | JDWP::JdwpLocation location; |
| 2444 | SetJdwpLocation(&location, visitor->GetMethod(), visitor->GetDexPc()); |
| 2445 | VLOG(jdwp) |
| 2446 | << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth, frame_id) << location; |
| 2447 | expandBufAdd8BE(buf, frame_id); |
| 2448 | expandBufAddLocation(buf, location); |
| 2449 | } |
| 2450 | ++depth; |
| 2451 | return true; |
| 2452 | }, |
| 2453 | thread, |
| 2454 | /* context= */ nullptr, |
| 2455 | StackVisitor::StackWalkKind::kIncludeInlinedFrames); |
| 2456 | |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2457 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2458 | } |
| 2459 | |
| 2460 | JDWP::ObjectId Dbg::GetThreadSelfId() { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2461 | return GetThreadId(Thread::Current()); |
| 2462 | } |
| 2463 | |
| 2464 | JDWP::ObjectId Dbg::GetThreadId(Thread* thread) { |
| Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 2465 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 2466 | return gRegistry->Add(thread->GetPeerFromOtherThread()); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2467 | } |
| 2468 | |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 2469 | void Dbg::SuspendVM() { |
| Hiroshi Yamauchi | 8f95cf3 | 2016-04-19 11:14:06 -0700 | [diff] [blame] | 2470 | // Avoid a deadlock between GC and debugger where GC gets suspended during GC. b/25800335. |
| 2471 | gc::ScopedGCCriticalSection gcs(Thread::Current(), |
| 2472 | gc::kGcCauseDebugger, |
| 2473 | gc::kCollectorTypeDebugger); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2474 | Runtime::Current()->GetThreadList()->SuspendAllForDebugger(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2475 | } |
| 2476 | |
| 2477 | void Dbg::ResumeVM() { |
| Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 2478 | Runtime::Current()->GetThreadList()->ResumeAllForDebugger(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2479 | } |
| 2480 | |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2481 | JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) { |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 2482 | Thread* self = Thread::Current(); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2483 | ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2484 | { |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 2485 | ScopedObjectAccess soa(self); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2486 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2487 | peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object>(thread_id, &error))); |
| Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 2488 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2489 | if (peer.get() == nullptr) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2490 | return JDWP::ERR_THREAD_NOT_ALIVE; |
| 2491 | } |
| Ian Rogers | 4ad5cd3 | 2014-11-11 23:08:07 -0800 | [diff] [blame] | 2492 | // Suspend thread to build stack trace. |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 2493 | bool timed_out; |
| Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 2494 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
| Sebastien Hertz | cdd798d | 2017-04-18 18:28:51 +0200 | [diff] [blame] | 2495 | Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), |
| 2496 | request_suspension, |
| Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 2497 | SuspendReason::kForDebugger, |
| Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 2498 | &timed_out); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2499 | if (thread != nullptr) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2500 | return JDWP::ERR_NONE; |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 2501 | } else if (timed_out) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2502 | return JDWP::ERR_INTERNAL; |
| 2503 | } else { |
| 2504 | return JDWP::ERR_THREAD_NOT_ALIVE; |
| 2505 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2506 | } |
| 2507 | |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2508 | void Dbg::ResumeThread(JDWP::ObjectId thread_id) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2509 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2510 | JDWP::JdwpError error; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2511 | ObjPtr<mirror::Object> peer = gRegistry->Get<mirror::Object>(thread_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2512 | CHECK(peer != nullptr) << error; |
| jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 2513 | Thread* thread; |
| 2514 | { |
| 2515 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
| 2516 | thread = Thread::FromManagedThread(soa, peer); |
| 2517 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2518 | if (thread == nullptr) { |
| Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 2519 | LOG(WARNING) << "No such thread for resume: " << peer; |
| 2520 | return; |
| 2521 | } |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2522 | bool needs_resume; |
| 2523 | { |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2524 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
| Sebastien Hertz | 70d6027 | 2017-04-14 14:18:36 +0200 | [diff] [blame] | 2525 | needs_resume = thread->GetDebugSuspendCount() > 0; |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2526 | } |
| 2527 | if (needs_resume) { |
| Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 2528 | bool resumed = Runtime::Current()->GetThreadList()->Resume(thread, SuspendReason::kForDebugger); |
| 2529 | DCHECK(resumed); |
| Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 2530 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2531 | } |
| 2532 | |
| 2533 | void Dbg::SuspendSelf() { |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 2534 | Runtime::Current()->GetThreadList()->SuspendSelfForDebugger(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2535 | } |
| 2536 | |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2537 | JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, |
| 2538 | JDWP::ObjectId* result) { |
| 2539 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2540 | JDWP::JdwpError error; |
| 2541 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2542 | if (error != JDWP::ERR_NONE) { |
| 2543 | return error; |
| 2544 | } |
| 2545 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2546 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2547 | } |
| Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2548 | std::unique_ptr<Context> context(Context::Create()); |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2549 | ObjPtr<mirror::Object> this_object = nullptr; |
| Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame] | 2550 | StackVisitor::WalkStack( |
| 2551 | [&](art::StackVisitor* stack_visitor) REQUIRES_SHARED(Locks::mutator_lock_) { |
| 2552 | if (frame_id != stack_visitor->GetFrameId()) { |
| 2553 | return true; // continue |
| 2554 | } else { |
| 2555 | this_object = stack_visitor->GetThisObject(); |
| 2556 | return false; |
| 2557 | } |
| 2558 | }, |
| 2559 | thread, |
| 2560 | context.get(), |
| 2561 | art::StackVisitor::StackWalkKind::kIncludeInlinedFrames); |
| 2562 | *result = gRegistry->Add(this_object); |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2563 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2564 | } |
| 2565 | |
| Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame] | 2566 | template <typename FrameHandler> |
| 2567 | static JDWP::JdwpError FindAndHandleNonNativeFrame(Thread* thread, |
| 2568 | JDWP::FrameId frame_id, |
| 2569 | const FrameHandler& handler) |
| 2570 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 2571 | JDWP::JdwpError result = JDWP::ERR_INVALID_FRAMEID; |
| 2572 | std::unique_ptr<Context> context(Context::Create()); |
| 2573 | StackVisitor::WalkStack( |
| 2574 | [&](art::StackVisitor* stack_visitor) REQUIRES_SHARED(Locks::mutator_lock_) { |
| 2575 | if (stack_visitor->GetFrameId() != frame_id) { |
| 2576 | return true; // Not our frame, carry on. |
| 2577 | } |
| 2578 | ArtMethod* m = stack_visitor->GetMethod(); |
| 2579 | if (m->IsNative()) { |
| 2580 | // We can't read/write local value from/into native method. |
| 2581 | result = JDWP::ERR_OPAQUE_FRAME; |
| 2582 | } else { |
| 2583 | // We found our frame. |
| 2584 | result = handler(stack_visitor); |
| 2585 | } |
| 2586 | return false; |
| 2587 | }, |
| 2588 | thread, |
| 2589 | context.get(), |
| 2590 | art::StackVisitor::StackWalkKind::kIncludeInlinedFrames); |
| 2591 | return result; |
| 2592 | } |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2593 | |
| 2594 | JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) { |
| 2595 | JDWP::ObjectId thread_id = request->ReadThreadId(); |
| 2596 | JDWP::FrameId frame_id = request->ReadFrameId(); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2597 | |
| 2598 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2599 | JDWP::JdwpError error; |
| 2600 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2601 | if (error != JDWP::ERR_NONE) { |
| 2602 | return error; |
| 2603 | } |
| 2604 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2605 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2606 | } |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2607 | |
| Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame] | 2608 | return FindAndHandleNonNativeFrame( |
| 2609 | thread, |
| 2610 | frame_id, |
| 2611 | [&](art::StackVisitor* stack_visitor) REQUIRES_SHARED(Locks::mutator_lock_) { |
| 2612 | // Read the values from visitor's context. |
| 2613 | int32_t slot_count = request->ReadSigned32("slot count"); |
| 2614 | expandBufAdd4BE(pReply, slot_count); /* "int values" */ |
| 2615 | for (int32_t i = 0; i < slot_count; ++i) { |
| 2616 | uint32_t slot = request->ReadUnsigned32("slot"); |
| 2617 | JDWP::JdwpTag reqSigByte = request->ReadTag(); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2618 | |
| Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame] | 2619 | VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte; |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2620 | |
| Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame] | 2621 | size_t width = Dbg::GetTagWidth(reqSigByte); |
| 2622 | uint8_t* ptr = expandBufAddSpace(pReply, width + 1); |
| 2623 | error = Dbg::GetLocalValue(*stack_visitor, soa, slot, reqSigByte, ptr, width); |
| 2624 | if (error != JDWP::ERR_NONE) { |
| 2625 | return error; |
| 2626 | } |
| 2627 | } |
| 2628 | return JDWP::ERR_NONE; |
| 2629 | }); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2630 | } |
| 2631 | |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2632 | constexpr JDWP::JdwpError kStackFrameLocalAccessError = JDWP::ERR_ABSENT_INFORMATION; |
| 2633 | |
| 2634 | static std::string GetStackContextAsString(const StackVisitor& visitor) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2635 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2636 | return StringPrintf(" at DEX pc 0x%08x in method %s", visitor.GetDexPc(false), |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2637 | ArtMethod::PrettyMethod(visitor.GetMethod()).c_str()); |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2638 | } |
| 2639 | |
| 2640 | static JDWP::JdwpError FailGetLocalValue(const StackVisitor& visitor, uint16_t vreg, |
| 2641 | JDWP::JdwpTag tag) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2642 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2643 | LOG(ERROR) << "Failed to read " << tag << " local from register v" << vreg |
| 2644 | << GetStackContextAsString(visitor); |
| 2645 | return kStackFrameLocalAccessError; |
| 2646 | } |
| 2647 | |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2648 | JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa, |
| 2649 | int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2650 | ArtMethod* m = visitor.GetMethod(); |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2651 | JDWP::JdwpError error = JDWP::ERR_NONE; |
| 2652 | uint16_t vreg = DemangleSlot(slot, m, &error); |
| 2653 | if (error != JDWP::ERR_NONE) { |
| 2654 | return error; |
| 2655 | } |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2656 | // TODO: check that the tag is compatible with the actual type of the slot! |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2657 | switch (tag) { |
| 2658 | case JDWP::JT_BOOLEAN: { |
| 2659 | CHECK_EQ(width, 1U); |
| 2660 | uint32_t intVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2661 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2662 | return FailGetLocalValue(visitor, vreg, tag); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2663 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2664 | VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal; |
| 2665 | JDWP::Set1(buf + 1, intVal != 0); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2666 | break; |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2667 | } |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2668 | case JDWP::JT_BYTE: { |
| 2669 | CHECK_EQ(width, 1U); |
| 2670 | uint32_t intVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2671 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2672 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2673 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2674 | VLOG(jdwp) << "get byte local " << vreg << " = " << intVal; |
| 2675 | JDWP::Set1(buf + 1, intVal); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2676 | break; |
| 2677 | } |
| 2678 | case JDWP::JT_SHORT: |
| 2679 | case JDWP::JT_CHAR: { |
| 2680 | CHECK_EQ(width, 2U); |
| 2681 | uint32_t intVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2682 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2683 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2684 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2685 | VLOG(jdwp) << "get short/char local " << vreg << " = " << intVal; |
| 2686 | JDWP::Set2BE(buf + 1, intVal); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2687 | break; |
| 2688 | } |
| 2689 | case JDWP::JT_INT: { |
| 2690 | CHECK_EQ(width, 4U); |
| 2691 | uint32_t intVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2692 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2693 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2694 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2695 | VLOG(jdwp) << "get int local " << vreg << " = " << intVal; |
| 2696 | JDWP::Set4BE(buf + 1, intVal); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2697 | break; |
| 2698 | } |
| 2699 | case JDWP::JT_FLOAT: { |
| 2700 | CHECK_EQ(width, 4U); |
| 2701 | uint32_t intVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2702 | if (!visitor.GetVReg(m, vreg, kFloatVReg, &intVal)) { |
| 2703 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2704 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2705 | VLOG(jdwp) << "get float local " << vreg << " = " << intVal; |
| 2706 | JDWP::Set4BE(buf + 1, intVal); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2707 | break; |
| 2708 | } |
| 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)); |
| 2717 | uint32_t intVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2718 | if (!visitor.GetVReg(m, vreg, kReferenceVReg, &intVal)) { |
| 2719 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2720 | } |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2721 | ObjPtr<mirror::Object> o = reinterpret_cast<mirror::Object*>(intVal); |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2722 | VLOG(jdwp) << "get " << tag << " object local " << vreg << " = " << o; |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2723 | if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o.Ptr())) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2724 | LOG(FATAL) << StringPrintf("Found invalid object %#" PRIxPTR " in register v%u", |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2725 | reinterpret_cast<uintptr_t>(o.Ptr()), vreg) |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2726 | << GetStackContextAsString(visitor); |
| 2727 | UNREACHABLE(); |
| 2728 | } |
| 2729 | tag = TagFromObject(soa, o); |
| 2730 | JDWP::SetObjectId(buf + 1, gRegistry->Add(o)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2731 | break; |
| 2732 | } |
| 2733 | case JDWP::JT_DOUBLE: { |
| 2734 | CHECK_EQ(width, 8U); |
| 2735 | uint64_t longVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2736 | if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) { |
| 2737 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2738 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2739 | VLOG(jdwp) << "get double local " << vreg << " = " << longVal; |
| 2740 | JDWP::Set8BE(buf + 1, longVal); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2741 | break; |
| 2742 | } |
| 2743 | case JDWP::JT_LONG: { |
| 2744 | CHECK_EQ(width, 8U); |
| 2745 | uint64_t longVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2746 | if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) { |
| 2747 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2748 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2749 | VLOG(jdwp) << "get long local " << vreg << " = " << longVal; |
| 2750 | JDWP::Set8BE(buf + 1, longVal); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2751 | break; |
| 2752 | } |
| 2753 | default: |
| 2754 | LOG(FATAL) << "Unknown tag " << tag; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2755 | UNREACHABLE(); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2756 | } |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2757 | |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2758 | // Prepend tag, which may have been updated. |
| 2759 | JDWP::Set1(buf, tag); |
| 2760 | return JDWP::ERR_NONE; |
| 2761 | } |
| 2762 | |
| 2763 | JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) { |
| 2764 | JDWP::ObjectId thread_id = request->ReadThreadId(); |
| 2765 | JDWP::FrameId frame_id = request->ReadFrameId(); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2766 | |
| 2767 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2768 | JDWP::JdwpError error; |
| 2769 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2770 | if (error != JDWP::ERR_NONE) { |
| 2771 | return error; |
| 2772 | } |
| 2773 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2774 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2775 | } |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2776 | |
| Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame] | 2777 | return FindAndHandleNonNativeFrame( |
| 2778 | thread, |
| 2779 | frame_id, |
| 2780 | [&](art::StackVisitor* stack_visitor) REQUIRES_SHARED(Locks::mutator_lock_) { |
| 2781 | // Writes the values into visitor's context. |
| 2782 | int32_t slot_count = request->ReadSigned32("slot count"); |
| 2783 | for (int32_t i = 0; i < slot_count; ++i) { |
| 2784 | uint32_t slot = request->ReadUnsigned32("slot"); |
| 2785 | JDWP::JdwpTag sigByte = request->ReadTag(); |
| 2786 | size_t width = Dbg::GetTagWidth(sigByte); |
| 2787 | uint64_t value = request->ReadValue(width); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2788 | |
| Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame] | 2789 | VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value; |
| 2790 | error = Dbg::SetLocalValue(thread, *stack_visitor, slot, sigByte, value, width); |
| 2791 | if (error != JDWP::ERR_NONE) { |
| 2792 | return error; |
| 2793 | } |
| 2794 | } |
| 2795 | return JDWP::ERR_NONE; |
| 2796 | }); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2797 | } |
| 2798 | |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2799 | template<typename T> |
| 2800 | static JDWP::JdwpError FailSetLocalValue(const StackVisitor& visitor, uint16_t vreg, |
| 2801 | JDWP::JdwpTag tag, T value) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2802 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2803 | LOG(ERROR) << "Failed to write " << tag << " local " << value |
| 2804 | << " (0x" << std::hex << value << ") into register v" << vreg |
| 2805 | << GetStackContextAsString(visitor); |
| 2806 | return kStackFrameLocalAccessError; |
| 2807 | } |
| 2808 | |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2809 | JDWP::JdwpError Dbg::SetLocalValue(Thread* thread, StackVisitor& visitor, int slot, |
| 2810 | JDWP::JdwpTag tag, uint64_t value, size_t width) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2811 | ArtMethod* m = visitor.GetMethod(); |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2812 | JDWP::JdwpError error = JDWP::ERR_NONE; |
| 2813 | uint16_t vreg = DemangleSlot(slot, m, &error); |
| 2814 | if (error != JDWP::ERR_NONE) { |
| 2815 | return error; |
| 2816 | } |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2817 | // TODO: check that the tag is compatible with the actual type of the slot! |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2818 | switch (tag) { |
| 2819 | case JDWP::JT_BOOLEAN: |
| 2820 | case JDWP::JT_BYTE: |
| 2821 | CHECK_EQ(width, 1U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2822 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2823 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2824 | } |
| 2825 | break; |
| 2826 | case JDWP::JT_SHORT: |
| 2827 | case JDWP::JT_CHAR: |
| 2828 | CHECK_EQ(width, 2U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2829 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2830 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2831 | } |
| 2832 | break; |
| 2833 | case JDWP::JT_INT: |
| 2834 | CHECK_EQ(width, 4U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2835 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2836 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2837 | } |
| 2838 | break; |
| 2839 | case JDWP::JT_FLOAT: |
| 2840 | CHECK_EQ(width, 4U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2841 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2842 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2843 | } |
| 2844 | break; |
| 2845 | case JDWP::JT_ARRAY: |
| 2846 | case JDWP::JT_CLASS_LOADER: |
| 2847 | case JDWP::JT_CLASS_OBJECT: |
| 2848 | case JDWP::JT_OBJECT: |
| 2849 | case JDWP::JT_STRING: |
| 2850 | case JDWP::JT_THREAD: |
| 2851 | case JDWP::JT_THREAD_GROUP: { |
| 2852 | CHECK_EQ(width, sizeof(JDWP::ObjectId)); |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2853 | ObjPtr<mirror::Object> o = |
| 2854 | gRegistry->Get<mirror::Object>(static_cast<JDWP::ObjectId>(value), &error); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2855 | if (error != JDWP::ERR_NONE) { |
| 2856 | VLOG(jdwp) << tag << " object " << o << " is an invalid object"; |
| 2857 | return JDWP::ERR_INVALID_OBJECT; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2858 | } |
| Vladimir Marko | 439d126 | 2019-04-12 14:45:07 +0100 | [diff] [blame] | 2859 | if (!visitor.SetVRegReference(m, vreg, o)) { |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2860 | return FailSetLocalValue(visitor, vreg, tag, reinterpret_cast<uintptr_t>(o.Ptr())); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2861 | } |
| 2862 | break; |
| 2863 | } |
| 2864 | case JDWP::JT_DOUBLE: { |
| 2865 | CHECK_EQ(width, 8U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2866 | if (!visitor.SetVRegPair(m, vreg, value, kDoubleLoVReg, kDoubleHiVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2867 | return FailSetLocalValue(visitor, vreg, tag, value); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2868 | } |
| 2869 | break; |
| 2870 | } |
| 2871 | case JDWP::JT_LONG: { |
| 2872 | CHECK_EQ(width, 8U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2873 | if (!visitor.SetVRegPair(m, vreg, value, kLongLoVReg, kLongHiVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2874 | return FailSetLocalValue(visitor, vreg, tag, value); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2875 | } |
| 2876 | break; |
| 2877 | } |
| 2878 | default: |
| 2879 | LOG(FATAL) << "Unknown tag " << tag; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2880 | UNREACHABLE(); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2881 | } |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2882 | |
| 2883 | // If we set the local variable in a compiled frame, we need to trigger a deoptimization of |
| 2884 | // the stack so we continue execution with the interpreter using the new value(s) of the updated |
| 2885 | // local variable(s). To achieve this, we install instrumentation exit stub on each method of the |
| 2886 | // thread's stack. The stub will cause the deoptimization to happen. |
| 2887 | if (!visitor.IsShadowFrame() && thread->HasDebuggerShadowFrames()) { |
| 2888 | Runtime::Current()->GetInstrumentation()->InstrumentThreadStack(thread); |
| 2889 | } |
| 2890 | |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2891 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2892 | } |
| 2893 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2894 | static void SetEventLocation(JDWP::EventLocation* location, ArtMethod* m, uint32_t dex_pc) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2895 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2896 | DCHECK(location != nullptr); |
| 2897 | if (m == nullptr) { |
| 2898 | memset(location, 0, sizeof(*location)); |
| 2899 | } else { |
| Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 2900 | location->method = m->GetCanonicalMethod(kRuntimePointerSize); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2901 | location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc; |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2902 | } |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2903 | } |
| 2904 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2905 | void Dbg::PostLocationEvent(ArtMethod* m, |
| 2906 | int dex_pc, |
| 2907 | ObjPtr<mirror::Object> this_object, |
| 2908 | int event_flags, |
| 2909 | const JValue* return_value) { |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2910 | if (!IsDebuggerActive()) { |
| 2911 | return; |
| 2912 | } |
| 2913 | DCHECK(m != nullptr); |
| 2914 | DCHECK_EQ(m->IsStatic(), this_object == nullptr); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2915 | JDWP::EventLocation location; |
| 2916 | SetEventLocation(&location, m, dex_pc); |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2917 | |
| Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2918 | // We need to be sure no exception is pending when calling JdwpState::PostLocationEvent. |
| 2919 | // This is required to be able to call JNI functions to create JDWP ids. To achieve this, |
| 2920 | // we temporarily clear the current thread's exception (if any) and will restore it after |
| 2921 | // the call. |
| 2922 | // Note: the only way to get a pending exception here is to suspend on a move-exception |
| 2923 | // instruction. |
| 2924 | Thread* const self = Thread::Current(); |
| 2925 | StackHandleScope<1> hs(self); |
| 2926 | Handle<mirror::Throwable> pending_exception(hs.NewHandle(self->GetException())); |
| 2927 | self->ClearException(); |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 2928 | if (kIsDebugBuild && pending_exception != nullptr) { |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 2929 | const Instruction& instr = location.method->DexInstructions().InstructionAt(location.dex_pc); |
| 2930 | CHECK_EQ(Instruction::MOVE_EXCEPTION, instr.Opcode()); |
| Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2931 | } |
| 2932 | |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2933 | gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value); |
| Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2934 | |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 2935 | if (pending_exception != nullptr) { |
| Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2936 | self->SetException(pending_exception.Get()); |
| 2937 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2938 | } |
| 2939 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2940 | void Dbg::PostFieldAccessEvent(ArtMethod* m, |
| 2941 | int dex_pc, |
| 2942 | ObjPtr<mirror::Object> this_object, |
| 2943 | ArtField* f) { |
| Alex Light | e00ec30 | 2017-06-16 08:56:43 -0700 | [diff] [blame] | 2944 | // TODO We should send events for native methods. |
| 2945 | if (!IsDebuggerActive() || m->IsNative()) { |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2946 | return; |
| 2947 | } |
| 2948 | DCHECK(m != nullptr); |
| 2949 | DCHECK(f != nullptr); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2950 | JDWP::EventLocation location; |
| 2951 | SetEventLocation(&location, m, dex_pc); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2952 | |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2953 | gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2954 | } |
| 2955 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2956 | void Dbg::PostFieldModificationEvent(ArtMethod* m, |
| 2957 | int dex_pc, |
| 2958 | ObjPtr<mirror::Object> this_object, |
| 2959 | ArtField* f, |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2960 | const JValue* field_value) { |
| Alex Light | e00ec30 | 2017-06-16 08:56:43 -0700 | [diff] [blame] | 2961 | // TODO We should send events for native methods. |
| 2962 | if (!IsDebuggerActive() || m->IsNative()) { |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2963 | return; |
| 2964 | } |
| 2965 | DCHECK(m != nullptr); |
| 2966 | DCHECK(f != nullptr); |
| 2967 | DCHECK(field_value != nullptr); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2968 | JDWP::EventLocation location; |
| 2969 | SetEventLocation(&location, m, dex_pc); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2970 | |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2971 | gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2972 | } |
| 2973 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 2974 | void Dbg::PostException(ObjPtr<mirror::Throwable> exception_object) { |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 2975 | if (!IsDebuggerActive()) { |
| Ian Rogers | 0ad5bb8 | 2011-12-07 10:16:32 -0800 | [diff] [blame] | 2976 | return; |
| 2977 | } |
| Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 2978 | Thread* const self = Thread::Current(); |
| Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame] | 2979 | StackHandleScope<2> handle_scope(self); |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2980 | Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object)); |
| Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame] | 2981 | MutableHandle<mirror::Object> this_at_throw = handle_scope.NewHandle<mirror::Object>(nullptr); |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2982 | std::unique_ptr<Context> context(Context::Create()); |
| Andreas Gampe | 3d477f3 | 2018-11-16 16:40:45 +0000 | [diff] [blame] | 2983 | |
| Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame] | 2984 | ArtMethod* catch_method = nullptr; |
| 2985 | ArtMethod* throw_method = nullptr; |
| 2986 | uint32_t catch_dex_pc = dex::kDexNoIndex; |
| 2987 | uint32_t throw_dex_pc = dex::kDexNoIndex; |
| 2988 | StackVisitor::WalkStack( |
| 2989 | /** |
| 2990 | * Finds the location where this exception will be caught. We search until we reach the top |
| 2991 | * frame, in which case this exception is considered uncaught. |
| 2992 | */ |
| 2993 | [&](const art::StackVisitor* stack_visitor) REQUIRES_SHARED(Locks::mutator_lock_) { |
| 2994 | ArtMethod* method = stack_visitor->GetMethod(); |
| 2995 | DCHECK(method != nullptr); |
| 2996 | if (method->IsRuntimeMethod()) { |
| 2997 | // Ignore callee save method. |
| 2998 | DCHECK(method->IsCalleeSaveMethod()); |
| 2999 | return true; |
| 3000 | } |
| 3001 | |
| 3002 | uint32_t dex_pc = stack_visitor->GetDexPc(); |
| 3003 | if (throw_method == nullptr) { |
| 3004 | // First Java method found. It is either the method that threw the exception, |
| 3005 | // or the Java native method that is reporting an exception thrown by |
| 3006 | // native code. |
| 3007 | this_at_throw.Assign(stack_visitor->GetThisObject()); |
| 3008 | throw_method = method; |
| 3009 | throw_dex_pc = dex_pc; |
| 3010 | } |
| 3011 | |
| 3012 | if (dex_pc != dex::kDexNoIndex) { |
| 3013 | StackHandleScope<1> hs(stack_visitor->GetThread()); |
| 3014 | uint32_t found_dex_pc; |
| 3015 | Handle<mirror::Class> exception_class(hs.NewHandle(h_exception->GetClass())); |
| 3016 | bool unused_clear_exception; |
| 3017 | found_dex_pc = method->FindCatchBlock(exception_class, dex_pc, &unused_clear_exception); |
| 3018 | if (found_dex_pc != dex::kDexNoIndex) { |
| 3019 | catch_method = method; |
| 3020 | catch_dex_pc = found_dex_pc; |
| 3021 | return false; // End stack walk. |
| 3022 | } |
| 3023 | } |
| 3024 | return true; // Continue stack walk. |
| 3025 | }, |
| 3026 | self, |
| 3027 | context.get(), |
| 3028 | art::StackVisitor::StackWalkKind::kIncludeInlinedFrames); |
| 3029 | |
| 3030 | JDWP::EventLocation exception_throw_location; |
| 3031 | SetEventLocation(&exception_throw_location, throw_method, throw_dex_pc); |
| 3032 | JDWP::EventLocation exception_catch_location; |
| 3033 | SetEventLocation(&exception_catch_location, catch_method, catch_dex_pc); |
| 3034 | |
| 3035 | gJdwpState->PostException(&exception_throw_location, |
| 3036 | h_exception.Get(), |
| 3037 | &exception_catch_location, |
| 3038 | this_at_throw.Get()); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3039 | } |
| 3040 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 3041 | void Dbg::PostClassPrepare(ObjPtr<mirror::Class> c) { |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 3042 | if (!IsDebuggerActive()) { |
| Elliott Hughes | 4740cdf | 2011-12-07 14:07:12 -0800 | [diff] [blame] | 3043 | return; |
| 3044 | } |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 3045 | gJdwpState->PostClassPrepare(c); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3046 | } |
| 3047 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 3048 | void Dbg::UpdateDebugger(Thread* thread, |
| 3049 | ObjPtr<mirror::Object> this_object, |
| 3050 | ArtMethod* m, |
| 3051 | uint32_t dex_pc, |
| 3052 | int event_flags, |
| 3053 | const JValue* return_value) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3054 | if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) { |
| Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 3055 | return; |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3056 | } |
| 3057 | |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3058 | if (IsBreakpoint(m, dex_pc)) { |
| 3059 | event_flags |= kBreakpoint; |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3060 | } |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3061 | |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3062 | // If the debugger is single-stepping one of our threads, check to |
| 3063 | // see if we're that thread and we've reached a step point. |
| 3064 | const SingleStepControl* single_step_control = thread->GetSingleStepControl(); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3065 | if (single_step_control != nullptr) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3066 | CHECK(!m->IsNative()); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3067 | if (single_step_control->GetStepDepth() == JDWP::SD_INTO) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3068 | // Step into method calls. We break when the line number |
| 3069 | // or method pointer changes. If we're in SS_MIN mode, we |
| 3070 | // always stop. |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3071 | if (single_step_control->GetMethod() != m) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3072 | event_flags |= kSingleStep; |
| 3073 | VLOG(jdwp) << "SS new method"; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3074 | } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3075 | event_flags |= kSingleStep; |
| 3076 | VLOG(jdwp) << "SS new instruction"; |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3077 | } else if (single_step_control->ContainsDexPc(dex_pc)) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3078 | event_flags |= kSingleStep; |
| 3079 | VLOG(jdwp) << "SS new line"; |
| 3080 | } |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3081 | } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3082 | // Step over method calls. We break when the line number is |
| 3083 | // different and the frame depth is <= the original frame |
| 3084 | // depth. (We can't just compare on the method, because we |
| 3085 | // might get unrolled past it by an exception, and it's tricky |
| 3086 | // to identify recursion.) |
| 3087 | |
| 3088 | int stack_depth = GetStackDepth(thread); |
| 3089 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3090 | if (stack_depth < single_step_control->GetStackDepth()) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3091 | // Popped up one or more frames, always trigger. |
| 3092 | event_flags |= kSingleStep; |
| 3093 | VLOG(jdwp) << "SS method pop"; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3094 | } else if (stack_depth == single_step_control->GetStackDepth()) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3095 | // Same depth, see if we moved. |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3096 | if (single_step_control->GetStepSize() == JDWP::SS_MIN) { |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3097 | event_flags |= kSingleStep; |
| 3098 | VLOG(jdwp) << "SS new instruction"; |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3099 | } else if (single_step_control->ContainsDexPc(dex_pc)) { |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3100 | event_flags |= kSingleStep; |
| 3101 | VLOG(jdwp) << "SS new line"; |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3102 | } |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3103 | } |
| 3104 | } else { |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3105 | CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT); |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3106 | // Return from the current method. We break when the frame |
| 3107 | // depth pops up. |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3108 | |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3109 | // This differs from the "method exit" break in that it stops |
| 3110 | // with the PC at the next instruction in the returned-to |
| 3111 | // function, rather than the end of the returning function. |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3112 | |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3113 | int stack_depth = GetStackDepth(thread); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3114 | if (stack_depth < single_step_control->GetStackDepth()) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3115 | event_flags |= kSingleStep; |
| 3116 | VLOG(jdwp) << "SS method pop"; |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3117 | } |
| 3118 | } |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3119 | } |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3120 | |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3121 | // If there's something interesting going on, see if it matches one |
| 3122 | // of the debugger filters. |
| 3123 | if (event_flags != 0) { |
| Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 3124 | Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value); |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3125 | } |
| 3126 | } |
| 3127 | |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3128 | size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) { |
| 3129 | switch (instrumentation_event) { |
| 3130 | case instrumentation::Instrumentation::kMethodEntered: |
| 3131 | return &method_enter_event_ref_count_; |
| 3132 | case instrumentation::Instrumentation::kMethodExited: |
| 3133 | return &method_exit_event_ref_count_; |
| 3134 | case instrumentation::Instrumentation::kDexPcMoved: |
| 3135 | return &dex_pc_change_event_ref_count_; |
| 3136 | case instrumentation::Instrumentation::kFieldRead: |
| 3137 | return &field_read_event_ref_count_; |
| 3138 | case instrumentation::Instrumentation::kFieldWritten: |
| 3139 | return &field_write_event_ref_count_; |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 3140 | case instrumentation::Instrumentation::kExceptionThrown: |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3141 | return &exception_catch_event_ref_count_; |
| 3142 | default: |
| 3143 | return nullptr; |
| 3144 | } |
| 3145 | } |
| 3146 | |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3147 | // Process request while all mutator threads are suspended. |
| 3148 | void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3149 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3150 | switch (request.GetKind()) { |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3151 | case DeoptimizationRequest::kNothing: |
| 3152 | LOG(WARNING) << "Ignoring empty deoptimization request."; |
| 3153 | break; |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3154 | case DeoptimizationRequest::kRegisterForEvent: |
| 3155 | VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x", |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3156 | request.InstrumentationEvent()); |
| 3157 | instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent()); |
| 3158 | instrumentation_events_ |= request.InstrumentationEvent(); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3159 | break; |
| 3160 | case DeoptimizationRequest::kUnregisterForEvent: |
| 3161 | VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x", |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3162 | request.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3163 | instrumentation->RemoveListener(&gDebugInstrumentationListener, |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3164 | request.InstrumentationEvent()); |
| 3165 | instrumentation_events_ &= ~request.InstrumentationEvent(); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3166 | break; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3167 | case DeoptimizationRequest::kFullDeoptimization: |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3168 | VLOG(jdwp) << "Deoptimize the world ..."; |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 3169 | instrumentation->DeoptimizeEverything(kDbgInstrumentationKey); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3170 | VLOG(jdwp) << "Deoptimize the world DONE"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3171 | break; |
| 3172 | case DeoptimizationRequest::kFullUndeoptimization: |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3173 | VLOG(jdwp) << "Undeoptimize the world ..."; |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 3174 | instrumentation->UndeoptimizeEverything(kDbgInstrumentationKey); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3175 | VLOG(jdwp) << "Undeoptimize the world DONE"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3176 | break; |
| 3177 | case DeoptimizationRequest::kSelectiveDeoptimization: |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3178 | VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ..."; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3179 | instrumentation->Deoptimize(request.Method()); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3180 | VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3181 | break; |
| 3182 | case DeoptimizationRequest::kSelectiveUndeoptimization: |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3183 | VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ..."; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3184 | instrumentation->Undeoptimize(request.Method()); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3185 | VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3186 | break; |
| 3187 | default: |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3188 | LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind(); |
| Elliott Hughes | c1896c9 | 2018-11-29 11:33:18 -0800 | [diff] [blame] | 3189 | UNREACHABLE(); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3190 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3191 | } |
| 3192 | |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3193 | void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3194 | if (req.GetKind() == DeoptimizationRequest::kNothing) { |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3195 | // Nothing to do. |
| 3196 | return; |
| 3197 | } |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3198 | MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3199 | RequestDeoptimizationLocked(req); |
| 3200 | } |
| 3201 | |
| 3202 | void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3203 | switch (req.GetKind()) { |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3204 | case DeoptimizationRequest::kRegisterForEvent: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3205 | DCHECK_NE(req.InstrumentationEvent(), 0u); |
| 3206 | size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3207 | CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x", |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3208 | req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3209 | if (*counter == 0) { |
| Sebastien Hertz | 7d2ae43 | 2014-05-15 11:26:34 +0200 | [diff] [blame] | 3210 | VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x", |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3211 | deoptimization_requests_.size(), req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3212 | deoptimization_requests_.push_back(req); |
| 3213 | } |
| 3214 | *counter = *counter + 1; |
| 3215 | break; |
| 3216 | } |
| 3217 | case DeoptimizationRequest::kUnregisterForEvent: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3218 | DCHECK_NE(req.InstrumentationEvent(), 0u); |
| 3219 | size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3220 | CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x", |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3221 | req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3222 | *counter = *counter - 1; |
| 3223 | if (*counter == 0) { |
| Sebastien Hertz | 7d2ae43 | 2014-05-15 11:26:34 +0200 | [diff] [blame] | 3224 | VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x", |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3225 | deoptimization_requests_.size(), req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3226 | deoptimization_requests_.push_back(req); |
| 3227 | } |
| 3228 | break; |
| 3229 | } |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3230 | case DeoptimizationRequest::kFullDeoptimization: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3231 | DCHECK(req.Method() == nullptr); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3232 | if (full_deoptimization_event_count_ == 0) { |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3233 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| 3234 | << " for full deoptimization"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3235 | deoptimization_requests_.push_back(req); |
| 3236 | } |
| 3237 | ++full_deoptimization_event_count_; |
| 3238 | break; |
| 3239 | } |
| 3240 | case DeoptimizationRequest::kFullUndeoptimization: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3241 | DCHECK(req.Method() == nullptr); |
| Sebastien Hertz | e713d93 | 2014-05-15 10:48:53 +0200 | [diff] [blame] | 3242 | DCHECK_GT(full_deoptimization_event_count_, 0U); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3243 | --full_deoptimization_event_count_; |
| 3244 | if (full_deoptimization_event_count_ == 0) { |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3245 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| 3246 | << " for full undeoptimization"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3247 | deoptimization_requests_.push_back(req); |
| 3248 | } |
| 3249 | break; |
| 3250 | } |
| 3251 | case DeoptimizationRequest::kSelectiveDeoptimization: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3252 | DCHECK(req.Method() != nullptr); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3253 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3254 | << " for deoptimization of " << req.Method()->PrettyMethod(); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3255 | deoptimization_requests_.push_back(req); |
| 3256 | break; |
| 3257 | } |
| 3258 | case DeoptimizationRequest::kSelectiveUndeoptimization: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3259 | DCHECK(req.Method() != nullptr); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3260 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3261 | << " for undeoptimization of " << req.Method()->PrettyMethod(); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3262 | deoptimization_requests_.push_back(req); |
| 3263 | break; |
| 3264 | } |
| 3265 | default: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3266 | LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind(); |
| Elliott Hughes | c1896c9 | 2018-11-29 11:33:18 -0800 | [diff] [blame] | 3267 | UNREACHABLE(); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3268 | } |
| 3269 | } |
| 3270 | } |
| 3271 | |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3272 | void Dbg::ManageDeoptimization() { |
| 3273 | Thread* const self = Thread::Current(); |
| 3274 | { |
| 3275 | // Avoid suspend/resume if there is no pending request. |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3276 | MutexLock mu(self, *Locks::deoptimization_lock_); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3277 | if (deoptimization_requests_.empty()) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3278 | return; |
| 3279 | } |
| 3280 | } |
| 3281 | CHECK_EQ(self->GetState(), kRunnable); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3282 | ScopedThreadSuspension sts(self, kWaitingForDeoptimization); |
| Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 3283 | // Required for ProcessDeoptimizationRequest. |
| 3284 | gc::ScopedGCCriticalSection gcs(self, |
| 3285 | gc::kGcCauseInstrumentation, |
| 3286 | gc::kCollectorTypeInstrumentation); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3287 | // We need to suspend mutator threads first. |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 3288 | ScopedSuspendAll ssa(__FUNCTION__); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3289 | const ThreadState old_state = self->SetStateUnsafe(kRunnable); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3290 | { |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3291 | MutexLock mu(self, *Locks::deoptimization_lock_); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3292 | size_t req_index = 0; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3293 | for (DeoptimizationRequest& request : deoptimization_requests_) { |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3294 | VLOG(jdwp) << "Process deoptimization request #" << req_index++; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3295 | ProcessDeoptimizationRequest(request); |
| 3296 | } |
| 3297 | deoptimization_requests_.clear(); |
| 3298 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3299 | CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3300 | } |
| 3301 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3302 | static const Breakpoint* FindFirstBreakpointForMethod(ArtMethod* m) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3303 | REQUIRES_SHARED(Locks::mutator_lock_, Locks::breakpoint_lock_) { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3304 | for (Breakpoint& breakpoint : gBreakpoints) { |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3305 | if (breakpoint.IsInMethod(m)) { |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3306 | return &breakpoint; |
| 3307 | } |
| 3308 | } |
| 3309 | return nullptr; |
| 3310 | } |
| 3311 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3312 | bool Dbg::MethodHasAnyBreakpoints(ArtMethod* method) { |
| Mathieu Chartier | d856545 | 2015-03-26 09:41:50 -0700 | [diff] [blame] | 3313 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
| 3314 | return FindFirstBreakpointForMethod(method) != nullptr; |
| 3315 | } |
| 3316 | |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3317 | // Sanity checks all existing breakpoints on the same method. |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3318 | static void SanityCheckExistingBreakpoints(ArtMethod* m, |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3319 | DeoptimizationRequest::Kind deoptimization_kind) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3320 | REQUIRES_SHARED(Locks::mutator_lock_, Locks::breakpoint_lock_) { |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3321 | for (const Breakpoint& breakpoint : gBreakpoints) { |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3322 | if (breakpoint.IsInMethod(m)) { |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3323 | CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind()); |
| 3324 | } |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3325 | } |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3326 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
| 3327 | if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) { |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3328 | // We should have deoptimized everything but not "selectively" deoptimized this method. |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3329 | CHECK(instrumentation->AreAllMethodsDeoptimized()); |
| 3330 | CHECK(!instrumentation->IsDeoptimized(m)); |
| 3331 | } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) { |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3332 | // We should have "selectively" deoptimized this method. |
| 3333 | // Note: while we have not deoptimized everything for this method, we may have done it for |
| 3334 | // another event. |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3335 | CHECK(instrumentation->IsDeoptimized(m)); |
| 3336 | } else { |
| 3337 | // This method does not require deoptimization. |
| 3338 | CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing); |
| 3339 | CHECK(!instrumentation->IsDeoptimized(m)); |
| 3340 | } |
| 3341 | } |
| 3342 | |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3343 | // Returns the deoptimization kind required to set a breakpoint in a method. |
| 3344 | // If a breakpoint has already been set, we also return the first breakpoint |
| 3345 | // through the given 'existing_brkpt' pointer. |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3346 | static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self, |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3347 | ArtMethod* m, |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3348 | const Breakpoint** existing_brkpt) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3349 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3350 | if (!Dbg::RequiresDeoptimization()) { |
| 3351 | // We already run in interpreter-only mode so we don't need to deoptimize anything. |
| 3352 | VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method " |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3353 | << ArtMethod::PrettyMethod(m); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3354 | return DeoptimizationRequest::kNothing; |
| 3355 | } |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3356 | const Breakpoint* first_breakpoint; |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3357 | { |
| 3358 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3359 | first_breakpoint = FindFirstBreakpointForMethod(m); |
| 3360 | *existing_brkpt = first_breakpoint; |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3361 | } |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3362 | |
| 3363 | if (first_breakpoint == nullptr) { |
| Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3364 | // There is no breakpoint on this method yet: we need to deoptimize. If this method is default, |
| 3365 | // we deoptimize everything; otherwise we deoptimize only this method. We |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3366 | // deoptimize with defaults because we do not know everywhere they are used. It is possible some |
| Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3367 | // of the copies could be missed. |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3368 | // TODO Deoptimizing on default methods might not be necessary in all cases. |
| Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3369 | bool need_full_deoptimization = m->IsDefault(); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3370 | if (need_full_deoptimization) { |
| Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3371 | VLOG(jdwp) << "Need full deoptimization because of copying of method " |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3372 | << ArtMethod::PrettyMethod(m); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3373 | return DeoptimizationRequest::kFullDeoptimization; |
| 3374 | } else { |
| 3375 | // We don't need to deoptimize if the method has not been compiled. |
| Nicolas Geoffray | a5891e8 | 2015-11-06 14:18:27 +0000 | [diff] [blame] | 3376 | const bool is_compiled = m->HasAnyCompiledCode(); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3377 | if (is_compiled) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3378 | VLOG(jdwp) << "Need selective deoptimization for compiled method " |
| 3379 | << ArtMethod::PrettyMethod(m); |
| Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3380 | return DeoptimizationRequest::kSelectiveDeoptimization; |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3381 | } else { |
| 3382 | // Method is not compiled: we don't need to deoptimize. |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3383 | VLOG(jdwp) << "No need for deoptimization for non-compiled method " |
| 3384 | << ArtMethod::PrettyMethod(m); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3385 | return DeoptimizationRequest::kNothing; |
| 3386 | } |
| 3387 | } |
| 3388 | } else { |
| 3389 | // There is at least one breakpoint for this method: we don't need to deoptimize. |
| 3390 | // Let's check that all breakpoints are configured the same way for deoptimization. |
| 3391 | VLOG(jdwp) << "Breakpoint already set: no deoptimization is required"; |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3392 | DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind(); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3393 | if (kIsDebugBuild) { |
| 3394 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
| 3395 | SanityCheckExistingBreakpoints(m, deoptimization_kind); |
| 3396 | } |
| 3397 | return DeoptimizationRequest::kNothing; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3398 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3399 | } |
| 3400 | |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3401 | // Installs a breakpoint at the specified location. Also indicates through the deoptimization |
| 3402 | // request if we need to deoptimize. |
| 3403 | void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) { |
| 3404 | Thread* const self = Thread::Current(); |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3405 | ArtMethod* m = FromMethodId(location->method_id); |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3406 | DCHECK(m != nullptr) << "No method for method id " << location->method_id; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3407 | |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3408 | const Breakpoint* existing_breakpoint = nullptr; |
| 3409 | const DeoptimizationRequest::Kind deoptimization_kind = |
| 3410 | GetRequiredDeoptimizationKind(self, m, &existing_breakpoint); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3411 | req->SetKind(deoptimization_kind); |
| 3412 | if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) { |
| 3413 | req->SetMethod(m); |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3414 | } else { |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3415 | CHECK(deoptimization_kind == DeoptimizationRequest::kNothing || |
| 3416 | deoptimization_kind == DeoptimizationRequest::kFullDeoptimization); |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3417 | req->SetMethod(nullptr); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3418 | } |
| 3419 | |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3420 | { |
| 3421 | WriterMutexLock mu(self, *Locks::breakpoint_lock_); |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3422 | // If there is at least one existing breakpoint on the same method, the new breakpoint |
| 3423 | // must have the same deoptimization kind than the existing breakpoint(s). |
| 3424 | DeoptimizationRequest::Kind breakpoint_deoptimization_kind; |
| 3425 | if (existing_breakpoint != nullptr) { |
| 3426 | breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind(); |
| 3427 | } else { |
| 3428 | breakpoint_deoptimization_kind = deoptimization_kind; |
| 3429 | } |
| 3430 | gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind)); |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3431 | VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " |
| 3432 | << gBreakpoints[gBreakpoints.size() - 1]; |
| 3433 | } |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3434 | } |
| 3435 | |
| 3436 | // Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization |
| 3437 | // request if we need to undeoptimize. |
| 3438 | void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) { |
| Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 3439 | WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3440 | ArtMethod* m = FromMethodId(location->method_id); |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3441 | DCHECK(m != nullptr) << "No method for method id " << location->method_id; |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3442 | DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing; |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3443 | for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) { |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3444 | if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].IsInMethod(m)) { |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3445 | VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i]; |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3446 | deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind(); |
| 3447 | DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization, |
| 3448 | Runtime::Current()->GetInstrumentation()->IsDeoptimized(m)); |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3449 | gBreakpoints.erase(gBreakpoints.begin() + i); |
| 3450 | break; |
| 3451 | } |
| 3452 | } |
| 3453 | const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m); |
| 3454 | if (existing_breakpoint == nullptr) { |
| 3455 | // There is no more breakpoint on this method: we need to undeoptimize. |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3456 | if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) { |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3457 | // This method required full deoptimization: we need to undeoptimize everything. |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3458 | req->SetKind(DeoptimizationRequest::kFullUndeoptimization); |
| 3459 | req->SetMethod(nullptr); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3460 | } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) { |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3461 | // This method required selective deoptimization: we need to undeoptimize only that method. |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3462 | req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization); |
| 3463 | req->SetMethod(m); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3464 | } else { |
| 3465 | // This method had no need for deoptimization: do nothing. |
| 3466 | CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing); |
| 3467 | req->SetKind(DeoptimizationRequest::kNothing); |
| 3468 | req->SetMethod(nullptr); |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3469 | } |
| 3470 | } else { |
| 3471 | // There is at least one breakpoint for this method: we don't need to undeoptimize. |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3472 | req->SetKind(DeoptimizationRequest::kNothing); |
| 3473 | req->SetMethod(nullptr); |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3474 | if (kIsDebugBuild) { |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3475 | SanityCheckExistingBreakpoints(m, deoptimization_kind); |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3476 | } |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3477 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3478 | } |
| 3479 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3480 | bool Dbg::IsForcedInterpreterNeededForCallingImpl(Thread* thread, ArtMethod* m) { |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3481 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3482 | if (ssc == nullptr) { |
| 3483 | // If we are not single-stepping, then we don't have to force interpreter. |
| 3484 | return false; |
| 3485 | } |
| 3486 | if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) { |
| 3487 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3488 | return false; |
| 3489 | } |
| 3490 | |
| 3491 | if (!m->IsNative() && !m->IsProxyMethod()) { |
| 3492 | // If we want to step into a method, then we have to force interpreter on that call. |
| 3493 | if (ssc->GetStepDepth() == JDWP::SD_INTO) { |
| 3494 | return true; |
| 3495 | } |
| 3496 | } |
| 3497 | return false; |
| 3498 | } |
| 3499 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3500 | bool Dbg::IsForcedInterpreterNeededForResolutionImpl(Thread* thread, ArtMethod* m) { |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3501 | instrumentation::Instrumentation* const instrumentation = |
| 3502 | Runtime::Current()->GetInstrumentation(); |
| 3503 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3504 | if (instrumentation->InterpretOnly()) { |
| 3505 | return false; |
| 3506 | } |
| 3507 | // We can only interpret pure Java method. |
| 3508 | if (m->IsNative() || m->IsProxyMethod()) { |
| 3509 | return false; |
| 3510 | } |
| 3511 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3512 | if (ssc != nullptr) { |
| 3513 | // If we want to step into a method, then we have to force interpreter on that call. |
| 3514 | if (ssc->GetStepDepth() == JDWP::SD_INTO) { |
| 3515 | return true; |
| 3516 | } |
| 3517 | // If we are stepping out from a static initializer, by issuing a step |
| 3518 | // in or step over, that was implicitly invoked by calling a static method, |
| 3519 | // then we need to step into that method. Having a lower stack depth than |
| 3520 | // the one the single step control has indicates that the step originates |
| 3521 | // from the static initializer. |
| 3522 | if (ssc->GetStepDepth() != JDWP::SD_OUT && |
| 3523 | ssc->GetStackDepth() > GetStackDepth(thread)) { |
| 3524 | return true; |
| 3525 | } |
| 3526 | } |
| 3527 | // There are cases where we have to force interpreter on deoptimized methods, |
| 3528 | // because in some cases the call will not be performed by invoking an entry |
| 3529 | // point that has been replaced by the deoptimization, but instead by directly |
| 3530 | // invoking the compiled code of the method, for example. |
| 3531 | return instrumentation->IsDeoptimized(m); |
| 3532 | } |
| 3533 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3534 | bool Dbg::IsForcedInstrumentationNeededForResolutionImpl(Thread* thread, ArtMethod* m) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 3535 | // The upcall can be null and in that case we don't need to do anything. |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3536 | if (m == nullptr) { |
| 3537 | return false; |
| 3538 | } |
| 3539 | instrumentation::Instrumentation* const instrumentation = |
| 3540 | Runtime::Current()->GetInstrumentation(); |
| 3541 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3542 | if (instrumentation->InterpretOnly()) { |
| 3543 | return false; |
| 3544 | } |
| 3545 | // We can only interpret pure Java method. |
| 3546 | if (m->IsNative() || m->IsProxyMethod()) { |
| 3547 | return false; |
| 3548 | } |
| 3549 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3550 | if (ssc != nullptr) { |
| 3551 | // If we are stepping out from a static initializer, by issuing a step |
| 3552 | // out, that was implicitly invoked by calling a static method, then we |
| 3553 | // need to step into the caller of that method. Having a lower stack |
| 3554 | // depth than the one the single step control has indicates that the |
| 3555 | // step originates from the static initializer. |
| 3556 | if (ssc->GetStepDepth() == JDWP::SD_OUT && |
| 3557 | ssc->GetStackDepth() > GetStackDepth(thread)) { |
| 3558 | return true; |
| 3559 | } |
| 3560 | } |
| 3561 | // If we are returning from a static intializer, that was implicitly |
| 3562 | // invoked by calling a static method and the caller is deoptimized, |
| 3563 | // then we have to deoptimize the stack without forcing interpreter |
| 3564 | // on the static method that was called originally. This problem can |
| 3565 | // be solved easily by forcing instrumentation on the called method, |
| 3566 | // because the instrumentation exit hook will recognise the need of |
| 3567 | // stack deoptimization by calling IsForcedInterpreterNeededForUpcall. |
| 3568 | return instrumentation->IsDeoptimized(m); |
| 3569 | } |
| 3570 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3571 | bool Dbg::IsForcedInterpreterNeededForUpcallImpl(Thread* thread, ArtMethod* m) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 3572 | // The upcall can be null and in that case we don't need to do anything. |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3573 | if (m == nullptr) { |
| 3574 | return false; |
| 3575 | } |
| 3576 | instrumentation::Instrumentation* const instrumentation = |
| 3577 | Runtime::Current()->GetInstrumentation(); |
| 3578 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3579 | if (instrumentation->InterpretOnly()) { |
| 3580 | return false; |
| 3581 | } |
| 3582 | // We can only interpret pure Java method. |
| 3583 | if (m->IsNative() || m->IsProxyMethod()) { |
| 3584 | return false; |
| 3585 | } |
| 3586 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3587 | if (ssc != nullptr) { |
| 3588 | // The debugger is not interested in what is happening under the level |
| 3589 | // of the step, thus we only force interpreter when we are not below of |
| 3590 | // the step. |
| 3591 | if (ssc->GetStackDepth() >= GetStackDepth(thread)) { |
| 3592 | return true; |
| 3593 | } |
| 3594 | } |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 3595 | if (thread->HasDebuggerShadowFrames()) { |
| 3596 | // We need to deoptimize the stack for the exception handling flow so that |
| 3597 | // we don't miss any deoptimization that should be done when there are |
| 3598 | // debugger shadow frames. |
| 3599 | return true; |
| 3600 | } |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3601 | // We have to require stack deoptimization if the upcall is deoptimized. |
| 3602 | return instrumentation->IsDeoptimized(m); |
| 3603 | } |
| 3604 | |
| Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 3605 | // Do we need to deoptimize the stack to handle an exception? |
| 3606 | bool Dbg::IsForcedInterpreterNeededForExceptionImpl(Thread* thread) { |
| 3607 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3608 | if (ssc != nullptr) { |
| 3609 | // We deopt to step into the catch handler. |
| 3610 | return true; |
| 3611 | } |
| 3612 | // Deoptimization is required if at least one method in the stack needs it. However we |
| 3613 | // skip frames that will be unwound (thus not executed). |
| Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame] | 3614 | bool needs_deoptimization = false; |
| 3615 | StackVisitor::WalkStack( |
| 3616 | [&](art::StackVisitor* visitor) REQUIRES_SHARED(Locks::mutator_lock_) { |
| 3617 | // The visitor is meant to be used when handling exception from compiled code only. |
| 3618 | CHECK(!visitor->IsShadowFrame()) << "We only expect to visit compiled frame: " |
| 3619 | << ArtMethod::PrettyMethod(visitor->GetMethod()); |
| 3620 | ArtMethod* method = visitor->GetMethod(); |
| 3621 | if (method == nullptr) { |
| 3622 | // We reach an upcall and don't need to deoptimize this part of the stack (ManagedFragment) |
| 3623 | // so we can stop the visit. |
| 3624 | DCHECK(!needs_deoptimization); |
| 3625 | return false; |
| 3626 | } |
| 3627 | if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) { |
| 3628 | // We found a compiled frame in the stack but instrumentation is set to interpret |
| 3629 | // everything: we need to deoptimize. |
| 3630 | needs_deoptimization = true; |
| 3631 | return false; |
| 3632 | } |
| 3633 | if (Runtime::Current()->GetInstrumentation()->IsDeoptimized(method)) { |
| 3634 | // We found a deoptimized method in the stack. |
| 3635 | needs_deoptimization = true; |
| 3636 | return false; |
| 3637 | } |
| 3638 | ShadowFrame* frame = visitor->GetThread()->FindDebuggerShadowFrame(visitor->GetFrameId()); |
| 3639 | if (frame != nullptr) { |
| 3640 | // The debugger allocated a ShadowFrame to update a variable in the stack: we need to |
| 3641 | // deoptimize the stack to execute (and deallocate) this frame. |
| 3642 | needs_deoptimization = true; |
| 3643 | return false; |
| 3644 | } |
| 3645 | return true; |
| 3646 | }, |
| 3647 | thread, |
| 3648 | /* context= */ nullptr, |
| 3649 | art::StackVisitor::StackWalkKind::kIncludeInlinedFrames, |
| 3650 | /* check_suspended */ true, |
| 3651 | /* include_transitions */ true); |
| 3652 | return needs_deoptimization; |
| Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 3653 | } |
| 3654 | |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3655 | // Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't |
| 3656 | // cause suspension if the thread is the current thread. |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3657 | class ScopedDebuggerThreadSuspension { |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3658 | public: |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3659 | ScopedDebuggerThreadSuspension(Thread* self, JDWP::ObjectId thread_id) |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 3660 | REQUIRES(!Locks::thread_list_lock_) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3661 | REQUIRES_SHARED(Locks::mutator_lock_) : |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3662 | thread_(nullptr), |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3663 | error_(JDWP::ERR_NONE), |
| 3664 | self_suspend_(false), |
| Ian Rogers | 33e9566 | 2013-05-20 20:29:14 -0700 | [diff] [blame] | 3665 | other_suspend_(false) { |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3666 | ScopedObjectAccessUnchecked soa(self); |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 3667 | thread_ = DecodeThread(soa, thread_id, &error_); |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3668 | if (error_ == JDWP::ERR_NONE) { |
| 3669 | if (thread_ == soa.Self()) { |
| 3670 | self_suspend_ = true; |
| 3671 | } else { |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3672 | Thread* suspended_thread; |
| 3673 | { |
| 3674 | ScopedThreadSuspension sts(self, kWaitingForDebuggerSuspension); |
| 3675 | jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id); |
| 3676 | bool timed_out; |
| 3677 | ThreadList* const thread_list = Runtime::Current()->GetThreadList(); |
| Sebastien Hertz | cdd798d | 2017-04-18 18:28:51 +0200 | [diff] [blame] | 3678 | suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 3679 | /* request_suspension= */ true, |
| Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 3680 | SuspendReason::kForDebugger, |
| Sebastien Hertz | cdd798d | 2017-04-18 18:28:51 +0200 | [diff] [blame] | 3681 | &timed_out); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3682 | } |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3683 | if (suspended_thread == nullptr) { |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3684 | // Thread terminated from under us while suspending. |
| 3685 | error_ = JDWP::ERR_INVALID_THREAD; |
| 3686 | } else { |
| 3687 | CHECK_EQ(suspended_thread, thread_); |
| 3688 | other_suspend_ = true; |
| 3689 | } |
| 3690 | } |
| 3691 | } |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3692 | } |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3693 | |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3694 | Thread* GetThread() const { |
| 3695 | return thread_; |
| 3696 | } |
| 3697 | |
| 3698 | JDWP::JdwpError GetError() const { |
| 3699 | return error_; |
| 3700 | } |
| 3701 | |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3702 | ~ScopedDebuggerThreadSuspension() { |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3703 | if (other_suspend_) { |
| Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 3704 | bool resumed = Runtime::Current()->GetThreadList()->Resume(thread_, |
| 3705 | SuspendReason::kForDebugger); |
| 3706 | DCHECK(resumed); |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3707 | } |
| 3708 | } |
| 3709 | |
| 3710 | private: |
| 3711 | Thread* thread_; |
| 3712 | JDWP::JdwpError error_; |
| 3713 | bool self_suspend_; |
| 3714 | bool other_suspend_; |
| 3715 | }; |
| 3716 | |
| 3717 | JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size, |
| 3718 | JDWP::JdwpStepDepth step_depth) { |
| 3719 | Thread* self = Thread::Current(); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3720 | ScopedDebuggerThreadSuspension sts(self, thread_id); |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3721 | if (sts.GetError() != JDWP::ERR_NONE) { |
| 3722 | return sts.GetError(); |
| 3723 | } |
| 3724 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3725 | // Work out what ArtMethod* we're in, the current line number, and how deep the stack currently |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3726 | // is for step-out. |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3727 | struct SingleStepStackVisitor : public StackVisitor { |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3728 | explicit SingleStepStackVisitor(Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_) |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 3729 | : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 3730 | stack_depth(0), |
| 3731 | method(nullptr), |
| 3732 | line_number(-1) {} |
| Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 3733 | |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3734 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 3735 | // annotalysis. |
| Andreas Gampe | fa6a1b0 | 2018-09-07 08:11:55 -0700 | [diff] [blame] | 3736 | bool VisitFrame() override NO_THREAD_SAFETY_ANALYSIS { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3737 | ArtMethod* m = GetMethod(); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3738 | if (!m->IsRuntimeMethod()) { |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3739 | ++stack_depth; |
| 3740 | if (method == nullptr) { |
| Alex Light | 7337631 | 2017-04-06 10:10:51 -0700 | [diff] [blame] | 3741 | const DexFile* dex_file = m->GetDexFile(); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3742 | method = m; |
| Alex Light | 7337631 | 2017-04-06 10:10:51 -0700 | [diff] [blame] | 3743 | if (dex_file != nullptr) { |
| David Sehr | 9323e6e | 2016-09-13 08:58:35 -0700 | [diff] [blame] | 3744 | line_number = annotations::GetLineNumFromPC(dex_file, m, GetDexPc()); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3745 | } |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3746 | } |
| 3747 | } |
| Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 3748 | return true; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3749 | } |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3750 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3751 | int stack_depth; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3752 | ArtMethod* method; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3753 | int32_t line_number; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3754 | }; |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3755 | |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3756 | Thread* const thread = sts.GetThread(); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3757 | SingleStepStackVisitor visitor(thread); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3758 | visitor.WalkStack(); |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3759 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3760 | // Allocate single step. |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3761 | SingleStepControl* single_step_control = |
| 3762 | new (std::nothrow) SingleStepControl(step_size, step_depth, |
| 3763 | visitor.stack_depth, visitor.method); |
| 3764 | if (single_step_control == nullptr) { |
| 3765 | LOG(ERROR) << "Failed to allocate SingleStepControl"; |
| 3766 | return JDWP::ERR_OUT_OF_MEMORY; |
| 3767 | } |
| 3768 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3769 | ArtMethod* m = single_step_control->GetMethod(); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3770 | const int32_t line_number = visitor.line_number; |
| Sebastien Hertz | 52f5f93 | 2015-05-28 11:00:57 +0200 | [diff] [blame] | 3771 | // Note: if the thread is not running Java code (pure native thread), there is no "current" |
| 3772 | // method on the stack (and no line number either). |
| 3773 | if (m != nullptr && !m->IsNative()) { |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 3774 | CodeItemDebugInfoAccessor accessor(m->DexInstructionDebugInfo()); |
| Mathieu Chartier | 3e2e123 | 2018-09-11 12:35:30 -0700 | [diff] [blame] | 3775 | bool last_pc_valid = false; |
| 3776 | uint32_t last_pc = 0u; |
| 3777 | // Find the dex_pc values that correspond to the current line, for line-based single-stepping. |
| 3778 | accessor.DecodeDebugPositionInfo([&](const DexFile::PositionInfo& entry) { |
| 3779 | if (static_cast<int32_t>(entry.line_) == line_number) { |
| 3780 | if (!last_pc_valid) { |
| 3781 | // Everything from this address until the next line change is ours. |
| 3782 | last_pc = entry.address_; |
| 3783 | last_pc_valid = true; |
| 3784 | } |
| 3785 | // Otherwise, if we're already in a valid range for this line, |
| 3786 | // just keep going (shouldn't really happen)... |
| 3787 | } else if (last_pc_valid) { // and the line number is new |
| 3788 | // Add everything from the last entry up until here to the set |
| 3789 | for (uint32_t dex_pc = last_pc; dex_pc < entry.address_; ++dex_pc) { |
| 3790 | single_step_control->AddDexPc(dex_pc); |
| 3791 | } |
| 3792 | last_pc_valid = false; |
| 3793 | } |
| 3794 | return false; // There may be multiple entries for any given line. |
| 3795 | }); |
| 3796 | // If the line number was the last in the position table... |
| 3797 | if (last_pc_valid) { |
| 3798 | for (uint32_t dex_pc = last_pc; dex_pc < accessor.InsnsSizeInCodeUnits(); ++dex_pc) { |
| 3799 | single_step_control->AddDexPc(dex_pc); |
| 3800 | } |
| 3801 | } |
| Elliott Hughes | 3e2e1a2 | 2012-02-21 11:33:41 -0800 | [diff] [blame] | 3802 | } |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3803 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3804 | // Activate single-step in the thread. |
| 3805 | thread->ActivateSingleStepControl(single_step_control); |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3806 | |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3807 | if (VLOG_IS_ON(jdwp)) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3808 | VLOG(jdwp) << "Single-step thread: " << *thread; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3809 | VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize(); |
| 3810 | VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth(); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3811 | VLOG(jdwp) << "Single-step current method: " |
| 3812 | << ArtMethod::PrettyMethod(single_step_control->GetMethod()); |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3813 | VLOG(jdwp) << "Single-step current line: " << line_number; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3814 | VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth(); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3815 | VLOG(jdwp) << "Single-step dex_pc values:"; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3816 | for (uint32_t dex_pc : single_step_control->GetDexPcs()) { |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3817 | VLOG(jdwp) << StringPrintf(" %#x", dex_pc); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3818 | } |
| 3819 | } |
| 3820 | |
| 3821 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3822 | } |
| 3823 | |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3824 | void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) { |
| 3825 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3826 | JDWP::JdwpError error; |
| 3827 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Sebastien Hertz | 87118ed | 2013-11-26 17:57:18 +0100 | [diff] [blame] | 3828 | if (error == JDWP::ERR_NONE) { |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3829 | thread->DeactivateSingleStepControl(); |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3830 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3831 | } |
| 3832 | |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3833 | static char JdwpTagToShortyChar(JDWP::JdwpTag tag) { |
| 3834 | switch (tag) { |
| 3835 | default: |
| 3836 | LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag); |
| Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 3837 | UNREACHABLE(); |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3838 | |
| 3839 | // Primitives. |
| 3840 | case JDWP::JT_BYTE: return 'B'; |
| 3841 | case JDWP::JT_CHAR: return 'C'; |
| 3842 | case JDWP::JT_FLOAT: return 'F'; |
| 3843 | case JDWP::JT_DOUBLE: return 'D'; |
| 3844 | case JDWP::JT_INT: return 'I'; |
| 3845 | case JDWP::JT_LONG: return 'J'; |
| 3846 | case JDWP::JT_SHORT: return 'S'; |
| 3847 | case JDWP::JT_VOID: return 'V'; |
| 3848 | case JDWP::JT_BOOLEAN: return 'Z'; |
| 3849 | |
| 3850 | // Reference types. |
| 3851 | case JDWP::JT_ARRAY: |
| 3852 | case JDWP::JT_OBJECT: |
| 3853 | case JDWP::JT_STRING: |
| 3854 | case JDWP::JT_THREAD: |
| 3855 | case JDWP::JT_THREAD_GROUP: |
| 3856 | case JDWP::JT_CLASS_LOADER: |
| 3857 | case JDWP::JT_CLASS_OBJECT: |
| 3858 | return 'L'; |
| 3859 | } |
| 3860 | } |
| 3861 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3862 | JDWP::JdwpError Dbg::PrepareInvokeMethod(uint32_t request_id, JDWP::ObjectId thread_id, |
| 3863 | JDWP::ObjectId object_id, JDWP::RefTypeId class_id, |
| 3864 | JDWP::MethodId method_id, uint32_t arg_count, |
| 3865 | uint64_t arg_values[], JDWP::JdwpTag* arg_types, |
| 3866 | uint32_t options) { |
| 3867 | Thread* const self = Thread::Current(); |
| 3868 | CHECK_EQ(self, GetDebugThread()) << "This must be called by the JDWP thread"; |
| Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3869 | const bool resume_all_threads = ((options & JDWP::INVOKE_SINGLE_THREADED) == 0); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3870 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3871 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3872 | Thread* targetThread = nullptr; |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3873 | { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3874 | ScopedObjectAccessUnchecked soa(self); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3875 | JDWP::JdwpError error; |
| 3876 | targetThread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 3877 | if (error != JDWP::ERR_NONE) { |
| 3878 | LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id; |
| 3879 | return error; |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3880 | } |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3881 | if (targetThread->GetInvokeReq() != nullptr) { |
| 3882 | // Thread is already invoking a method on behalf of the debugger. |
| 3883 | LOG(ERROR) << "InvokeMethod request for thread already invoking a method: " << *targetThread; |
| 3884 | return JDWP::ERR_ALREADY_INVOKING; |
| 3885 | } |
| 3886 | if (!targetThread->IsReadyForDebugInvoke()) { |
| 3887 | // Thread is not suspended by an event so it cannot invoke a method. |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3888 | LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread; |
| 3889 | return JDWP::ERR_INVALID_THREAD; |
| 3890 | } |
| 3891 | |
| 3892 | /* |
| Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3893 | * According to the JDWP specs, we are expected to resume all threads (or only the |
| 3894 | * target thread) once. So if a thread has been suspended more than once (either by |
| 3895 | * the debugger for an event or by the runtime for GC), it will remain suspended before |
| 3896 | * the invoke is executed. This means the debugger is responsible to properly resume all |
| 3897 | * the threads it has suspended so the target thread can execute the method. |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3898 | * |
| Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3899 | * However, for compatibility reason with older versions of debuggers (like Eclipse), we |
| 3900 | * fully resume all threads (by canceling *all* debugger suspensions) when the debugger |
| 3901 | * wants us to resume all threads. This is to avoid ending up in deadlock situation. |
| 3902 | * |
| 3903 | * On the other hand, if we are asked to only resume the target thread, then we follow the |
| 3904 | * JDWP specs by resuming that thread only once. This means the thread will remain suspended |
| 3905 | * if it has been suspended more than once before the invoke (and again, this is the |
| 3906 | * responsibility of the debugger to properly resume that thread before invoking a method). |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3907 | */ |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3908 | int suspend_count; |
| 3909 | { |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 3910 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3911 | suspend_count = targetThread->GetSuspendCount(); |
| 3912 | } |
| Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3913 | if (suspend_count > 1 && resume_all_threads) { |
| 3914 | // The target thread will remain suspended even after we resume it. Let's emit a warning |
| 3915 | // to indicate the invoke won't be executed until the thread is resumed. |
| 3916 | LOG(WARNING) << *targetThread << " suspended more than once (suspend count == " |
| 3917 | << suspend_count << "). This thread will invoke the method only once " |
| 3918 | << "it is fully resumed."; |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3919 | } |
| 3920 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 3921 | ObjPtr<mirror::Object> receiver = gRegistry->Get<mirror::Object>(object_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3922 | if (error != JDWP::ERR_NONE) { |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3923 | return JDWP::ERR_INVALID_OBJECT; |
| 3924 | } |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3925 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 3926 | gRegistry->Get<mirror::Object>(thread_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3927 | if (error != JDWP::ERR_NONE) { |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3928 | return JDWP::ERR_INVALID_OBJECT; |
| 3929 | } |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3930 | |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 3931 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3932 | if (c == nullptr) { |
| 3933 | return error; |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3934 | } |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3935 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3936 | ArtMethod* m = FromMethodId(method_id); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3937 | if (m->IsStatic() != (receiver == nullptr)) { |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3938 | return JDWP::ERR_INVALID_METHODID; |
| 3939 | } |
| 3940 | if (m->IsStatic()) { |
| 3941 | if (m->GetDeclaringClass() != c) { |
| 3942 | return JDWP::ERR_INVALID_METHODID; |
| 3943 | } |
| 3944 | } else { |
| 3945 | if (!m->GetDeclaringClass()->IsAssignableFrom(c)) { |
| 3946 | return JDWP::ERR_INVALID_METHODID; |
| 3947 | } |
| 3948 | } |
| 3949 | |
| 3950 | // Check the argument list matches the method. |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3951 | uint32_t shorty_len = 0; |
| 3952 | const char* shorty = m->GetShorty(&shorty_len); |
| 3953 | if (shorty_len - 1 != arg_count) { |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3954 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 3955 | } |
| Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 3956 | |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3957 | { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3958 | StackHandleScope<2> hs(soa.Self()); |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 3959 | HandleWrapperObjPtr<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver)); |
| 3960 | HandleWrapperObjPtr<mirror::Class> h_klass(hs.NewHandleWrapper(&c)); |
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 3961 | const dex::TypeList* types = m->GetParameterTypeList(); |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3962 | for (size_t i = 0; i < arg_count; ++i) { |
| 3963 | if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) { |
| Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 3964 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 3965 | } |
| 3966 | |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3967 | if (shorty[i + 1] == 'L') { |
| 3968 | // Did we really get an argument of an appropriate reference type? |
| Vladimir Marko | b45528c | 2017-07-27 14:14:28 +0100 | [diff] [blame] | 3969 | ObjPtr<mirror::Class> parameter_type = |
| 3970 | m->ResolveClassFromTypeIndex(types->GetTypeItem(i).type_idx_); |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 3971 | ObjPtr<mirror::Object> argument = gRegistry->Get<mirror::Object>(arg_values[i], &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3972 | if (error != JDWP::ERR_NONE) { |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3973 | return JDWP::ERR_INVALID_OBJECT; |
| 3974 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3975 | if (argument != nullptr && !argument->InstanceOf(parameter_type)) { |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3976 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 3977 | } |
| 3978 | |
| 3979 | // Turn the on-the-wire ObjectId into a jobject. |
| 3980 | jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]); |
| 3981 | v.l = gRegistry->GetJObject(arg_values[i]); |
| 3982 | } |
| Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 3983 | } |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3984 | } |
| 3985 | |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3986 | // Allocates a DebugInvokeReq. |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 3987 | DebugInvokeReq* req = new (std::nothrow) DebugInvokeReq( |
| 3988 | request_id, thread_id, receiver, c, m, options, arg_values, arg_count); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3989 | if (req == nullptr) { |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3990 | LOG(ERROR) << "Failed to allocate DebugInvokeReq"; |
| 3991 | return JDWP::ERR_OUT_OF_MEMORY; |
| 3992 | } |
| 3993 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3994 | // Attaches the DebugInvokeReq to the target thread so it executes the method when |
| 3995 | // it is resumed. Once the invocation completes, the target thread will delete it before |
| 3996 | // suspending itself (see ThreadList::SuspendSelfForDebugger). |
| 3997 | targetThread->SetDebugInvokeReq(req); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3998 | } |
| 3999 | |
| 4000 | // The fact that we've released the thread list lock is a bit risky --- if the thread goes |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4001 | // away we're sitting high and dry -- but we must release this before the UndoDebuggerSuspensions |
| 4002 | // call. |
| Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 4003 | if (resume_all_threads) { |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4004 | VLOG(jdwp) << " Resuming all threads"; |
| 4005 | thread_list->UndoDebuggerSuspensions(); |
| 4006 | } else { |
| 4007 | VLOG(jdwp) << " Resuming event thread only"; |
| Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 4008 | bool resumed = thread_list->Resume(targetThread, SuspendReason::kForDebugger); |
| 4009 | DCHECK(resumed); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4010 | } |
| 4011 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4012 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4013 | } |
| 4014 | |
| 4015 | void Dbg::ExecuteMethod(DebugInvokeReq* pReq) { |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4016 | Thread* const self = Thread::Current(); |
| 4017 | CHECK_NE(self, GetDebugThread()) << "This must be called by the event thread"; |
| 4018 | |
| 4019 | ScopedObjectAccess soa(self); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4020 | |
| Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 4021 | // We can be called while an exception is pending. We need |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4022 | // to preserve that across the method invocation. |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4023 | StackHandleScope<1> hs(soa.Self()); |
| 4024 | Handle<mirror::Throwable> old_exception = hs.NewHandle(soa.Self()->GetException()); |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4025 | soa.Self()->ClearException(); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4026 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4027 | // Execute the method then sends reply to the debugger. |
| 4028 | ExecuteMethodWithoutPendingException(soa, pReq); |
| 4029 | |
| 4030 | // If an exception was pending before the invoke, restore it now. |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 4031 | if (old_exception != nullptr) { |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4032 | soa.Self()->SetException(old_exception.Get()); |
| 4033 | } |
| 4034 | } |
| 4035 | |
| 4036 | // Helper function: write a variable-width value into the output input buffer. |
| 4037 | static void WriteValue(JDWP::ExpandBuf* pReply, int width, uint64_t value) { |
| 4038 | switch (width) { |
| 4039 | case 1: |
| 4040 | expandBufAdd1(pReply, value); |
| 4041 | break; |
| 4042 | case 2: |
| 4043 | expandBufAdd2BE(pReply, value); |
| 4044 | break; |
| 4045 | case 4: |
| 4046 | expandBufAdd4BE(pReply, value); |
| 4047 | break; |
| 4048 | case 8: |
| 4049 | expandBufAdd8BE(pReply, value); |
| 4050 | break; |
| 4051 | default: |
| 4052 | LOG(FATAL) << width; |
| 4053 | UNREACHABLE(); |
| 4054 | } |
| 4055 | } |
| 4056 | |
| 4057 | void Dbg::ExecuteMethodWithoutPendingException(ScopedObjectAccess& soa, DebugInvokeReq* pReq) { |
| 4058 | soa.Self()->AssertNoPendingException(); |
| 4059 | |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4060 | // Translate the method through the vtable, unless the debugger wants to suppress it. |
| Alex Light | 55eccdf | 2019-10-07 13:51:13 +0000 | [diff] [blame] | 4061 | StackArtMethodHandleScope<2> rhs(soa.Self()); |
| 4062 | MutableReflectiveHandle<ArtMethod> m(rhs.NewHandle(pReq->method)); |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 4063 | PointerSize image_pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize(); |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4064 | if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) { |
| Alex Light | 55eccdf | 2019-10-07 13:51:13 +0000 | [diff] [blame] | 4065 | MutableReflectiveHandle<ArtMethod> actual_method(rhs.NewHandle( |
| 4066 | pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m.Get(), image_pointer_size))); |
| 4067 | if (actual_method.Get() != m.Get()) { |
| 4068 | VLOG(jdwp) << "ExecuteMethod translated " << m->PrettyMethod() |
| 4069 | << " to " << actual_method->PrettyMethod(); |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4070 | m = actual_method; |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 4071 | } |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4072 | } |
| Alex Light | 55eccdf | 2019-10-07 13:51:13 +0000 | [diff] [blame] | 4073 | VLOG(jdwp) << "ExecuteMethod " << m->PrettyMethod() |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4074 | << " receiver=" << pReq->receiver.Read() |
| Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 4075 | << " arg_count=" << pReq->arg_count; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4076 | CHECK(m != nullptr); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4077 | |
| Roland Levillain | 33d6903 | 2015-06-18 18:20:59 +0100 | [diff] [blame] | 4078 | static_assert(sizeof(jvalue) == sizeof(uint64_t), "jvalue and uint64_t have different sizes."); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4079 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4080 | // Invoke the method. |
| Jeff Hao | 39b6c24 | 2015-05-19 20:30:23 -0700 | [diff] [blame] | 4081 | ScopedLocalRef<jobject> ref(soa.Env(), soa.AddLocalReference<jobject>(pReq->receiver.Read())); |
| Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 4082 | JValue result = InvokeWithJValues(soa, ref.get(), jni::EncodeArtMethod(m), |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4083 | reinterpret_cast<jvalue*>(pReq->arg_values.get())); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4084 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4085 | // Prepare JDWP ids for the reply. |
| 4086 | JDWP::JdwpTag result_tag = BasicTagFromDescriptor(m->GetShorty()); |
| 4087 | const bool is_object_result = (result_tag == JDWP::JT_OBJECT); |
| Jeff Hao | 064d24e | 2016-08-25 03:52:40 +0000 | [diff] [blame] | 4088 | StackHandleScope<3> hs(soa.Self()); |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4089 | Handle<mirror::Object> object_result = hs.NewHandle(is_object_result ? result.GetL() : nullptr); |
| 4090 | Handle<mirror::Throwable> exception = hs.NewHandle(soa.Self()->GetException()); |
| 4091 | soa.Self()->ClearException(); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4092 | |
| 4093 | if (!IsDebuggerActive()) { |
| 4094 | // The debugger detached: we must not re-suspend threads. We also don't need to fill the reply |
| 4095 | // because it won't be sent either. |
| 4096 | return; |
| 4097 | } |
| 4098 | |
| 4099 | JDWP::ObjectId exceptionObjectId = gRegistry->Add(exception); |
| 4100 | uint64_t result_value = 0; |
| 4101 | if (exceptionObjectId != 0) { |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4102 | VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get() |
| 4103 | << " " << exception->Dump(); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4104 | result_value = 0; |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4105 | } else if (is_object_result) { |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4106 | /* if no exception was thrown, examine object result more closely */ |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4107 | JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get()); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4108 | if (new_tag != result_tag) { |
| 4109 | VLOG(jdwp) << " JDWP promoted result from " << result_tag << " to " << new_tag; |
| 4110 | result_tag = new_tag; |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4111 | } |
| 4112 | |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4113 | // Register the object in the registry and reference its ObjectId. This ensures |
| 4114 | // GC safety and prevents from accessing stale reference if the object is moved. |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4115 | result_value = gRegistry->Add(object_result.Get()); |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4116 | } else { |
| 4117 | // Primitive result. |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4118 | DCHECK(IsPrimitiveTag(result_tag)); |
| 4119 | result_value = result.GetJ(); |
| 4120 | } |
| 4121 | const bool is_constructor = m->IsConstructor() && !m->IsStatic(); |
| 4122 | if (is_constructor) { |
| 4123 | // If we invoked a constructor (which actually returns void), return the receiver, |
| 4124 | // unless we threw, in which case we return null. |
| Sebastien Hertz | a3e1377 | 2015-11-05 12:09:44 +0100 | [diff] [blame] | 4125 | DCHECK_EQ(JDWP::JT_VOID, result_tag); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4126 | if (exceptionObjectId == 0) { |
| Jeff Hao | 064d24e | 2016-08-25 03:52:40 +0000 | [diff] [blame] | 4127 | if (m->GetDeclaringClass()->IsStringClass()) { |
| 4128 | // For string constructors, the new string is remapped to the receiver (stored in ref). |
| 4129 | Handle<mirror::Object> decoded_ref = hs.NewHandle(soa.Self()->DecodeJObject(ref.get())); |
| 4130 | result_value = gRegistry->Add(decoded_ref); |
| 4131 | result_tag = TagFromObject(soa, decoded_ref.Get()); |
| 4132 | } else { |
| 4133 | // TODO we could keep the receiver ObjectId in the DebugInvokeReq to avoid looking into the |
| 4134 | // object registry. |
| 4135 | result_value = GetObjectRegistry()->Add(pReq->receiver.Read()); |
| 4136 | result_tag = TagFromObject(soa, pReq->receiver.Read()); |
| 4137 | } |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4138 | } else { |
| 4139 | result_value = 0; |
| Sebastien Hertz | a3e1377 | 2015-11-05 12:09:44 +0100 | [diff] [blame] | 4140 | result_tag = JDWP::JT_OBJECT; |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4141 | } |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4142 | } |
| 4143 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4144 | // Suspend other threads if the invoke is not single-threaded. |
| 4145 | if ((pReq->options & JDWP::INVOKE_SINGLE_THREADED) == 0) { |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4146 | ScopedThreadSuspension sts(soa.Self(), kWaitingForDebuggerSuspension); |
| Hiroshi Yamauchi | 8f95cf3 | 2016-04-19 11:14:06 -0700 | [diff] [blame] | 4147 | // Avoid a deadlock between GC and debugger where GC gets suspended during GC. b/25800335. |
| 4148 | gc::ScopedGCCriticalSection gcs(soa.Self(), gc::kGcCauseDebugger, gc::kCollectorTypeDebugger); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4149 | VLOG(jdwp) << " Suspending all threads"; |
| 4150 | Runtime::Current()->GetThreadList()->SuspendAllForDebugger(); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4151 | } |
| 4152 | |
| 4153 | VLOG(jdwp) << " --> returned " << result_tag |
| 4154 | << StringPrintf(" %#" PRIx64 " (except=%#" PRIx64 ")", result_value, |
| 4155 | exceptionObjectId); |
| 4156 | |
| 4157 | // Show detailed debug output. |
| 4158 | if (result_tag == JDWP::JT_STRING && exceptionObjectId == 0) { |
| 4159 | if (result_value != 0) { |
| 4160 | if (VLOG_IS_ON(jdwp)) { |
| 4161 | std::string result_string; |
| 4162 | JDWP::JdwpError error = Dbg::StringToUtf8(result_value, &result_string); |
| 4163 | CHECK_EQ(error, JDWP::ERR_NONE); |
| 4164 | VLOG(jdwp) << " string '" << result_string << "'"; |
| 4165 | } |
| 4166 | } else { |
| 4167 | VLOG(jdwp) << " string (null)"; |
| 4168 | } |
| 4169 | } |
| 4170 | |
| 4171 | // Attach the reply to DebugInvokeReq so it can be sent to the debugger when the event thread |
| 4172 | // is ready to suspend. |
| 4173 | BuildInvokeReply(pReq->reply, pReq->request_id, result_tag, result_value, exceptionObjectId); |
| 4174 | } |
| 4175 | |
| 4176 | void Dbg::BuildInvokeReply(JDWP::ExpandBuf* pReply, uint32_t request_id, JDWP::JdwpTag result_tag, |
| 4177 | uint64_t result_value, JDWP::ObjectId exception) { |
| 4178 | // Make room for the JDWP header since we do not know the size of the reply yet. |
| 4179 | JDWP::expandBufAddSpace(pReply, kJDWPHeaderLen); |
| 4180 | |
| 4181 | size_t width = GetTagWidth(result_tag); |
| 4182 | JDWP::expandBufAdd1(pReply, result_tag); |
| 4183 | if (width != 0) { |
| 4184 | WriteValue(pReply, width, result_value); |
| 4185 | } |
| 4186 | JDWP::expandBufAdd1(pReply, JDWP::JT_OBJECT); |
| 4187 | JDWP::expandBufAddObjectId(pReply, exception); |
| 4188 | |
| 4189 | // Now we know the size, we can complete the JDWP header. |
| 4190 | uint8_t* buf = expandBufGetBuffer(pReply); |
| 4191 | JDWP::Set4BE(buf + kJDWPHeaderSizeOffset, expandBufGetLength(pReply)); |
| 4192 | JDWP::Set4BE(buf + kJDWPHeaderIdOffset, request_id); |
| 4193 | JDWP::Set1(buf + kJDWPHeaderFlagsOffset, kJDWPFlagReply); // flags |
| 4194 | JDWP::Set2BE(buf + kJDWPHeaderErrorCodeOffset, JDWP::ERR_NONE); |
| 4195 | } |
| 4196 | |
| 4197 | void Dbg::FinishInvokeMethod(DebugInvokeReq* pReq) { |
| 4198 | CHECK_NE(Thread::Current(), GetDebugThread()) << "This must be called by the event thread"; |
| 4199 | |
| 4200 | JDWP::ExpandBuf* const pReply = pReq->reply; |
| 4201 | CHECK(pReply != nullptr) << "No reply attached to DebugInvokeReq"; |
| 4202 | |
| 4203 | // We need to prevent other threads (including JDWP thread) from interacting with the debugger |
| 4204 | // while we send the reply but are not yet suspended. The JDWP token will be released just before |
| 4205 | // we suspend ourself again (see ThreadList::SuspendSelfForDebugger). |
| 4206 | gJdwpState->AcquireJdwpTokenForEvent(pReq->thread_id); |
| 4207 | |
| 4208 | // Send the reply unless the debugger detached before the completion of the method. |
| 4209 | if (IsDebuggerActive()) { |
| 4210 | const size_t replyDataLength = expandBufGetLength(pReply) - kJDWPHeaderLen; |
| 4211 | VLOG(jdwp) << StringPrintf("REPLY INVOKE id=0x%06x (length=%zu)", |
| 4212 | pReq->request_id, replyDataLength); |
| 4213 | |
| 4214 | gJdwpState->SendRequest(pReply); |
| 4215 | } else { |
| 4216 | VLOG(jdwp) << "Not sending invoke reply because debugger detached"; |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4217 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4218 | } |
| 4219 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4220 | bool Dbg::DdmHandleChunk(JNIEnv* env, |
| 4221 | uint32_t type, |
| 4222 | const ArrayRef<const jbyte>& data, |
| 4223 | /*out*/uint32_t* out_type, |
| 4224 | /*out*/std::vector<uint8_t>* out_data) { |
| 4225 | ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(data.size())); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4226 | if (dataArray.get() == nullptr) { |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4227 | LOG(WARNING) << "byte[] allocation failed: " << data.size(); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4228 | env->ExceptionClear(); |
| 4229 | return false; |
| 4230 | } |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4231 | env->SetByteArrayRegion(dataArray.get(), |
| 4232 | 0, |
| 4233 | data.size(), |
| 4234 | reinterpret_cast<const jbyte*>(data.data())); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4235 | // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)". |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4236 | ScopedLocalRef<jobject> chunk( |
| 4237 | env, |
| 4238 | env->CallStaticObjectMethod( |
| 4239 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer, |
| 4240 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch, |
| 4241 | type, dataArray.get(), 0, data.size())); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4242 | if (env->ExceptionCheck()) { |
| Alex Light | 1eeefa6 | 2018-03-19 13:47:56 -0700 | [diff] [blame] | 4243 | Thread* self = Thread::Current(); |
| 4244 | ScopedObjectAccess soa(self); |
| 4245 | LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type) << std::endl |
| 4246 | << self->GetException()->Dump(); |
| 4247 | self->ClearException(); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4248 | return false; |
| 4249 | } |
| 4250 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4251 | if (chunk.get() == nullptr) { |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4252 | return false; |
| 4253 | } |
| 4254 | |
| 4255 | /* |
| 4256 | * Pull the pieces out of the chunk. We copy the results into a |
| 4257 | * newly-allocated buffer that the caller can free. We don't want to |
| 4258 | * continue using the Chunk object because nothing has a reference to it. |
| 4259 | * |
| 4260 | * We could avoid this by returning type/data/offset/length and having |
| 4261 | * the caller be aware of the object lifetime issues, but that |
| Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 4262 | * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4263 | * if we have responses for multiple chunks. |
| 4264 | * |
| 4265 | * So we're pretty much stuck with copying data around multiple times. |
| 4266 | */ |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4267 | ScopedLocalRef<jbyteArray> replyData( |
| 4268 | env, |
| 4269 | reinterpret_cast<jbyteArray>( |
| 4270 | env->GetObjectField( |
| 4271 | chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_data))); |
| 4272 | jint offset = env->GetIntField(chunk.get(), |
| 4273 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset); |
| 4274 | jint length = env->GetIntField(chunk.get(), |
| 4275 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length); |
| 4276 | *out_type = env->GetIntField(chunk.get(), |
| 4277 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4278 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4279 | VLOG(jdwp) << StringPrintf("DDM reply: type=0x%08x data=%p offset=%d length=%d", |
| 4280 | type, |
| 4281 | replyData.get(), |
| 4282 | offset, |
| 4283 | length); |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4284 | out_data->resize(length); |
| 4285 | env->GetByteArrayRegion(replyData.get(), |
| 4286 | offset, |
| 4287 | length, |
| 4288 | reinterpret_cast<jbyte*>(out_data->data())); |
| Alex Light | 6f2a634 | 2017-12-12 09:55:05 -0800 | [diff] [blame] | 4289 | |
| Alex Light | e5463a8 | 2017-12-12 13:33:28 -0800 | [diff] [blame] | 4290 | if (env->ExceptionCheck()) { |
| Alex Light | 1eeefa6 | 2018-03-19 13:47:56 -0700 | [diff] [blame] | 4291 | Thread* self = Thread::Current(); |
| 4292 | ScopedObjectAccess soa(self); |
| Alex Light | e5463a8 | 2017-12-12 13:33:28 -0800 | [diff] [blame] | 4293 | LOG(INFO) << StringPrintf("Exception thrown when reading response data from dispatcher 0x%08x", |
| Alex Light | 1eeefa6 | 2018-03-19 13:47:56 -0700 | [diff] [blame] | 4294 | type) << std::endl << self->GetException()->Dump(); |
| 4295 | self->ClearException(); |
| Alex Light | e5463a8 | 2017-12-12 13:33:28 -0800 | [diff] [blame] | 4296 | return false; |
| 4297 | } |
| 4298 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4299 | return true; |
| 4300 | } |
| 4301 | |
| 4302 | /* |
| 4303 | * "request" contains a full JDWP packet, possibly with multiple chunks. We |
| 4304 | * need to process each, accumulate the replies, and ship the whole thing |
| 4305 | * back. |
| 4306 | * |
| 4307 | * Returns "true" if we have a reply. The reply buffer is newly allocated, |
| 4308 | * and includes the chunk type/length, followed by the data. |
| 4309 | * |
| 4310 | * OLD-TODO: we currently assume that the request and reply include a single |
| 4311 | * chunk. If this becomes inconvenient we will need to adapt. |
| 4312 | */ |
| 4313 | bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) { |
| 4314 | Thread* self = Thread::Current(); |
| 4315 | JNIEnv* env = self->GetJniEnv(); |
| 4316 | |
| 4317 | uint32_t type = request->ReadUnsigned32("type"); |
| 4318 | uint32_t length = request->ReadUnsigned32("length"); |
| 4319 | |
| 4320 | // Create a byte[] corresponding to 'request'. |
| 4321 | size_t request_length = request->size(); |
| 4322 | // Run through and find all chunks. [Currently just find the first.] |
| 4323 | if (length != request_length) { |
| 4324 | LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4325 | return false; |
| 4326 | } |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4327 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4328 | ArrayRef<const jbyte> data(reinterpret_cast<const jbyte*>(request->data()), request_length); |
| 4329 | std::vector<uint8_t> out_data; |
| 4330 | uint32_t out_type = 0; |
| 4331 | request->Skip(request_length); |
| Alex Light | 6f2a634 | 2017-12-12 09:55:05 -0800 | [diff] [blame] | 4332 | if (!DdmHandleChunk(env, type, data, &out_type, &out_data) || out_data.empty()) { |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4333 | return false; |
| 4334 | } |
| 4335 | const uint32_t kDdmHeaderSize = 8; |
| 4336 | *pReplyLen = out_data.size() + kDdmHeaderSize; |
| 4337 | *pReplyBuf = new uint8_t[out_data.size() + kDdmHeaderSize]; |
| 4338 | memcpy((*pReplyBuf) + kDdmHeaderSize, out_data.data(), out_data.size()); |
| 4339 | JDWP::Set4BE(*pReplyBuf, out_type); |
| 4340 | JDWP::Set4BE((*pReplyBuf) + 4, static_cast<uint32_t>(out_data.size())); |
| 4341 | VLOG(jdwp) |
| 4342 | << StringPrintf("dvmHandleDdm returning type=%.4s", reinterpret_cast<char*>(*pReplyBuf)) |
| 4343 | << "0x" << std::hex << reinterpret_cast<uintptr_t>(*pReplyBuf) << std::dec |
| 4344 | << " len= " << out_data.size(); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4345 | return true; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4346 | } |
| 4347 | |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4348 | void Dbg::DdmBroadcast(bool connect) { |
| Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 4349 | VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "..."; |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4350 | |
| 4351 | Thread* self = Thread::Current(); |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4352 | if (self->GetState() != kRunnable) { |
| 4353 | LOG(ERROR) << "DDM broadcast in thread state " << self->GetState(); |
| 4354 | /* try anyway? */ |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4355 | } |
| 4356 | |
| 4357 | JNIEnv* env = self->GetJniEnv(); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4358 | jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/; |
| Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 4359 | env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer, |
| 4360 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast, |
| 4361 | event); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4362 | if (env->ExceptionCheck()) { |
| 4363 | LOG(ERROR) << "DdmServer.broadcast " << event << " failed"; |
| 4364 | env->ExceptionDescribe(); |
| 4365 | env->ExceptionClear(); |
| 4366 | } |
| 4367 | } |
| 4368 | |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4369 | void Dbg::DdmConnected() { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4370 | Dbg::DdmBroadcast(true); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4371 | } |
| 4372 | |
| 4373 | void Dbg::DdmDisconnected() { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4374 | Dbg::DdmBroadcast(false); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4375 | gDdmThreadNotification = false; |
| 4376 | } |
| 4377 | |
| 4378 | /* |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4379 | * Send a notification when a thread starts, stops, or changes its name. |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4380 | * |
| 4381 | * Because we broadcast the full set of threads when the notifications are |
| 4382 | * first enabled, it's possible for "thread" to be actively executing. |
| 4383 | */ |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4384 | void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) { |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4385 | if (!gDdmThreadNotification) { |
| 4386 | return; |
| 4387 | } |
| 4388 | |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4389 | RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks(); |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4390 | if (type == CHUNK_TYPE("THDE")) { |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4391 | uint8_t buf[4]; |
| Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 4392 | JDWP::Set4BE(&buf[0], t->GetThreadId()); |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4393 | cb->DdmPublishChunk(CHUNK_TYPE("THDE"), ArrayRef<const uint8_t>(buf)); |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4394 | } else { |
| 4395 | CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type; |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4396 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 4397 | StackHandleScope<1> hs(soa.Self()); |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 4398 | Handle<mirror::String> name(hs.NewHandle(t->GetThreadName())); |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 4399 | size_t char_count = (name != nullptr) ? name->GetLength() : 0; |
| 4400 | const jchar* chars = (name != nullptr) ? name->GetValue() : nullptr; |
| 4401 | bool is_compressed = (name != nullptr) ? name->IsCompressed() : false; |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4402 | |
| Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4403 | std::vector<uint8_t> bytes; |
| Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 4404 | JDWP::Append4BE(bytes, t->GetThreadId()); |
| jessicahandojo | 3aaa37b | 2016-07-29 14:46:37 -0700 | [diff] [blame] | 4405 | if (is_compressed) { |
| 4406 | const uint8_t* chars_compressed = name->GetValueCompressed(); |
| 4407 | JDWP::AppendUtf16CompressedBE(bytes, chars_compressed, char_count); |
| 4408 | } else { |
| 4409 | JDWP::AppendUtf16BE(bytes, chars, char_count); |
| 4410 | } |
| Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4411 | CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2); |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4412 | cb->DdmPublishChunk(type, ArrayRef<const uint8_t>(bytes)); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4413 | } |
| 4414 | } |
| 4415 | |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4416 | void Dbg::DdmSetThreadNotification(bool enable) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4417 | // Enable/disable thread notifications. |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4418 | gDdmThreadNotification = enable; |
| 4419 | if (enable) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4420 | // Suspend the VM then post thread start notifications for all threads. Threads attaching will |
| 4421 | // see a suspension in progress and block until that ends. They then post their own start |
| 4422 | // notification. |
| 4423 | SuspendVM(); |
| 4424 | std::list<Thread*> threads; |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4425 | Thread* self = Thread::Current(); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4426 | { |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4427 | MutexLock mu(self, *Locks::thread_list_lock_); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4428 | threads = Runtime::Current()->GetThreadList()->GetList(); |
| 4429 | } |
| 4430 | { |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4431 | ScopedObjectAccess soa(self); |
| Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 4432 | for (Thread* thread : threads) { |
| 4433 | Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR")); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4434 | } |
| 4435 | } |
| 4436 | ResumeVM(); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4437 | } |
| 4438 | } |
| 4439 | |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4440 | void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) { |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 4441 | if (IsDebuggerActive()) { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 4442 | gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR")); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4443 | } |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4444 | Dbg::DdmSendThreadNotification(t, type); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4445 | } |
| 4446 | |
| 4447 | void Dbg::PostThreadStart(Thread* t) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4448 | Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR")); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4449 | } |
| 4450 | |
| 4451 | void Dbg::PostThreadDeath(Thread* t) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4452 | Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE")); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4453 | } |
| 4454 | |
| Mathieu Chartier | ad466ad | 2015-01-08 16:28:08 -0800 | [diff] [blame] | 4455 | JDWP::JdwpState* Dbg::GetJdwpState() { |
| 4456 | return gJdwpState; |
| 4457 | } |
| 4458 | |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4459 | int Dbg::DdmHandleHpifChunk(HpifWhen when) { |
| 4460 | if (when == HPIF_WHEN_NOW) { |
| Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 4461 | DdmSendHeapInfo(when); |
| Andreas Gampe | 7c5acbb | 2018-09-20 13:54:52 -0700 | [diff] [blame] | 4462 | return 1; |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4463 | } |
| 4464 | |
| 4465 | if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) { |
| 4466 | LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when); |
| Andreas Gampe | 7c5acbb | 2018-09-20 13:54:52 -0700 | [diff] [blame] | 4467 | return 0; |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4468 | } |
| 4469 | |
| 4470 | gDdmHpifWhen = when; |
| Andreas Gampe | 7c5acbb | 2018-09-20 13:54:52 -0700 | [diff] [blame] | 4471 | return 1; |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4472 | } |
| 4473 | |
| 4474 | bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) { |
| 4475 | if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) { |
| 4476 | LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when); |
| 4477 | return false; |
| 4478 | } |
| 4479 | |
| 4480 | if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) { |
| 4481 | LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what); |
| 4482 | return false; |
| 4483 | } |
| 4484 | |
| 4485 | if (native) { |
| 4486 | gDdmNhsgWhen = when; |
| 4487 | gDdmNhsgWhat = what; |
| 4488 | } else { |
| 4489 | gDdmHpsgWhen = when; |
| 4490 | gDdmHpsgWhat = what; |
| 4491 | } |
| 4492 | return true; |
| 4493 | } |
| 4494 | |
| Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 4495 | void Dbg::DdmSendHeapInfo(HpifWhen reason) { |
| 4496 | // If there's a one-shot 'when', reset it. |
| 4497 | if (reason == gDdmHpifWhen) { |
| 4498 | if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) { |
| 4499 | gDdmHpifWhen = HPIF_WHEN_NEVER; |
| 4500 | } |
| 4501 | } |
| 4502 | |
| 4503 | /* |
| 4504 | * Chunk HPIF (client --> server) |
| 4505 | * |
| 4506 | * Heap Info. General information about the heap, |
| 4507 | * suitable for a summary display. |
| 4508 | * |
| 4509 | * [u4]: number of heaps |
| 4510 | * |
| 4511 | * For each heap: |
| 4512 | * [u4]: heap ID |
| 4513 | * [u8]: timestamp in ms since Unix epoch |
| 4514 | * [u1]: capture reason (same as 'when' value from server) |
| 4515 | * [u4]: max heap size in bytes (-Xmx) |
| 4516 | * [u4]: current heap size in bytes |
| 4517 | * [u4]: current number of bytes allocated |
| 4518 | * [u4]: current number of objects allocated |
| 4519 | */ |
| 4520 | uint8_t heap_count = 1; |
| Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 4521 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4522 | std::vector<uint8_t> bytes; |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4523 | JDWP::Append4BE(bytes, heap_count); |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4524 | JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap). |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4525 | JDWP::Append8BE(bytes, MilliTime()); |
| 4526 | JDWP::Append1BE(bytes, reason); |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4527 | JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes. |
| 4528 | JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes. |
| Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 4529 | JDWP::Append4BE(bytes, heap->GetBytesAllocated()); |
| 4530 | JDWP::Append4BE(bytes, heap->GetObjectsAllocated()); |
| Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4531 | CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4))); |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4532 | Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(CHUNK_TYPE("HPIF"), |
| 4533 | ArrayRef<const uint8_t>(bytes)); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4534 | } |
| 4535 | |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4536 | enum HpsgSolidity { |
| 4537 | SOLIDITY_FREE = 0, |
| 4538 | SOLIDITY_HARD = 1, |
| 4539 | SOLIDITY_SOFT = 2, |
| 4540 | SOLIDITY_WEAK = 3, |
| 4541 | SOLIDITY_PHANTOM = 4, |
| 4542 | SOLIDITY_FINALIZABLE = 5, |
| 4543 | SOLIDITY_SWEEP = 6, |
| 4544 | }; |
| 4545 | |
| 4546 | enum HpsgKind { |
| 4547 | KIND_OBJECT = 0, |
| 4548 | KIND_CLASS_OBJECT = 1, |
| 4549 | KIND_ARRAY_1 = 2, |
| 4550 | KIND_ARRAY_2 = 3, |
| 4551 | KIND_ARRAY_4 = 4, |
| 4552 | KIND_ARRAY_8 = 5, |
| 4553 | KIND_UNKNOWN = 6, |
| 4554 | KIND_NATIVE = 7, |
| 4555 | }; |
| 4556 | |
| 4557 | #define HPSG_PARTIAL (1<<7) |
| 4558 | #define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7))) |
| 4559 | |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4560 | class HeapChunkContext { |
| 4561 | public: |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4562 | // Maximum chunk size. Obtain this from the formula: |
| 4563 | // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2 |
| 4564 | HeapChunkContext(bool merge, bool native) |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4565 | : buf_(16384 - 16), |
| 4566 | type_(0), |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4567 | chunk_overhead_(0) { |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4568 | Reset(); |
| 4569 | if (native) { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4570 | type_ = CHUNK_TYPE("NHSG"); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4571 | } else { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4572 | type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO"); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4573 | } |
| 4574 | } |
| 4575 | |
| 4576 | ~HeapChunkContext() { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4577 | if (p_ > &buf_[0]) { |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4578 | Flush(); |
| 4579 | } |
| 4580 | } |
| 4581 | |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4582 | void SetChunkOverhead(size_t chunk_overhead) { |
| 4583 | chunk_overhead_ = chunk_overhead; |
| 4584 | } |
| 4585 | |
| 4586 | void ResetStartOfNextChunk() { |
| 4587 | startOfNextMemoryChunk_ = nullptr; |
| 4588 | } |
| 4589 | |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4590 | void EnsureHeader(const void* chunk_ptr) { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4591 | if (!needHeader_) { |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4592 | return; |
| 4593 | } |
| 4594 | |
| 4595 | // Start a new HPSx chunk. |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4596 | JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap). |
| 4597 | JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes. |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4598 | |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4599 | JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start. |
| 4600 | JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address). |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4601 | // [u4]: length of piece, in allocation units |
| 4602 | // We won't know this until we're done, so save the offset and stuff in a dummy value. |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4603 | pieceLenField_ = p_; |
| 4604 | JDWP::Write4BE(&p_, 0x55555555); |
| 4605 | needHeader_ = false; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4606 | } |
| 4607 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4608 | void Flush() REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4609 | if (pieceLenField_ == nullptr) { |
| Ian Rogers | d636b06 | 2013-01-18 17:51:18 -0800 | [diff] [blame] | 4610 | // Flush immediately post Reset (maybe back-to-back Flush). Ignore. |
| 4611 | CHECK(needHeader_); |
| 4612 | return; |
| 4613 | } |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4614 | // Patch the "length of piece" field. |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4615 | CHECK_LE(&buf_[0], pieceLenField_); |
| 4616 | CHECK_LE(pieceLenField_, p_); |
| 4617 | JDWP::Set4BE(pieceLenField_, totalAllocationUnits_); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4618 | |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4619 | ArrayRef<const uint8_t> out(&buf_[0], p_ - &buf_[0]); |
| 4620 | Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(type_, out); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4621 | Reset(); |
| 4622 | } |
| 4623 | |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4624 | static void HeapChunkJavaCallback(void* start, void* end, size_t used_bytes, void* arg) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4625 | REQUIRES_SHARED(Locks::heap_bitmap_lock_, |
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 4626 | Locks::mutator_lock_) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4627 | reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes); |
| 4628 | } |
| 4629 | |
| 4630 | static void HeapChunkNativeCallback(void* start, void* end, size_t used_bytes, void* arg) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4631 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4632 | reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes); |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4633 | } |
| 4634 | |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4635 | private: |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4636 | enum { ALLOCATION_UNIT_SIZE = 8 }; |
| 4637 | |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4638 | void Reset() { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4639 | p_ = &buf_[0]; |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4640 | ResetStartOfNextChunk(); |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4641 | totalAllocationUnits_ = 0; |
| 4642 | needHeader_ = true; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4643 | pieceLenField_ = nullptr; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4644 | } |
| 4645 | |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4646 | bool IsNative() const { |
| 4647 | return type_ == CHUNK_TYPE("NHSG"); |
| 4648 | } |
| 4649 | |
| 4650 | // Returns true if the object is not an empty chunk. |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4651 | bool ProcessRecord(void* start, size_t used_bytes) REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4652 | // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken |
| 4653 | // in the following code not to allocate memory, by ensuring buf_ is of the correct size |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4654 | if (used_bytes == 0) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4655 | if (start == nullptr) { |
| 4656 | // Reset for start of new heap. |
| 4657 | startOfNextMemoryChunk_ = nullptr; |
| 4658 | Flush(); |
| 4659 | } |
| 4660 | // Only process in use memory so that free region information |
| 4661 | // also includes dlmalloc book keeping. |
| 4662 | return false; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4663 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4664 | if (startOfNextMemoryChunk_ != nullptr) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4665 | // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because |
| 4666 | // of the use of mmaps, so don't report. If not free memory then start a new segment. |
| 4667 | bool flush = true; |
| 4668 | if (start > startOfNextMemoryChunk_) { |
| 4669 | const size_t kMaxFreeLen = 2 * kPageSize; |
| 4670 | void* free_start = startOfNextMemoryChunk_; |
| 4671 | void* free_end = start; |
| 4672 | const size_t free_len = |
| 4673 | reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start); |
| 4674 | if (!IsNative() || free_len < kMaxFreeLen) { |
| 4675 | AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative()); |
| 4676 | flush = false; |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4677 | } |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4678 | } |
| 4679 | if (flush) { |
| 4680 | startOfNextMemoryChunk_ = nullptr; |
| 4681 | Flush(); |
| 4682 | } |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4683 | } |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4684 | return true; |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4685 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4686 | |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4687 | void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4688 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4689 | if (ProcessRecord(start, used_bytes)) { |
| 4690 | uint8_t state = ExamineNativeObject(start); |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 4691 | AppendChunk(state, start, used_bytes + chunk_overhead_, /*is_native=*/ true); |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4692 | startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_; |
| 4693 | } |
| 4694 | } |
| 4695 | |
| 4696 | void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4697 | REQUIRES_SHARED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4698 | if (ProcessRecord(start, used_bytes)) { |
| 4699 | // Determine the type of this chunk. |
| 4700 | // OLD-TODO: if context.merge, see if this chunk is different from the last chunk. |
| 4701 | // If it's the same, we should combine them. |
| 4702 | uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start)); |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 4703 | AppendChunk(state, start, used_bytes + chunk_overhead_, /*is_native=*/ false); |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4704 | startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_; |
| 4705 | } |
| 4706 | } |
| 4707 | |
| 4708 | void AppendChunk(uint8_t state, void* ptr, size_t length, bool is_native) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4709 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4710 | // Make sure there's enough room left in the buffer. |
| 4711 | // We need to use two bytes for every fractional 256 allocation units used by the chunk plus |
| 4712 | // 17 bytes for any header. |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4713 | const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17; |
| 4714 | size_t byte_left = &buf_.back() - p_; |
| 4715 | if (byte_left < needed) { |
| 4716 | if (is_native) { |
| Pavel Vyssotski | 7522c74 | 2014-12-08 13:38:26 +0600 | [diff] [blame] | 4717 | // Cannot trigger memory allocation while walking native heap. |
| Pavel Vyssotski | 7522c74 | 2014-12-08 13:38:26 +0600 | [diff] [blame] | 4718 | return; |
| 4719 | } |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4720 | Flush(); |
| 4721 | } |
| 4722 | |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4723 | byte_left = &buf_.back() - p_; |
| 4724 | if (byte_left < needed) { |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4725 | LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", " |
| 4726 | << needed << " bytes)"; |
| 4727 | return; |
| 4728 | } |
| 4729 | EnsureHeader(ptr); |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4730 | // Write out the chunk description. |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4731 | length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units. |
| 4732 | totalAllocationUnits_ += length; |
| 4733 | while (length > 256) { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4734 | *p_++ = state | HPSG_PARTIAL; |
| 4735 | *p_++ = 255; // length - 1 |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4736 | length -= 256; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4737 | } |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4738 | *p_++ = state; |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4739 | *p_++ = length - 1; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4740 | } |
| 4741 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4742 | uint8_t ExamineNativeObject(const void* p) REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4743 | return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); |
| 4744 | } |
| 4745 | |
| Vladimir Marko | 8311489 | 2019-04-11 13:05:50 +0100 | [diff] [blame] | 4746 | uint8_t ExamineJavaObject(ObjPtr<mirror::Object> o) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4747 | REQUIRES_SHARED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4748 | if (o == nullptr) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4749 | return HPSG_STATE(SOLIDITY_FREE, 0); |
| 4750 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4751 | // It's an allocated chunk. Figure out what it is. |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4752 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 4753 | if (!heap->IsLiveObjectLocked(o)) { |
| 4754 | LOG(ERROR) << "Invalid object in managed heap: " << o; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4755 | return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); |
| 4756 | } |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 4757 | ObjPtr<mirror::Class> c = o->GetClass(); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4758 | if (c == nullptr) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4759 | // The object was probably just created but hasn't been initialized yet. |
| 4760 | return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT); |
| 4761 | } |
| Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 4762 | if (!heap->IsValidObjectAddress(c.Ptr())) { |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4763 | LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4764 | return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN); |
| 4765 | } |
| Mathieu Chartier | f26e1b3 | 2015-01-29 10:47:10 -0800 | [diff] [blame] | 4766 | if (c->GetClass() == nullptr) { |
| 4767 | LOG(ERROR) << "Null class of class " << c << " for object " << o; |
| 4768 | return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN); |
| 4769 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4770 | if (c->IsClassClass()) { |
| 4771 | return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT); |
| 4772 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4773 | if (c->IsArrayClass()) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4774 | switch (c->GetComponentSize()) { |
| 4775 | case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1); |
| 4776 | case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2); |
| 4777 | case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4); |
| 4778 | case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8); |
| 4779 | } |
| 4780 | } |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4781 | return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT); |
| 4782 | } |
| 4783 | |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4784 | std::vector<uint8_t> buf_; |
| 4785 | uint8_t* p_; |
| 4786 | uint8_t* pieceLenField_; |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4787 | void* startOfNextMemoryChunk_; |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4788 | size_t totalAllocationUnits_; |
| 4789 | uint32_t type_; |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4790 | bool needHeader_; |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4791 | size_t chunk_overhead_; |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4792 | |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4793 | DISALLOW_COPY_AND_ASSIGN(HeapChunkContext); |
| 4794 | }; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4795 | |
| 4796 | void Dbg::DdmSendHeapSegments(bool native) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4797 | Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen; |
| 4798 | Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4799 | if (when == HPSG_WHEN_NEVER) { |
| 4800 | return; |
| 4801 | } |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4802 | RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks(); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4803 | // Figure out what kind of chunks we'll be sending. |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4804 | CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) |
| 4805 | << static_cast<int>(what); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4806 | |
| 4807 | // First, send a heap start chunk. |
| 4808 | uint8_t heap_id[4]; |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4809 | JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap). |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4810 | cb->DdmPublishChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), |
| 4811 | ArrayRef<const uint8_t>(heap_id)); |
| Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4812 | Thread* self = Thread::Current(); |
| Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4813 | Locks::mutator_lock_->AssertSharedHeld(self); |
| Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4814 | |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4815 | // Send a series of heap segment chunks. |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4816 | HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native); |
| Andreas Gampe | 0c18338 | 2017-07-13 22:26:24 -0700 | [diff] [blame] | 4817 | auto bump_pointer_space_visitor = [&](mirror::Object* obj) |
| 4818 | REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::heap_bitmap_lock_) { |
| 4819 | const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment); |
| 4820 | HeapChunkContext::HeapChunkJavaCallback( |
| 4821 | obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, &context); |
| 4822 | }; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4823 | if (native) { |
| Dimitry Ivanov | e6465bc | 2015-12-14 18:55:02 -0800 | [diff] [blame] | 4824 | UNIMPLEMENTED(WARNING) << "Native heap inspection is not supported"; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4825 | } else { |
| Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 4826 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4827 | for (const auto& space : heap->GetContinuousSpaces()) { |
| 4828 | if (space->IsDlMallocSpace()) { |
| Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4829 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4830 | // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an |
| 4831 | // allocation then the first sizeof(size_t) may belong to it. |
| 4832 | context.SetChunkOverhead(sizeof(size_t)); |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4833 | space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4834 | } else if (space->IsRosAllocSpace()) { |
| 4835 | context.SetChunkOverhead(0); |
| Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4836 | // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since |
| 4837 | // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock. |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4838 | ScopedThreadSuspension sts(self, kSuspended); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 4839 | ScopedSuspendAll ssa(__FUNCTION__); |
| 4840 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| 4841 | space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4842 | } else if (space->IsBumpPointerSpace()) { |
| Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4843 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4844 | context.SetChunkOverhead(0); |
| Andreas Gampe | 0c18338 | 2017-07-13 22:26:24 -0700 | [diff] [blame] | 4845 | space->AsBumpPointerSpace()->Walk(bump_pointer_space_visitor); |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4846 | HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context); |
| Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 4847 | } else if (space->IsRegionSpace()) { |
| 4848 | heap->IncrementDisableMovingGC(self); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4849 | { |
| 4850 | ScopedThreadSuspension sts(self, kSuspended); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 4851 | ScopedSuspendAll ssa(__FUNCTION__); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4852 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| 4853 | context.SetChunkOverhead(0); |
| Andreas Gampe | 0c18338 | 2017-07-13 22:26:24 -0700 | [diff] [blame] | 4854 | space->AsRegionSpace()->Walk(bump_pointer_space_visitor); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4855 | HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4856 | } |
| Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 4857 | heap->DecrementDisableMovingGC(self); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4858 | } else { |
| 4859 | UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space; |
| Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 4860 | } |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4861 | context.ResetStartOfNextChunk(); |
| Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 4862 | } |
| Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4863 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| Mathieu Chartier | e0f0cb3 | 2012-08-28 11:26:00 -0700 | [diff] [blame] | 4864 | // Walk the large objects, these are not in the AllocSpace. |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4865 | context.SetChunkOverhead(0); |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4866 | heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context); |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4867 | } |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4868 | |
| 4869 | // Finally, send a heap end chunk. |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4870 | cb->DdmPublishChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), |
| 4871 | ArrayRef<const uint8_t>(heap_id)); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4872 | } |
| 4873 | |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4874 | void Dbg::SetAllocTrackingEnabled(bool enable) { |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4875 | gc::AllocRecordObjectMap::SetAllocTrackingEnabled(enable); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4876 | } |
| 4877 | |
| 4878 | void Dbg::DumpRecentAllocations() { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4879 | ScopedObjectAccess soa(Thread::Current()); |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4880 | MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_); |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4881 | if (!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled()) { |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4882 | LOG(INFO) << "Not recording tracked allocations"; |
| 4883 | return; |
| 4884 | } |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4885 | gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); |
| 4886 | CHECK(records != nullptr); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4887 | |
| Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 4888 | const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize()); |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4889 | uint16_t count = capped_count; |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4890 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4891 | LOG(INFO) << "Tracked allocations, (count=" << count << ")"; |
| 4892 | for (auto it = records->RBegin(), end = records->REnd(); |
| 4893 | count > 0 && it != end; count--, it++) { |
| Mathieu Chartier | 458b105 | 2016-03-29 14:02:55 -0700 | [diff] [blame] | 4894 | const gc::AllocRecord* record = &it->second; |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4895 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4896 | LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->GetTid(), record->ByteCount()) |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 4897 | << mirror::Class::PrettyClass(record->GetClass()); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4898 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4899 | for (size_t stack_frame = 0, depth = record->GetDepth(); stack_frame < depth; ++stack_frame) { |
| 4900 | const gc::AllocRecordStackTraceElement& stack_element = record->StackElement(stack_frame); |
| 4901 | ArtMethod* m = stack_element.GetMethod(); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 4902 | LOG(INFO) << " " << ArtMethod::PrettyMethod(m) << " line " |
| 4903 | << stack_element.ComputeLineNumber(); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4904 | } |
| 4905 | |
| 4906 | // pause periodically to help logcat catch up |
| 4907 | if ((count % 5) == 0) { |
| 4908 | usleep(40000); |
| 4909 | } |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4910 | } |
| 4911 | } |
| 4912 | |
| 4913 | class StringTable { |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4914 | private: |
| 4915 | struct Entry { |
| Andreas Gampe | 84eadb2 | 2017-07-07 15:08:01 -0700 | [diff] [blame] | 4916 | explicit Entry(const char* data_in) |
| 4917 | : data(data_in), hash(ComputeModifiedUtf8Hash(data_in)), index(0) { |
| 4918 | } |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4919 | Entry(const Entry& entry) = default; |
| 4920 | Entry(Entry&& entry) = default; |
| 4921 | |
| 4922 | // Pointer to the actual string data. |
| 4923 | const char* data; |
| Andreas Gampe | 84eadb2 | 2017-07-07 15:08:01 -0700 | [diff] [blame] | 4924 | |
| 4925 | // The hash of the data. |
| 4926 | const uint32_t hash; |
| 4927 | |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4928 | // The index. This will be filled in on Finish and is not part of the ordering, so mark it |
| 4929 | // mutable. |
| 4930 | mutable uint32_t index; |
| 4931 | |
| Andreas Gampe | 84eadb2 | 2017-07-07 15:08:01 -0700 | [diff] [blame] | 4932 | bool operator==(const Entry& other) const { |
| 4933 | return strcmp(data, other.data) == 0; |
| 4934 | } |
| 4935 | }; |
| 4936 | struct EntryHash { |
| 4937 | size_t operator()(const Entry& entry) const { |
| 4938 | return entry.hash; |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4939 | } |
| 4940 | }; |
| 4941 | |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4942 | public: |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4943 | StringTable() : finished_(false) { |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4944 | } |
| 4945 | |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 4946 | void Add(const char* str, bool copy_string) { |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4947 | DCHECK(!finished_); |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 4948 | if (UNLIKELY(copy_string)) { |
| 4949 | // Check whether it's already there. |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4950 | Entry entry(str); |
| 4951 | if (table_.find(entry) != table_.end()) { |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 4952 | return; |
| 4953 | } |
| Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 4954 | |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 4955 | // Make a copy. |
| 4956 | size_t str_len = strlen(str); |
| 4957 | char* copy = new char[str_len + 1]; |
| 4958 | strlcpy(copy, str, str_len + 1); |
| 4959 | string_backup_.emplace_back(copy); |
| 4960 | str = copy; |
| 4961 | } |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4962 | Entry entry(str); |
| 4963 | table_.insert(entry); |
| 4964 | } |
| 4965 | |
| 4966 | // Update all entries and give them an index. Note that this is likely not the insertion order, |
| 4967 | // as the set will with high likelihood reorder elements. Thus, Add must not be called after |
| 4968 | // Finish, and Finish must be called before IndexOf. In that case, WriteTo will walk in |
| 4969 | // the same order as Finish, and indices will agree. The order invariant, as well as indices, |
| 4970 | // are enforced through debug checks. |
| 4971 | void Finish() { |
| 4972 | DCHECK(!finished_); |
| 4973 | finished_ = true; |
| 4974 | uint32_t index = 0; |
| 4975 | for (auto& entry : table_) { |
| 4976 | entry.index = index; |
| 4977 | ++index; |
| 4978 | } |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4979 | } |
| 4980 | |
| Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4981 | size_t IndexOf(const char* s) const { |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4982 | DCHECK(finished_); |
| 4983 | Entry entry(s); |
| 4984 | auto it = table_.find(entry); |
| Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4985 | if (it == table_.end()) { |
| 4986 | LOG(FATAL) << "IndexOf(\"" << s << "\") failed"; |
| 4987 | } |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4988 | return it->index; |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4989 | } |
| 4990 | |
| Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4991 | size_t Size() const { |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4992 | return table_.size(); |
| 4993 | } |
| 4994 | |
| Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4995 | void WriteTo(std::vector<uint8_t>& bytes) const { |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4996 | DCHECK(finished_); |
| 4997 | uint32_t cur_index = 0; |
| 4998 | for (const auto& entry : table_) { |
| 4999 | DCHECK_EQ(cur_index++, entry.index); |
| 5000 | |
| 5001 | size_t s_len = CountModifiedUtf8Chars(entry.data); |
| Christopher Ferris | 8a35405 | 2015-04-24 17:23:53 -0700 | [diff] [blame] | 5002 | std::unique_ptr<uint16_t[]> s_utf16(new uint16_t[s_len]); |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5003 | ConvertModifiedUtf8ToUtf16(s_utf16.get(), entry.data); |
| Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 5004 | JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5005 | } |
| 5006 | } |
| 5007 | |
| 5008 | private: |
| Andreas Gampe | 84eadb2 | 2017-07-07 15:08:01 -0700 | [diff] [blame] | 5009 | std::unordered_set<Entry, EntryHash> table_; |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5010 | std::vector<std::unique_ptr<char[]>> string_backup_; |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5011 | |
| 5012 | bool finished_; |
| 5013 | |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5014 | DISALLOW_COPY_AND_ASSIGN(StringTable); |
| 5015 | }; |
| 5016 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 5017 | static const char* GetMethodSourceFile(ArtMethod* method) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 5018 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 5019 | DCHECK(method != nullptr); |
| 5020 | const char* source_file = method->GetDeclaringClassSourceFile(); |
| Sebastien Hertz | 280286a | 2014-04-28 09:26:50 +0200 | [diff] [blame] | 5021 | return (source_file != nullptr) ? source_file : ""; |
| 5022 | } |
| 5023 | |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5024 | /* |
| 5025 | * The data we send to DDMS contains everything we have recorded. |
| 5026 | * |
| 5027 | * Message header (all values big-endian): |
| 5028 | * (1b) message header len (to allow future expansion); includes itself |
| 5029 | * (1b) entry header len |
| 5030 | * (1b) stack frame len |
| 5031 | * (2b) number of entries |
| 5032 | * (4b) offset to string table from start of message |
| 5033 | * (2b) number of class name strings |
| 5034 | * (2b) number of method name strings |
| 5035 | * (2b) number of source file name strings |
| 5036 | * For each entry: |
| 5037 | * (4b) total allocation size |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 5038 | * (2b) thread id |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5039 | * (2b) allocated object's class name index |
| 5040 | * (1b) stack depth |
| 5041 | * For each stack frame: |
| 5042 | * (2b) method's class name |
| 5043 | * (2b) method name |
| 5044 | * (2b) method source file |
| 5045 | * (2b) line number, clipped to 32767; -2 if native; -1 if no source |
| 5046 | * (xb) class name strings |
| 5047 | * (xb) method name strings |
| 5048 | * (xb) source file strings |
| 5049 | * |
| 5050 | * As with other DDM traffic, strings are sent as a 4-byte length |
| 5051 | * followed by UTF-16 data. |
| 5052 | * |
| 5053 | * We send up 16-bit unsigned indexes into string tables. In theory there |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 5054 | * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5055 | * each table, but in practice there should be far fewer. |
| 5056 | * |
| 5057 | * The chief reason for using a string table here is to keep the size of |
| 5058 | * the DDMS message to a minimum. This is partly to make the protocol |
| 5059 | * efficient, but also because we have to form the whole thing up all at |
| 5060 | * once in a memory buffer. |
| 5061 | * |
| 5062 | * We use separate string tables for class names, method names, and source |
| 5063 | * files to keep the indexes small. There will generally be no overlap |
| 5064 | * between the contents of these tables. |
| 5065 | */ |
| 5066 | jbyteArray Dbg::GetRecentAllocations() { |
| Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 5067 | if ((false)) { |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5068 | DumpRecentAllocations(); |
| 5069 | } |
| 5070 | |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 5071 | Thread* self = Thread::Current(); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5072 | std::vector<uint8_t> bytes; |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5073 | { |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 5074 | MutexLock mu(self, *Locks::alloc_tracker_lock_); |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5075 | gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); |
| 5076 | // In case this method is called when allocation tracker is disabled, |
| 5077 | // we should still send some data back. |
| 5078 | gc::AllocRecordObjectMap dummy; |
| 5079 | if (records == nullptr) { |
| 5080 | CHECK(!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled()); |
| 5081 | records = &dummy; |
| 5082 | } |
| Man Cao | 41656de | 2015-07-06 18:53:15 -0700 | [diff] [blame] | 5083 | // We don't need to wait on the condition variable records->new_record_condition_, because this |
| 5084 | // function only reads the class objects, which are already marked so it doesn't change their |
| 5085 | // reachability. |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5086 | |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5087 | // |
| 5088 | // Part 1: generate string tables. |
| 5089 | // |
| 5090 | StringTable class_names; |
| 5091 | StringTable method_names; |
| 5092 | StringTable filenames; |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5093 | |
| Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5094 | VLOG(jdwp) << "Collecting StringTables."; |
| 5095 | |
| Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 5096 | const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize()); |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 5097 | uint16_t count = capped_count; |
| Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5098 | size_t alloc_byte_count = 0; |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5099 | for (auto it = records->RBegin(), end = records->REnd(); |
| 5100 | count > 0 && it != end; count--, it++) { |
| Mathieu Chartier | 458b105 | 2016-03-29 14:02:55 -0700 | [diff] [blame] | 5101 | const gc::AllocRecord* record = &it->second; |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 5102 | std::string temp; |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5103 | const char* class_descr = record->GetClassDescriptor(&temp); |
| 5104 | class_names.Add(class_descr, !temp.empty()); |
| Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5105 | |
| 5106 | // Size + tid + class name index + stack depth. |
| 5107 | alloc_byte_count += 4u + 2u + 2u + 1u; |
| 5108 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5109 | for (size_t i = 0, depth = record->GetDepth(); i < depth; i++) { |
| 5110 | ArtMethod* m = record->StackElement(i).GetMethod(); |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5111 | class_names.Add(m->GetDeclaringClassDescriptor(), false); |
| 5112 | method_names.Add(m->GetName(), false); |
| 5113 | filenames.Add(GetMethodSourceFile(m), false); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5114 | } |
| Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5115 | |
| 5116 | // Depth * (class index + method name index + file name index + line number). |
| 5117 | alloc_byte_count += record->GetDepth() * (2u + 2u + 2u + 2u); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5118 | } |
| 5119 | |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5120 | class_names.Finish(); |
| 5121 | method_names.Finish(); |
| 5122 | filenames.Finish(); |
| Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5123 | VLOG(jdwp) << "Done collecting StringTables:" << std::endl |
| 5124 | << " ClassNames: " << class_names.Size() << std::endl |
| 5125 | << " MethodNames: " << method_names.Size() << std::endl |
| 5126 | << " Filenames: " << filenames.Size(); |
| 5127 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5128 | LOG(INFO) << "recent allocation records: " << capped_count; |
| 5129 | LOG(INFO) << "allocation records all objects: " << records->Size(); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5130 | |
| 5131 | // |
| 5132 | // Part 2: Generate the output and store it in the buffer. |
| 5133 | // |
| 5134 | |
| 5135 | // (1b) message header len (to allow future expansion); includes itself |
| 5136 | // (1b) entry header len |
| 5137 | // (1b) stack frame len |
| 5138 | const int kMessageHeaderLen = 15; |
| 5139 | const int kEntryHeaderLen = 9; |
| 5140 | const int kStackFrameLen = 8; |
| 5141 | JDWP::Append1BE(bytes, kMessageHeaderLen); |
| 5142 | JDWP::Append1BE(bytes, kEntryHeaderLen); |
| 5143 | JDWP::Append1BE(bytes, kStackFrameLen); |
| 5144 | |
| 5145 | // (2b) number of entries |
| 5146 | // (4b) offset to string table from start of message |
| 5147 | // (2b) number of class name strings |
| 5148 | // (2b) number of method name strings |
| 5149 | // (2b) number of source file name strings |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 5150 | JDWP::Append2BE(bytes, capped_count); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5151 | size_t string_table_offset = bytes.size(); |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 5152 | JDWP::Append4BE(bytes, 0); // We'll patch this later... |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5153 | JDWP::Append2BE(bytes, class_names.Size()); |
| 5154 | JDWP::Append2BE(bytes, method_names.Size()); |
| 5155 | JDWP::Append2BE(bytes, filenames.Size()); |
| 5156 | |
| Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5157 | VLOG(jdwp) << "Dumping allocations with stacks"; |
| 5158 | |
| Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5159 | // Enlarge the vector for the allocation data. |
| 5160 | size_t reserve_size = bytes.size() + alloc_byte_count; |
| 5161 | bytes.reserve(reserve_size); |
| 5162 | |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 5163 | std::string temp; |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5164 | count = capped_count; |
| 5165 | // The last "count" number of allocation records in "records" are the most recent "count" number |
| 5166 | // of allocations. Reverse iterate to get them. The most recent allocation is sent first. |
| 5167 | for (auto it = records->RBegin(), end = records->REnd(); |
| 5168 | count > 0 && it != end; count--, it++) { |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5169 | // For each entry: |
| 5170 | // (4b) total allocation size |
| 5171 | // (2b) thread id |
| 5172 | // (2b) allocated object's class name index |
| 5173 | // (1b) stack depth |
| Mathieu Chartier | 458b105 | 2016-03-29 14:02:55 -0700 | [diff] [blame] | 5174 | const gc::AllocRecord* record = &it->second; |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5175 | size_t stack_depth = record->GetDepth(); |
| Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 5176 | size_t allocated_object_class_name_index = |
| Man Cao | 41656de | 2015-07-06 18:53:15 -0700 | [diff] [blame] | 5177 | class_names.IndexOf(record->GetClassDescriptor(&temp)); |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 5178 | JDWP::Append4BE(bytes, record->ByteCount()); |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5179 | JDWP::Append2BE(bytes, static_cast<uint16_t>(record->GetTid())); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5180 | JDWP::Append2BE(bytes, allocated_object_class_name_index); |
| 5181 | JDWP::Append1BE(bytes, stack_depth); |
| 5182 | |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5183 | for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) { |
| 5184 | // For each stack frame: |
| 5185 | // (2b) method's class name |
| 5186 | // (2b) method name |
| 5187 | // (2b) method source file |
| 5188 | // (2b) line number, clipped to 32767; -2 if native; -1 if no source |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5189 | ArtMethod* m = record->StackElement(stack_frame).GetMethod(); |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 5190 | size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor()); |
| 5191 | size_t method_name_index = method_names.IndexOf(m->GetName()); |
| 5192 | size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m)); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5193 | JDWP::Append2BE(bytes, class_name_index); |
| 5194 | JDWP::Append2BE(bytes, method_name_index); |
| 5195 | JDWP::Append2BE(bytes, file_name_index); |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5196 | JDWP::Append2BE(bytes, record->StackElement(stack_frame).ComputeLineNumber()); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5197 | } |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5198 | } |
| 5199 | |
| Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5200 | CHECK_EQ(bytes.size(), reserve_size); |
| Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5201 | VLOG(jdwp) << "Dumping tables."; |
| 5202 | |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5203 | // (xb) class name strings |
| 5204 | // (xb) method name strings |
| 5205 | // (xb) source file strings |
| 5206 | JDWP::Set4BE(&bytes[string_table_offset], bytes.size()); |
| 5207 | class_names.WriteTo(bytes); |
| 5208 | method_names.WriteTo(bytes); |
| 5209 | filenames.WriteTo(bytes); |
| Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5210 | |
| 5211 | VLOG(jdwp) << "GetRecentAllocations: data created. " << bytes.size(); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5212 | } |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 5213 | JNIEnv* env = self->GetJniEnv(); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5214 | jbyteArray result = env->NewByteArray(bytes.size()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 5215 | if (result != nullptr) { |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5216 | env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0])); |
| 5217 | } |
| 5218 | return result; |
| 5219 | } |
| 5220 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 5221 | ArtMethod* DeoptimizationRequest::Method() const { |
| Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 5222 | return jni::DecodeArtMethod(method_); |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 5223 | } |
| 5224 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 5225 | void DeoptimizationRequest::SetMethod(ArtMethod* m) { |
| Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 5226 | method_ = jni::EncodeArtMethod(m); |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 5227 | } |
| 5228 | |
| Mathieu Chartier | a6b1ead | 2015-10-06 10:32:38 -0700 | [diff] [blame] | 5229 | void Dbg::VisitRoots(RootVisitor* visitor) { |
| 5230 | // Visit breakpoint roots, used to prevent unloading of methods with breakpoints. |
| 5231 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
| 5232 | BufferedRootVisitor<128> root_visitor(visitor, RootInfo(kRootVMInternal)); |
| 5233 | for (Breakpoint& breakpoint : gBreakpoints) { |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 5234 | breakpoint.Method()->VisitRoots(root_visitor, kRuntimePointerSize); |
| Mathieu Chartier | a6b1ead | 2015-10-06 10:32:38 -0700 | [diff] [blame] | 5235 | } |
| 5236 | } |
| 5237 | |
| Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 5238 | void Dbg::DbgThreadLifecycleCallback::ThreadStart(Thread* self) { |
| 5239 | Dbg::PostThreadStart(self); |
| 5240 | } |
| 5241 | |
| 5242 | void Dbg::DbgThreadLifecycleCallback::ThreadDeath(Thread* self) { |
| 5243 | Dbg::PostThreadDeath(self); |
| 5244 | } |
| 5245 | |
| Andreas Gampe | 0f01b58 | 2017-01-18 15:22:37 -0800 | [diff] [blame] | 5246 | void Dbg::DbgClassLoadCallback::ClassLoad(Handle<mirror::Class> klass ATTRIBUTE_UNUSED) { |
| 5247 | // Ignore ClassLoad; |
| 5248 | } |
| 5249 | void Dbg::DbgClassLoadCallback::ClassPrepare(Handle<mirror::Class> temp_klass ATTRIBUTE_UNUSED, |
| 5250 | Handle<mirror::Class> klass) { |
| 5251 | Dbg::PostClassPrepare(klass.Get()); |
| 5252 | } |
| 5253 | |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 5254 | } // namespace art |