| 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 | |
| Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 26 | #include "android-base/stringprintf.h" |
| 27 | |
| Ian Rogers | 166db04 | 2013-07-26 12:05:57 -0700 | [diff] [blame] | 28 | #include "arch/context.h" |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 29 | #include "art_field-inl.h" |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 30 | #include "art_method-inl.h" |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 31 | #include "base/enums.h" |
| David Sehr | 67bf42e | 2018-02-26 16:43:04 -0800 | [diff] [blame] | 32 | #include "base/safe_map.h" |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 33 | #include "base/strlcpy.h" |
| Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 34 | #include "base/time_utils.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 35 | #include "class_linker-inl.h" |
| Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 36 | #include "class_linker.h" |
| David Sehr | b2ec9f5 | 2018-02-21 13:20:31 -0800 | [diff] [blame] | 37 | #include "dex/descriptors_names.h" |
| David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 38 | #include "dex/dex_file-inl.h" |
| 39 | #include "dex/dex_file_annotations.h" |
| 40 | #include "dex/dex_file_types.h" |
| 41 | #include "dex/dex_instruction.h" |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 42 | #include "dex/utf.h" |
| Mingyao Yang | 6ea1a0e | 2016-01-29 12:12:49 -0800 | [diff] [blame] | 43 | #include "entrypoints/runtime_asm_entrypoints.h" |
| Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 44 | #include "gc/accounting/card_table-inl.h" |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 45 | #include "gc/allocation_record.h" |
| Andreas Gampe | 94c589d | 2017-12-27 12:43:01 -0800 | [diff] [blame] | 46 | #include "gc/gc_cause.h" |
| Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 47 | #include "gc/scoped_gc_critical_section.h" |
| Andreas Gampe | 0c18338 | 2017-07-13 22:26:24 -0700 | [diff] [blame] | 48 | #include "gc/space/bump_pointer_space-walk-inl.h" |
| Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 49 | #include "gc/space/large_object_space.h" |
| 50 | #include "gc/space/space-inl.h" |
| Andreas Gampe | 513061a | 2017-06-01 09:17:34 -0700 | [diff] [blame] | 51 | #include "handle_scope-inl.h" |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 52 | #include "jdwp/jdwp_priv.h" |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 53 | #include "jdwp/object_registry.h" |
| Vladimir Marko | a3ad0cd | 2018-05-04 10:06:38 +0100 | [diff] [blame] | 54 | #include "jni/jni_internal.h" |
| Mathieu Chartier | 28bd2e4 | 2016-10-04 13:54:57 -0700 | [diff] [blame] | 55 | #include "jvalue-inl.h" |
| Andreas Gampe | 8e0f043 | 2018-10-24 13:38:03 -0700 | [diff] [blame] | 56 | #include "mirror/array-alloc-inl.h" |
| Andreas Gampe | 70f5fd0 | 2018-10-24 19:58:37 -0700 | [diff] [blame] | 57 | #include "mirror/class-alloc-inl.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 58 | #include "mirror/class-inl.h" |
| Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 59 | #include "mirror/class.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 60 | #include "mirror/class_loader.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 61 | #include "mirror/object-inl.h" |
| 62 | #include "mirror/object_array-inl.h" |
| Andreas Gampe | fd63bbf | 2018-10-29 12:55:35 -0700 | [diff] [blame] | 63 | #include "mirror/string-alloc-inl.h" |
| Ian Rogers | b0fa5dc | 2014-04-28 16:47:08 -0700 | [diff] [blame] | 64 | #include "mirror/string-inl.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 65 | #include "mirror/throwable.h" |
| Andreas Gampe | 373a9b5 | 2017-10-18 09:01:57 -0700 | [diff] [blame] | 66 | #include "nativehelper/scoped_local_ref.h" |
| 67 | #include "nativehelper/scoped_primitive_array.h" |
| Nicolas Geoffray | 58cc1cb | 2017-11-20 13:27:29 +0000 | [diff] [blame] | 68 | #include "oat_file.h" |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 69 | #include "obj_ptr-inl.h" |
| Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 70 | #include "reflection.h" |
| David Srbecky | 28f6cff | 2018-10-16 15:07:28 +0100 | [diff] [blame] | 71 | #include "runtime-inl.h" |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 72 | #include "scoped_thread_state_change-inl.h" |
| Andreas Gampe | 513061a | 2017-06-01 09:17:34 -0700 | [diff] [blame] | 73 | #include "stack.h" |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 74 | #include "thread_list.h" |
| Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 75 | #include "well_known_classes.h" |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 76 | |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 77 | namespace art { |
| 78 | |
| Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 79 | using android::base::StringPrintf; |
| 80 | |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 81 | // The key identifying the debugger to update instrumentation. |
| 82 | static constexpr const char* kDbgInstrumentationKey = "Debugger"; |
| 83 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 84 | // 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] | 85 | static uint16_t CappedAllocRecordCount(size_t alloc_record_count) { |
| Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 86 | const size_t cap = 0xffff; |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 87 | if (alloc_record_count > cap) { |
| 88 | return cap; |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 89 | } |
| 90 | return alloc_record_count; |
| 91 | } |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 92 | |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 93 | class Breakpoint : public ValueObject { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 94 | public: |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 95 | Breakpoint(ArtMethod* method, uint32_t dex_pc, DeoptimizationRequest::Kind deoptimization_kind) |
| Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 96 | : method_(method->GetCanonicalMethod(kRuntimePointerSize)), |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 97 | dex_pc_(dex_pc), |
| 98 | deoptimization_kind_(deoptimization_kind) { |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 99 | CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing || |
| 100 | deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization || |
| 101 | deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization); |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 102 | } |
| 103 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 104 | Breakpoint(const Breakpoint& other) REQUIRES_SHARED(Locks::mutator_lock_) |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 105 | : method_(other.method_), |
| 106 | dex_pc_(other.dex_pc_), |
| 107 | deoptimization_kind_(other.deoptimization_kind_) {} |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 108 | |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 109 | // Method() is called from root visiting, do not use ScopedObjectAccess here or it can cause |
| 110 | // GC to deadlock if another thread tries to call SuspendAll while the GC is in a runnable state. |
| 111 | ArtMethod* Method() const { |
| 112 | return method_; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | uint32_t DexPc() const { |
| 116 | return dex_pc_; |
| 117 | } |
| 118 | |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 119 | DeoptimizationRequest::Kind GetDeoptimizationKind() const { |
| 120 | return deoptimization_kind_; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 121 | } |
| 122 | |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 123 | // Returns true if the method of this breakpoint and the passed in method should be considered the |
| 124 | // 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] | 125 | bool IsInMethod(ArtMethod* m) const REQUIRES_SHARED(Locks::mutator_lock_) { |
| Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 126 | return method_ == m->GetCanonicalMethod(kRuntimePointerSize); |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 127 | } |
| 128 | |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 129 | private: |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 130 | // The location of this breakpoint. |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 131 | ArtMethod* method_; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 132 | uint32_t dex_pc_; |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 133 | |
| 134 | // Indicates whether breakpoint needs full deoptimization or selective deoptimization. |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 135 | DeoptimizationRequest::Kind deoptimization_kind_; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 136 | }; |
| 137 | |
| Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 138 | static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 139 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 140 | os << StringPrintf("Breakpoint[%s @%#x]", ArtMethod::PrettyMethod(rhs.Method()).c_str(), |
| 141 | rhs.DexPc()); |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 142 | return os; |
| 143 | } |
| 144 | |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 145 | class DebugInstrumentationListener final : public instrumentation::InstrumentationListener { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 146 | public: |
| 147 | DebugInstrumentationListener() {} |
| 148 | virtual ~DebugInstrumentationListener() {} |
| 149 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 150 | void MethodEntered(Thread* thread, |
| 151 | Handle<mirror::Object> this_object, |
| 152 | ArtMethod* method, |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 153 | uint32_t dex_pc) |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 154 | override REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 155 | if (method->IsNative()) { |
| 156 | // TODO: post location events is a suspension point and native method entry stubs aren't. |
| 157 | return; |
| 158 | } |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 159 | if (IsListeningToDexPcMoved()) { |
| 160 | // We also listen to kDexPcMoved instrumentation event so we know the DexPcMoved method is |
| 161 | // going to be called right after us. To avoid sending JDWP events twice for this location, |
| 162 | // we report the event in DexPcMoved. However, we must remind this is method entry so we |
| 163 | // send the METHOD_ENTRY event. And we can also group it with other events for this location |
| 164 | // like BREAKPOINT or SINGLE_STEP (or even METHOD_EXIT if this is a RETURN instruction). |
| 165 | thread->SetDebugMethodEntry(); |
| 166 | } else if (IsListeningToMethodExit() && IsReturn(method, dex_pc)) { |
| 167 | // We also listen to kMethodExited instrumentation event and the current instruction is a |
| 168 | // RETURN so we know the MethodExited method is going to be called right after us. To avoid |
| 169 | // sending JDWP events twice for this location, we report the event(s) in MethodExited. |
| 170 | // However, we must remind this is method entry so we send the METHOD_ENTRY event. And we can |
| 171 | // also group it with other events for this location like BREAKPOINT or SINGLE_STEP. |
| 172 | thread->SetDebugMethodEntry(); |
| 173 | } else { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 174 | Dbg::UpdateDebugger(thread, this_object.Get(), method, 0, Dbg::kMethodEntry, nullptr); |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 175 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 176 | } |
| 177 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 178 | void MethodExited(Thread* thread, |
| 179 | Handle<mirror::Object> this_object, |
| 180 | ArtMethod* method, |
| 181 | uint32_t dex_pc, |
| 182 | const JValue& return_value) |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 183 | override REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 184 | if (method->IsNative()) { |
| 185 | // TODO: post location events is a suspension point and native method entry stubs aren't. |
| 186 | return; |
| 187 | } |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 188 | uint32_t events = Dbg::kMethodExit; |
| 189 | if (thread->IsDebugMethodEntry()) { |
| 190 | // It is also the method entry. |
| 191 | DCHECK(IsReturn(method, dex_pc)); |
| 192 | events |= Dbg::kMethodEntry; |
| 193 | thread->ClearDebugMethodEntry(); |
| 194 | } |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 195 | Dbg::UpdateDebugger(thread, this_object.Get(), method, dex_pc, events, &return_value); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 196 | } |
| 197 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 198 | void MethodUnwind(Thread* thread ATTRIBUTE_UNUSED, |
| 199 | Handle<mirror::Object> this_object ATTRIBUTE_UNUSED, |
| 200 | ArtMethod* method, |
| 201 | uint32_t dex_pc) |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 202 | override REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 203 | // 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] | 204 | LOG(ERROR) << "Unexpected method unwind event in debugger " << ArtMethod::PrettyMethod(method) |
| Sebastien Hertz | 51db44a | 2013-11-19 10:00:29 +0100 | [diff] [blame] | 205 | << " " << dex_pc; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 206 | } |
| 207 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 208 | void DexPcMoved(Thread* thread, |
| 209 | Handle<mirror::Object> this_object, |
| 210 | ArtMethod* method, |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 211 | uint32_t new_dex_pc) |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 212 | override REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 213 | if (IsListeningToMethodExit() && IsReturn(method, new_dex_pc)) { |
| 214 | // We also listen to kMethodExited instrumentation event and the current instruction is a |
| 215 | // RETURN so we know the MethodExited method is going to be called right after us. Like in |
| 216 | // MethodEntered, we delegate event reporting to MethodExited. |
| 217 | // Besides, if this RETURN instruction is the only one in the method, we can send multiple |
| 218 | // JDWP events in the same packet: METHOD_ENTRY, METHOD_EXIT, BREAKPOINT and/or SINGLE_STEP. |
| 219 | // Therefore, we must not clear the debug method entry flag here. |
| 220 | } else { |
| 221 | uint32_t events = 0; |
| 222 | if (thread->IsDebugMethodEntry()) { |
| 223 | // It is also the method entry. |
| 224 | events = Dbg::kMethodEntry; |
| 225 | thread->ClearDebugMethodEntry(); |
| 226 | } |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 227 | Dbg::UpdateDebugger(thread, this_object.Get(), method, new_dex_pc, events, nullptr); |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 228 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 229 | } |
| 230 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 231 | void FieldRead(Thread* thread ATTRIBUTE_UNUSED, |
| 232 | Handle<mirror::Object> this_object, |
| 233 | ArtMethod* method, |
| 234 | uint32_t dex_pc, |
| 235 | ArtField* field) |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 236 | override REQUIRES_SHARED(Locks::mutator_lock_) { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 237 | Dbg::PostFieldAccessEvent(method, dex_pc, this_object.Get(), field); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 238 | } |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 239 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 240 | void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, |
| 241 | Handle<mirror::Object> this_object, |
| 242 | ArtMethod* method, |
| 243 | uint32_t dex_pc, |
| 244 | ArtField* field, |
| Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 245 | const JValue& field_value) |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 246 | override REQUIRES_SHARED(Locks::mutator_lock_) { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 247 | Dbg::PostFieldModificationEvent(method, dex_pc, this_object.Get(), field, &field_value); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 248 | } |
| 249 | |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 250 | void ExceptionThrown(Thread* thread ATTRIBUTE_UNUSED, |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 251 | Handle<mirror::Throwable> exception_object) |
| 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::PostException(exception_object.Get()); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 254 | } |
| 255 | |
| Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 256 | // We only care about branches in the Jit. |
| 257 | 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] | 258 | override REQUIRES_SHARED(Locks::mutator_lock_) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 259 | LOG(ERROR) << "Unexpected branch event in debugger " << ArtMethod::PrettyMethod(method) |
| Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 260 | << " " << dex_pc << ", " << dex_pc_offset; |
| Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 261 | } |
| 262 | |
| Alex Light | 798eab0 | 2017-08-23 12:54:53 -0700 | [diff] [blame] | 263 | // TODO Might be worth it to post ExceptionCatch event. |
| 264 | void ExceptionHandled(Thread* thread ATTRIBUTE_UNUSED, |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 265 | Handle<mirror::Throwable> throwable ATTRIBUTE_UNUSED) override { |
| Alex Light | 798eab0 | 2017-08-23 12:54:53 -0700 | [diff] [blame] | 266 | LOG(ERROR) << "Unexpected exception handled event in debugger"; |
| 267 | } |
| 268 | |
| Alex Light | 05f4774 | 2017-09-14 00:34:44 +0000 | [diff] [blame] | 269 | // TODO Might be worth it to implement this. |
| 270 | void WatchedFramePop(Thread* thread ATTRIBUTE_UNUSED, |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 271 | const ShadowFrame& frame ATTRIBUTE_UNUSED) override { |
| Alex Light | 05f4774 | 2017-09-14 00:34:44 +0000 | [diff] [blame] | 272 | LOG(ERROR) << "Unexpected WatchedFramePop event in debugger"; |
| 273 | } |
| Alex Light | 798eab0 | 2017-08-23 12:54:53 -0700 | [diff] [blame] | 274 | |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 275 | private: |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 276 | static bool IsReturn(ArtMethod* method, uint32_t dex_pc) REQUIRES_SHARED(Locks::mutator_lock_) { |
| 277 | return method->DexInstructions().InstructionAt(dex_pc).IsReturn(); |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 278 | } |
| 279 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 280 | static bool IsListeningToDexPcMoved() REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 281 | return IsListeningTo(instrumentation::Instrumentation::kDexPcMoved); |
| 282 | } |
| 283 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 284 | static bool IsListeningToMethodExit() REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 285 | return IsListeningTo(instrumentation::Instrumentation::kMethodExited); |
| 286 | } |
| 287 | |
| 288 | static bool IsListeningTo(instrumentation::Instrumentation::InstrumentationEvent event) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 289 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 290 | return (Dbg::GetInstrumentationEvents() & event) != 0; |
| 291 | } |
| 292 | |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 293 | DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 294 | } gDebugInstrumentationListener; |
| 295 | |
| Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 296 | // JDWP is allowed unless the Zygote forbids it. |
| 297 | static bool gJdwpAllowed = true; |
| 298 | |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 299 | // Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line? |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 300 | static bool gJdwpConfigured = false; |
| 301 | |
| Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 302 | // JDWP options for debugging. Only valid if IsJdwpConfigured() is true. |
| 303 | static JDWP::JdwpOptions gJdwpOptions; |
| 304 | |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 305 | // Runtime JDWP state. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 306 | static JDWP::JdwpState* gJdwpState = nullptr; |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 307 | static bool gDebuggerConnected; // debugger or DDMS is connected. |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 308 | |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 309 | static bool gDdmThreadNotification = false; |
| 310 | |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 311 | // DDMS GC-related settings. |
| 312 | static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER; |
| 313 | static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER; |
| 314 | static Dbg::HpsgWhat gDdmHpsgWhat; |
| 315 | static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER; |
| 316 | static Dbg::HpsgWhat gDdmNhsgWhat; |
| 317 | |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 318 | bool Dbg::gDebuggerActive = false; |
| Sebastien Hertz | 4e5b208 | 2015-03-24 19:03:40 +0100 | [diff] [blame] | 319 | bool Dbg::gDisposed = false; |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 320 | ObjectRegistry* Dbg::gRegistry = nullptr; |
| Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 321 | DebuggerActiveMethodInspectionCallback Dbg::gDebugActiveCallback; |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 322 | DebuggerDdmCallback Dbg::gDebugDdmCallback; |
| Alex Light | 4032071 | 2017-12-14 11:52:04 -0800 | [diff] [blame] | 323 | InternalDebuggerControlCallback Dbg::gDebuggerControlCallback; |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 324 | |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 325 | // Deoptimization support. |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 326 | std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_; |
| 327 | size_t Dbg::full_deoptimization_event_count_ = 0; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 328 | |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 329 | // Instrumentation event reference counters. |
| 330 | size_t Dbg::dex_pc_change_event_ref_count_ = 0; |
| 331 | size_t Dbg::method_enter_event_ref_count_ = 0; |
| 332 | size_t Dbg::method_exit_event_ref_count_ = 0; |
| 333 | size_t Dbg::field_read_event_ref_count_ = 0; |
| 334 | size_t Dbg::field_write_event_ref_count_ = 0; |
| 335 | size_t Dbg::exception_catch_event_ref_count_ = 0; |
| 336 | uint32_t Dbg::instrumentation_events_ = 0; |
| 337 | |
| Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 338 | Dbg::DbgThreadLifecycleCallback Dbg::thread_lifecycle_callback_; |
| Andreas Gampe | 0f01b58 | 2017-01-18 15:22:37 -0800 | [diff] [blame] | 339 | Dbg::DbgClassLoadCallback Dbg::class_load_callback_; |
| Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 340 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 341 | void DebuggerDdmCallback::DdmPublishChunk(uint32_t type, const ArrayRef<const uint8_t>& data) { |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 342 | if (gJdwpState == nullptr) { |
| 343 | VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type; |
| 344 | } else { |
| 345 | iovec vec[1]; |
| 346 | vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(data.data())); |
| 347 | vec[0].iov_len = data.size(); |
| 348 | gJdwpState->DdmSendChunkV(type, vec, 1); |
| 349 | } |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 350 | } |
| 351 | |
| Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 352 | bool DebuggerActiveMethodInspectionCallback::IsMethodBeingInspected(ArtMethod* m ATTRIBUTE_UNUSED) { |
| 353 | return Dbg::IsDebuggerActive(); |
| 354 | } |
| 355 | |
| Alex Light | 0fa1786 | 2017-10-24 13:43:05 -0700 | [diff] [blame] | 356 | bool DebuggerActiveMethodInspectionCallback::IsMethodSafeToJit(ArtMethod* m) { |
| 357 | return !Dbg::MethodHasAnyBreakpoints(m); |
| 358 | } |
| 359 | |
| Alex Light | f285863 | 2018-04-02 11:28:50 -0700 | [diff] [blame] | 360 | bool DebuggerActiveMethodInspectionCallback::MethodNeedsDebugVersion( |
| 361 | ArtMethod* m ATTRIBUTE_UNUSED) { |
| 362 | return Dbg::IsDebuggerActive(); |
| 363 | } |
| 364 | |
| Alex Light | 4032071 | 2017-12-14 11:52:04 -0800 | [diff] [blame] | 365 | void InternalDebuggerControlCallback::StartDebugger() { |
| 366 | // Release the mutator lock. |
| 367 | ScopedThreadStateChange stsc(art::Thread::Current(), kNative); |
| 368 | Dbg::StartJdwp(); |
| 369 | } |
| 370 | |
| 371 | void InternalDebuggerControlCallback::StopDebugger() { |
| 372 | Dbg::StopJdwp(); |
| 373 | } |
| 374 | |
| 375 | bool InternalDebuggerControlCallback::IsDebuggerConfigured() { |
| 376 | return Dbg::IsJdwpConfigured(); |
| 377 | } |
| 378 | |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 379 | // Breakpoints. |
| jeffhao | 09bfc6a | 2012-12-11 18:11:43 -0800 | [diff] [blame] | 380 | static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_); |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 381 | |
| Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 382 | void DebugInvokeReq::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) { |
| 383 | receiver.VisitRootIfNonNull(visitor, root_info); // null for static method call. |
| 384 | klass.VisitRoot(visitor, root_info); |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 385 | } |
| 386 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 387 | void SingleStepControl::AddDexPc(uint32_t dex_pc) { |
| 388 | dex_pcs_.insert(dex_pc); |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 389 | } |
| 390 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 391 | bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const { |
| 392 | return dex_pcs_.find(dex_pc) == dex_pcs_.end(); |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 393 | } |
| 394 | |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 395 | static bool IsBreakpoint(ArtMethod* m, uint32_t dex_pc) |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 396 | REQUIRES(!Locks::breakpoint_lock_) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 397 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 398 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 399 | for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) { |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 400 | if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].IsInMethod(m)) { |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 401 | VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i]; |
| 402 | return true; |
| 403 | } |
| 404 | } |
| 405 | return false; |
| 406 | } |
| 407 | |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 408 | static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread) |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 409 | REQUIRES(!Locks::thread_suspend_count_lock_) { |
| Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 410 | MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_); |
| 411 | // A thread may be suspended for GC; in this code, we really want to know whether |
| 412 | // there's a debugger suspension active. |
| 413 | return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0; |
| 414 | } |
| 415 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 416 | static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 417 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 418 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 419 | if (o == nullptr) { |
| 420 | *error = JDWP::ERR_INVALID_OBJECT; |
| 421 | return nullptr; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 422 | } |
| 423 | if (!o->IsArrayInstance()) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 424 | *error = JDWP::ERR_INVALID_ARRAY; |
| 425 | return nullptr; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 426 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 427 | *error = JDWP::ERR_NONE; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 428 | return o->AsArray(); |
| 429 | } |
| 430 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 431 | static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 432 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 433 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 434 | if (o == nullptr) { |
| 435 | *error = JDWP::ERR_INVALID_OBJECT; |
| 436 | return nullptr; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 437 | } |
| 438 | if (!o->IsClass()) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 439 | *error = JDWP::ERR_INVALID_CLASS; |
| 440 | return nullptr; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 441 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 442 | *error = JDWP::ERR_NONE; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 443 | return o->AsClass(); |
| 444 | } |
| 445 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 446 | static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, |
| 447 | JDWP::JdwpError* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 448 | REQUIRES_SHARED(Locks::mutator_lock_) |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 449 | REQUIRES(!Locks::thread_list_lock_, !Locks::thread_suspend_count_lock_) { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 450 | mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 451 | if (thread_peer == nullptr) { |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 452 | // This isn't even an object. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 453 | *error = JDWP::ERR_INVALID_OBJECT; |
| 454 | return nullptr; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 455 | } |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 456 | |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 457 | ObjPtr<mirror::Class> java_lang_Thread = |
| 458 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 459 | if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) { |
| 460 | // This isn't a thread. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 461 | *error = JDWP::ERR_INVALID_THREAD; |
| 462 | return nullptr; |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 463 | } |
| 464 | |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 465 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 466 | Thread* thread = Thread::FromManagedThread(soa, thread_peer); |
| 467 | // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a |
| 468 | // zombie. |
| 469 | *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE; |
| 470 | return thread; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 471 | } |
| 472 | |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 473 | static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) { |
| 474 | // JDWP deliberately uses the descriptor characters' ASCII values for its enum. |
| 475 | // Note that by "basic" we mean that we don't get more specific than JT_OBJECT. |
| 476 | return static_cast<JDWP::JdwpTag>(descriptor[0]); |
| 477 | } |
| 478 | |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 479 | static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 480 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 481 | std::string temp; |
| 482 | const char* descriptor = klass->GetDescriptor(&temp); |
| 483 | return BasicTagFromDescriptor(descriptor); |
| 484 | } |
| 485 | |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 486 | static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 487 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 488 | CHECK(c != nullptr); |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 489 | if (c->IsArrayClass()) { |
| 490 | return JDWP::JT_ARRAY; |
| 491 | } |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 492 | if (c->IsStringClass()) { |
| 493 | return JDWP::JT_STRING; |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 494 | } |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 495 | if (c->IsClassClass()) { |
| 496 | return JDWP::JT_CLASS_OBJECT; |
| 497 | } |
| 498 | { |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 499 | ObjPtr<mirror::Class> thread_class = |
| 500 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 501 | if (thread_class->IsAssignableFrom(c)) { |
| 502 | return JDWP::JT_THREAD; |
| 503 | } |
| 504 | } |
| 505 | { |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 506 | ObjPtr<mirror::Class> thread_group_class = |
| 507 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ThreadGroup); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 508 | if (thread_group_class->IsAssignableFrom(c)) { |
| 509 | return JDWP::JT_THREAD_GROUP; |
| 510 | } |
| 511 | } |
| 512 | { |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 513 | ObjPtr<mirror::Class> class_loader_class = |
| 514 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ClassLoader); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 515 | if (class_loader_class->IsAssignableFrom(c)) { |
| 516 | return JDWP::JT_CLASS_LOADER; |
| 517 | } |
| 518 | } |
| 519 | return JDWP::JT_OBJECT; |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 520 | } |
| 521 | |
| 522 | /* |
| 523 | * Objects declared to hold Object might actually hold a more specific |
| 524 | * type. The debugger may take a special interest in these (e.g. it |
| 525 | * wants to display the contents of Strings), so we want to return an |
| 526 | * appropriate tag. |
| 527 | * |
| 528 | * Null objects are tagged JT_OBJECT. |
| 529 | */ |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 530 | JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 531 | return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass()); |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | static bool IsPrimitiveTag(JDWP::JdwpTag tag) { |
| 535 | switch (tag) { |
| 536 | case JDWP::JT_BOOLEAN: |
| 537 | case JDWP::JT_BYTE: |
| 538 | case JDWP::JT_CHAR: |
| 539 | case JDWP::JT_FLOAT: |
| 540 | case JDWP::JT_DOUBLE: |
| 541 | case JDWP::JT_INT: |
| 542 | case JDWP::JT_LONG: |
| 543 | case JDWP::JT_SHORT: |
| 544 | case JDWP::JT_VOID: |
| 545 | return true; |
| 546 | default: |
| 547 | return false; |
| 548 | } |
| 549 | } |
| 550 | |
| Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 551 | void Dbg::StartJdwp() { |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 552 | if (!gJdwpAllowed || !IsJdwpConfigured()) { |
| Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 553 | // No JDWP for you! |
| 554 | return; |
| 555 | } |
| 556 | |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 557 | CHECK(gRegistry == nullptr); |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 558 | gRegistry = new ObjectRegistry; |
| 559 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 560 | { |
| 561 | // Setup the Ddm listener |
| 562 | ScopedObjectAccess soa(Thread::Current()); |
| 563 | Runtime::Current()->GetRuntimeCallbacks()->AddDdmCallback(&gDebugDdmCallback); |
| 564 | } |
| 565 | |
| Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 566 | // Init JDWP if the debugger is enabled. This may connect out to a |
| 567 | // debugger, passively listen for a debugger, or block waiting for a |
| 568 | // debugger. |
| Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 569 | gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 570 | if (gJdwpState == nullptr) { |
| Elliott Hughes | f8a2df7 | 2011-12-01 12:19:54 -0800 | [diff] [blame] | 571 | // We probably failed because some other process has the port already, which means that |
| 572 | // if we don't abort the user is likely to think they're talking to us when they're actually |
| 573 | // talking to that other process. |
| Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 574 | LOG(FATAL) << "Debugger thread failed to initialize"; |
| Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | // If a debugger has already attached, send the "welcome" message. |
| 578 | // This may cause us to suspend all threads. |
| Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 579 | if (gJdwpState->IsActive()) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 580 | ScopedObjectAccess soa(Thread::Current()); |
| Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 581 | gJdwpState->PostVMStart(); |
| Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 582 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 583 | } |
| 584 | |
| Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 585 | void Dbg::StopJdwp() { |
| Sebastien Hertz | c6345ef | 2014-08-18 19:26:39 +0200 | [diff] [blame] | 586 | // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the |
| 587 | // destruction of gJdwpState). |
| 588 | if (gJdwpState != nullptr && gJdwpState->IsActive()) { |
| 589 | gJdwpState->PostVMDeath(); |
| 590 | } |
| Sebastien Hertz | 0376e6b | 2014-02-06 18:12:59 +0100 | [diff] [blame] | 591 | // 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] | 592 | Dispose(); |
| Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 593 | delete gJdwpState; |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 594 | gJdwpState = nullptr; |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 595 | delete gRegistry; |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 596 | gRegistry = nullptr; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 597 | } |
| 598 | |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 599 | void Dbg::GcDidFinish() { |
| 600 | if (gDdmHpifWhen != HPIF_WHEN_NEVER) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 601 | ScopedObjectAccess soa(Thread::Current()); |
| Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 602 | VLOG(jdwp) << "Sending heap info to DDM"; |
| Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 603 | DdmSendHeapInfo(gDdmHpifWhen); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 604 | } |
| 605 | if (gDdmHpsgWhen != HPSG_WHEN_NEVER) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 606 | ScopedObjectAccess soa(Thread::Current()); |
| Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 607 | VLOG(jdwp) << "Dumping heap to DDM"; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 608 | DdmSendHeapSegments(false); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 609 | } |
| 610 | if (gDdmNhsgWhen != HPSG_WHEN_NEVER) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 611 | ScopedObjectAccess soa(Thread::Current()); |
| Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 612 | VLOG(jdwp) << "Dumping native heap to DDM"; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 613 | DdmSendHeapSegments(true); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 614 | } |
| 615 | } |
| 616 | |
| Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 617 | void Dbg::SetJdwpAllowed(bool allowed) { |
| 618 | gJdwpAllowed = allowed; |
| 619 | } |
| 620 | |
| Leonard Mosescu | eb84221 | 2016-10-06 17:26:36 -0700 | [diff] [blame] | 621 | bool Dbg::IsJdwpAllowed() { |
| 622 | return gJdwpAllowed; |
| 623 | } |
| 624 | |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 625 | DebugInvokeReq* Dbg::GetInvokeReq() { |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 626 | return Thread::Current()->GetInvokeReq(); |
| 627 | } |
| 628 | |
| 629 | Thread* Dbg::GetDebugThread() { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 630 | return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr; |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 631 | } |
| 632 | |
| 633 | void Dbg::ClearWaitForEventThread() { |
| Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 634 | gJdwpState->ReleaseJdwpTokenForEvent(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 635 | } |
| 636 | |
| 637 | void Dbg::Connected() { |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 638 | CHECK(!gDebuggerConnected); |
| Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 639 | VLOG(jdwp) << "JDWP has attached"; |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 640 | gDebuggerConnected = true; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 641 | gDisposed = false; |
| 642 | } |
| 643 | |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 644 | bool Dbg::RequiresDeoptimization() { |
| 645 | // We don't need deoptimization if everything runs with interpreter after |
| 646 | // enabling -Xint mode. |
| 647 | return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly(); |
| 648 | } |
| 649 | |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 650 | void Dbg::GoActive() { |
| 651 | // Enable all debugging features, including scans for breakpoints. |
| 652 | // This is a no-op if we're already active. |
| 653 | // Only called from the JDWP handler thread. |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 654 | if (IsDebuggerActive()) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 655 | return; |
| 656 | } |
| 657 | |
| Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 658 | Thread* const self = Thread::Current(); |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 659 | { |
| 660 | // 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] | 661 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 662 | CHECK_EQ(gBreakpoints.size(), 0U); |
| 663 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 664 | |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 665 | { |
| Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 666 | MutexLock mu(self, *Locks::deoptimization_lock_); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 667 | CHECK_EQ(deoptimization_requests_.size(), 0U); |
| 668 | CHECK_EQ(full_deoptimization_event_count_, 0U); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 669 | CHECK_EQ(dex_pc_change_event_ref_count_, 0U); |
| 670 | CHECK_EQ(method_enter_event_ref_count_, 0U); |
| 671 | CHECK_EQ(method_exit_event_ref_count_, 0U); |
| 672 | CHECK_EQ(field_read_event_ref_count_, 0U); |
| 673 | CHECK_EQ(field_write_event_ref_count_, 0U); |
| 674 | CHECK_EQ(exception_catch_event_ref_count_, 0U); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 675 | } |
| 676 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 677 | Runtime* runtime = Runtime::Current(); |
| Nicolas Geoffray | 433b79a | 2017-01-30 20:54:45 +0000 | [diff] [blame] | 678 | // Best effort deoptimization if the runtime is non-Java debuggable. This happens when |
| 679 | // ro.debuggable is set, but the application is not debuggable, or when a standalone |
| 680 | // dalvikvm invocation is not passed the debuggable option (-Xcompiler-option --debuggable). |
| 681 | // |
| 682 | // 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] | 683 | // forced JIT, so we keep the AOT code in that case in exchange for limited native debugging. |
| Nicolas Geoffray | 433b79a | 2017-01-30 20:54:45 +0000 | [diff] [blame] | 684 | if (!runtime->IsJavaDebuggable() && |
| 685 | !runtime->GetInstrumentation()->IsForcedInterpretOnly() && |
| 686 | !runtime->IsNativeDebuggable()) { |
| 687 | runtime->DeoptimizeBootImage(); |
| Mingyao Yang | 6ea1a0e | 2016-01-29 12:12:49 -0800 | [diff] [blame] | 688 | } |
| 689 | |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 690 | ScopedSuspendAll ssa(__FUNCTION__); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 691 | if (RequiresDeoptimization()) { |
| 692 | runtime->GetInstrumentation()->EnableDeoptimization(); |
| 693 | } |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 694 | instrumentation_events_ = 0; |
| David Srbecky | 28f6cff | 2018-10-16 15:07:28 +0100 | [diff] [blame] | 695 | Runtime::DoAndMaybeSwitchInterpreter([=](){ gDebuggerActive = true; }); |
| Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 696 | Runtime::Current()->GetRuntimeCallbacks()->AddMethodInspectionCallback(&gDebugActiveCallback); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 697 | LOG(INFO) << "Debugger is active"; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 698 | } |
| 699 | |
| 700 | void Dbg::Disconnected() { |
| Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 701 | CHECK(gDebuggerConnected); |
| 702 | |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 703 | LOG(INFO) << "Debugger is no longer active"; |
| Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 704 | |
| Hiroshi Yamauchi | 98810e3 | 2016-05-24 14:55:40 -0700 | [diff] [blame] | 705 | // 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] | 706 | // and clear the object registry. |
| 707 | Runtime* runtime = Runtime::Current(); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 708 | Thread* self = Thread::Current(); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 709 | { |
| Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 710 | // Required for DisableDeoptimization. |
| 711 | gc::ScopedGCCriticalSection gcs(self, |
| 712 | gc::kGcCauseInstrumentation, |
| 713 | gc::kCollectorTypeInstrumentation); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 714 | ScopedSuspendAll ssa(__FUNCTION__); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 715 | // Debugger may not be active at this point. |
| 716 | if (IsDebuggerActive()) { |
| 717 | { |
| 718 | // Since we're going to disable deoptimization, we clear the deoptimization requests queue. |
| 719 | // This prevents us from having any pending deoptimization request when the debugger attaches |
| 720 | // to us again while no event has been requested yet. |
| Mathieu Chartier | a6b1ead | 2015-10-06 10:32:38 -0700 | [diff] [blame] | 721 | MutexLock mu(self, *Locks::deoptimization_lock_); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 722 | deoptimization_requests_.clear(); |
| 723 | full_deoptimization_event_count_ = 0U; |
| 724 | } |
| 725 | if (instrumentation_events_ != 0) { |
| 726 | runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener, |
| 727 | instrumentation_events_); |
| 728 | instrumentation_events_ = 0; |
| 729 | } |
| 730 | if (RequiresDeoptimization()) { |
| 731 | runtime->GetInstrumentation()->DisableDeoptimization(kDbgInstrumentationKey); |
| 732 | } |
| David Srbecky | 28f6cff | 2018-10-16 15:07:28 +0100 | [diff] [blame] | 733 | Runtime::DoAndMaybeSwitchInterpreter([=](){ gDebuggerActive = false; }); |
| Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 734 | Runtime::Current()->GetRuntimeCallbacks()->RemoveMethodInspectionCallback( |
| 735 | &gDebugActiveCallback); |
| Sebastien Hertz | aaea734 | 2014-02-25 15:10:04 +0100 | [diff] [blame] | 736 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 737 | } |
| Sebastien Hertz | 55f6534 | 2015-01-13 22:48:34 +0100 | [diff] [blame] | 738 | |
| 739 | { |
| 740 | ScopedObjectAccess soa(self); |
| 741 | gRegistry->Clear(); |
| 742 | } |
| 743 | |
| 744 | gDebuggerConnected = false; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 745 | } |
| 746 | |
| Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 747 | void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) { |
| 748 | CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown); |
| 749 | gJdwpOptions = jdwp_options; |
| 750 | gJdwpConfigured = true; |
| Alex Light | 4032071 | 2017-12-14 11:52:04 -0800 | [diff] [blame] | 751 | Runtime::Current()->GetRuntimeCallbacks()->AddDebuggerControlCallback(&gDebuggerControlCallback); |
| Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 752 | } |
| 753 | |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 754 | bool Dbg::IsJdwpConfigured() { |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 755 | return gJdwpConfigured; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 756 | } |
| 757 | |
| 758 | int64_t Dbg::LastDebuggerActivity() { |
| Elliott Hughes | ca95152 | 2011-12-05 12:01:32 -0800 | [diff] [blame] | 759 | return gJdwpState->LastDebuggerActivity(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 760 | } |
| 761 | |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 762 | void Dbg::UndoDebuggerSuspensions() { |
| Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 763 | Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 764 | } |
| 765 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 766 | std::string Dbg::GetClassName(JDWP::RefTypeId class_id) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 767 | JDWP::JdwpError error; |
| 768 | mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error); |
| 769 | if (o == nullptr) { |
| 770 | if (error == JDWP::ERR_NONE) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 771 | return "null"; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 772 | } else { |
| 773 | return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id)); |
| 774 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 775 | } |
| 776 | if (!o->IsClass()) { |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 777 | return StringPrintf("non-class %p", o); // This is only used for debugging output anyway. |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 778 | } |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 779 | return GetClassName(o->AsClass()); |
| 780 | } |
| 781 | |
| 782 | std::string Dbg::GetClassName(mirror::Class* klass) { |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 783 | if (klass == nullptr) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 784 | return "null"; |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 785 | } |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 786 | std::string temp; |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 787 | return DescriptorToName(klass->GetDescriptor(&temp)); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 788 | } |
| 789 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 790 | JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) { |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 791 | JDWP::JdwpError status; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 792 | mirror::Class* c = DecodeClass(id, &status); |
| 793 | if (c == nullptr) { |
| 794 | *class_object_id = 0; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 795 | return status; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 796 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 797 | *class_object_id = gRegistry->Add(c); |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 798 | return JDWP::ERR_NONE; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 799 | } |
| 800 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 801 | JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) { |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 802 | JDWP::JdwpError status; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 803 | mirror::Class* c = DecodeClass(id, &status); |
| 804 | if (c == nullptr) { |
| 805 | *superclass_id = 0; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 806 | return status; |
| 807 | } |
| 808 | if (c->IsInterface()) { |
| 809 | // http://code.google.com/p/android/issues/detail?id=20856 |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 810 | *superclass_id = 0; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 811 | } else { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 812 | *superclass_id = gRegistry->Add(c->GetSuperClass()); |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 813 | } |
| 814 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 815 | } |
| 816 | |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 817 | JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 818 | JDWP::JdwpError error; |
| Andreas Gampe | 7929a48 | 2015-12-30 19:33:49 -0800 | [diff] [blame] | 819 | mirror::Class* c = DecodeClass(id, &error); |
| 820 | if (c == nullptr) { |
| 821 | return error; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 822 | } |
| Andreas Gampe | 7929a48 | 2015-12-30 19:33:49 -0800 | [diff] [blame] | 823 | expandBufAddObjectId(pReply, gRegistry->Add(c->GetClassLoader())); |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 824 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 825 | } |
| 826 | |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 827 | JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 828 | JDWP::JdwpError error; |
| 829 | mirror::Class* c = DecodeClass(id, &error); |
| 830 | if (c == nullptr) { |
| 831 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 832 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 833 | |
| 834 | uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask; |
| 835 | |
| Yevgeny Rouban | de34eea | 2014-02-15 01:06:03 +0700 | [diff] [blame] | 836 | // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set, |
| 837 | // not interfaces. |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 838 | // 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] | 839 | if ((access_flags & kAccInterface) == 0) { |
| 840 | access_flags |= kAccSuper; |
| 841 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 842 | |
| 843 | expandBufAdd4BE(pReply, access_flags); |
| 844 | |
| 845 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 846 | } |
| 847 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 848 | JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) { |
| 849 | JDWP::JdwpError error; |
| 850 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 851 | if (o == nullptr) { |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 852 | return JDWP::ERR_INVALID_OBJECT; |
| 853 | } |
| 854 | |
| 855 | // Ensure all threads are suspended while we read objects' lock words. |
| 856 | Thread* self = Thread::Current(); |
| Sebastien Hertz | 5426324 | 2014-03-19 18:16:50 +0100 | [diff] [blame] | 857 | CHECK_EQ(self->GetState(), kRunnable); |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 858 | |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 859 | MonitorInfo monitor_info; |
| 860 | { |
| 861 | ScopedThreadSuspension sts(self, kSuspended); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 862 | ScopedSuspendAll ssa(__FUNCTION__); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 863 | monitor_info = MonitorInfo(o); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 864 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 865 | if (monitor_info.owner_ != nullptr) { |
| Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 866 | expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeerFromOtherThread())); |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 867 | } else { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 868 | expandBufAddObjectId(reply, gRegistry->Add(nullptr)); |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 869 | } |
| Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 870 | expandBufAdd4BE(reply, monitor_info.entry_count_); |
| 871 | expandBufAdd4BE(reply, monitor_info.waiters_.size()); |
| 872 | for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) { |
| Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 873 | expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeerFromOtherThread())); |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 874 | } |
| 875 | return JDWP::ERR_NONE; |
| 876 | } |
| 877 | |
| Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 878 | JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 879 | std::vector<JDWP::ObjectId>* monitors, |
| 880 | std::vector<uint32_t>* stack_depths) { |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 881 | struct OwnedMonitorVisitor : public StackVisitor { |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 882 | OwnedMonitorVisitor(Thread* thread, Context* context, |
| Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 883 | std::vector<JDWP::ObjectId>* monitor_vector, |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 884 | std::vector<uint32_t>* stack_depth_vector) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 885 | REQUIRES_SHARED(Locks::mutator_lock_) |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 886 | : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 887 | current_stack_depth(0), |
| 888 | monitors(monitor_vector), |
| 889 | stack_depths(stack_depth_vector) {} |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 890 | |
| 891 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 892 | // annotalysis. |
| Andreas Gampe | fa6a1b0 | 2018-09-07 08:11:55 -0700 | [diff] [blame] | 893 | bool VisitFrame() override NO_THREAD_SAFETY_ANALYSIS { |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 894 | if (!GetMethod()->IsRuntimeMethod()) { |
| 895 | Monitor::VisitLocks(this, AppendOwnedMonitors, this); |
| Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 896 | ++current_stack_depth; |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 897 | } |
| 898 | return true; |
| 899 | } |
| 900 | |
| Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 901 | static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 902 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 903 | OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg); |
| Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 904 | visitor->monitors->push_back(gRegistry->Add(owned_monitor)); |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 905 | visitor->stack_depths->push_back(visitor->current_stack_depth); |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 906 | } |
| 907 | |
| Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 908 | size_t current_stack_depth; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 909 | std::vector<JDWP::ObjectId>* const monitors; |
| 910 | std::vector<uint32_t>* const stack_depths; |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 911 | }; |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 912 | |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 913 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 914 | JDWP::JdwpError error; |
| 915 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 916 | if (thread == nullptr) { |
| 917 | return error; |
| 918 | } |
| 919 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 920 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 921 | } |
| Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 922 | std::unique_ptr<Context> context(Context::Create()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 923 | OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths); |
| Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 924 | visitor.WalkStack(); |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 925 | return JDWP::ERR_NONE; |
| 926 | } |
| 927 | |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 928 | JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 929 | JDWP::ObjectId* contended_monitor) { |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 930 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 931 | *contended_monitor = 0; |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 932 | JDWP::JdwpError error; |
| 933 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 934 | if (thread == nullptr) { |
| 935 | return error; |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 936 | } |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 937 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 938 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 939 | } |
| 940 | mirror::Object* contended_monitor_obj = Monitor::GetContendedMonitor(thread); |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 941 | // Add() requires the thread_list_lock_ not held to avoid the lock |
| 942 | // level violation. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 943 | *contended_monitor = gRegistry->Add(contended_monitor_obj); |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 944 | return JDWP::ERR_NONE; |
| 945 | } |
| 946 | |
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 947 | JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 948 | std::vector<uint64_t>* counts) { |
| Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 949 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 950 | heap->CollectGarbage(/* clear_soft_references= */ false, gc::GcCause::kGcCauseDebugger); |
| Mathieu Chartier | e8a3c57 | 2016-10-11 16:52:17 -0700 | [diff] [blame] | 951 | VariableSizedHandleScope hs(Thread::Current()); |
| Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 952 | std::vector<Handle<mirror::Class>> classes; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 953 | counts->clear(); |
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 954 | for (size_t i = 0; i < class_ids.size(); ++i) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 955 | JDWP::JdwpError error; |
| Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 956 | ObjPtr<mirror::Class> c = DecodeClass(class_ids[i], &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 957 | if (c == nullptr) { |
| 958 | return error; |
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 959 | } |
| Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 960 | classes.push_back(hs.NewHandle(c)); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 961 | counts->push_back(0); |
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 962 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 963 | heap->CountInstances(classes, false, &(*counts)[0]); |
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 964 | return JDWP::ERR_NONE; |
| 965 | } |
| 966 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 967 | JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, |
| 968 | std::vector<JDWP::ObjectId>* instances) { |
| Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 969 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 970 | // We only want reachable instances, so do a GC. |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 971 | heap->CollectGarbage(/* clear_soft_references= */ false, gc::GcCause::kGcCauseDebugger); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 972 | JDWP::JdwpError error; |
| Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 973 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
| Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 974 | if (c == nullptr) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 975 | return error; |
| Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 976 | } |
| Mathieu Chartier | 2d85595 | 2016-10-12 19:37:59 -0700 | [diff] [blame] | 977 | VariableSizedHandleScope hs(Thread::Current()); |
| 978 | std::vector<Handle<mirror::Object>> raw_instances; |
| Richard Uhler | 660be6f | 2017-11-22 16:12:29 +0000 | [diff] [blame] | 979 | Runtime::Current()->GetHeap()->GetInstances(hs, |
| 980 | hs.NewHandle(c), |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 981 | /* use_is_assignable_from= */ false, |
| Richard Uhler | 660be6f | 2017-11-22 16:12:29 +0000 | [diff] [blame] | 982 | max_count, |
| 983 | raw_instances); |
| Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 984 | for (size_t i = 0; i < raw_instances.size(); ++i) { |
| Mathieu Chartier | 2d85595 | 2016-10-12 19:37:59 -0700 | [diff] [blame] | 985 | instances->push_back(gRegistry->Add(raw_instances[i].Get())); |
| Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 986 | } |
| 987 | return JDWP::ERR_NONE; |
| 988 | } |
| 989 | |
| Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 990 | JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 991 | std::vector<JDWP::ObjectId>* referring_objects) { |
| Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 992 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 993 | heap->CollectGarbage(/* clear_soft_references= */ false, gc::GcCause::kGcCauseDebugger); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 994 | JDWP::JdwpError error; |
| Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 995 | ObjPtr<mirror::Object> o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 996 | if (o == nullptr) { |
| Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 997 | return JDWP::ERR_INVALID_OBJECT; |
| 998 | } |
| Mathieu Chartier | aea9bfb | 2016-10-12 19:19:56 -0700 | [diff] [blame] | 999 | VariableSizedHandleScope hs(Thread::Current()); |
| 1000 | std::vector<Handle<mirror::Object>> raw_instances; |
| 1001 | heap->GetReferringObjects(hs, hs.NewHandle(o), max_count, raw_instances); |
| Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 1002 | for (size_t i = 0; i < raw_instances.size(); ++i) { |
| Mathieu Chartier | aea9bfb | 2016-10-12 19:19:56 -0700 | [diff] [blame] | 1003 | referring_objects->push_back(gRegistry->Add(raw_instances[i].Get())); |
| Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 1004 | } |
| 1005 | return JDWP::ERR_NONE; |
| 1006 | } |
| 1007 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1008 | JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) { |
| 1009 | JDWP::JdwpError error; |
| 1010 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1011 | if (o == nullptr) { |
| Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1012 | return JDWP::ERR_INVALID_OBJECT; |
| 1013 | } |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1014 | gRegistry->DisableCollection(object_id); |
| 1015 | return JDWP::ERR_NONE; |
| 1016 | } |
| 1017 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1018 | JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) { |
| 1019 | JDWP::JdwpError error; |
| 1020 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1021 | // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI |
| 1022 | // also ignores these cases and never return an error. However it's not obvious why this command |
| 1023 | // should behave differently from DisableCollection and IsCollected commands. So let's be more |
| 1024 | // strict and return an error if this happens. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1025 | if (o == nullptr) { |
| Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1026 | return JDWP::ERR_INVALID_OBJECT; |
| 1027 | } |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1028 | gRegistry->EnableCollection(object_id); |
| 1029 | return JDWP::ERR_NONE; |
| 1030 | } |
| 1031 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1032 | JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) { |
| 1033 | *is_collected = true; |
| Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 1034 | if (object_id == 0) { |
| 1035 | // Null object id is invalid. |
| Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1036 | return JDWP::ERR_INVALID_OBJECT; |
| 1037 | } |
| Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 1038 | // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However |
| 1039 | // the RI seems to ignore this and assume object has been collected. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1040 | JDWP::JdwpError error; |
| 1041 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1042 | if (o != nullptr) { |
| 1043 | *is_collected = gRegistry->IsCollected(object_id); |
| Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 1044 | } |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1045 | return JDWP::ERR_NONE; |
| 1046 | } |
| 1047 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1048 | void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) { |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1049 | gRegistry->DisposeObject(object_id, reference_count); |
| 1050 | } |
| 1051 | |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1052 | JDWP::JdwpTypeTag Dbg::GetTypeTag(ObjPtr<mirror::Class> klass) { |
| Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1053 | DCHECK(klass != nullptr); |
| 1054 | if (klass->IsArrayClass()) { |
| 1055 | return JDWP::TT_ARRAY; |
| 1056 | } else if (klass->IsInterface()) { |
| 1057 | return JDWP::TT_INTERFACE; |
| 1058 | } else { |
| 1059 | return JDWP::TT_CLASS; |
| 1060 | } |
| 1061 | } |
| 1062 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1063 | JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1064 | JDWP::JdwpError error; |
| 1065 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1066 | if (c == nullptr) { |
| 1067 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1068 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1069 | |
| Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1070 | JDWP::JdwpTypeTag type_tag = GetTypeTag(c); |
| 1071 | expandBufAdd1(pReply, type_tag); |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1072 | expandBufAddRefTypeId(pReply, class_id); |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1073 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1074 | } |
| 1075 | |
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1076 | // Get the complete list of reference classes (i.e. all classes except |
| 1077 | // the primitive types). |
| 1078 | // Returns a newly-allocated buffer full of RefTypeId values. |
| 1079 | class ClassListCreator : public ClassVisitor { |
| 1080 | public: |
| 1081 | explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes) : classes_(classes) {} |
| 1082 | |
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 1083 | bool operator()(ObjPtr<mirror::Class> c) override REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1084 | if (!c->IsPrimitive()) { |
| 1085 | classes_->push_back(Dbg::GetObjectRegistry()->AddRefType(c)); |
| 1086 | } |
| 1087 | return true; |
| 1088 | } |
| 1089 | |
| 1090 | private: |
| 1091 | std::vector<JDWP::RefTypeId>* const classes_; |
| 1092 | }; |
| 1093 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1094 | void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) { |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1095 | ClassListCreator clc(classes); |
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1096 | Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&clc); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1097 | } |
| 1098 | |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1099 | JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, |
| 1100 | uint32_t* pStatus, std::string* pDescriptor) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1101 | JDWP::JdwpError error; |
| 1102 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1103 | if (c == nullptr) { |
| 1104 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1105 | } |
| 1106 | |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1107 | if (c->IsArrayClass()) { |
| 1108 | *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED; |
| 1109 | *pTypeTag = JDWP::TT_ARRAY; |
| 1110 | } else { |
| 1111 | if (c->IsErroneous()) { |
| 1112 | *pStatus = JDWP::CS_ERROR; |
| 1113 | } else { |
| 1114 | *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED; |
| 1115 | } |
| 1116 | *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS; |
| 1117 | } |
| 1118 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1119 | if (pDescriptor != nullptr) { |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1120 | std::string temp; |
| 1121 | *pDescriptor = c->GetDescriptor(&temp); |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1122 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1123 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1124 | } |
| 1125 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1126 | void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) { |
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 1127 | std::vector<ObjPtr<mirror::Class>> classes; |
| Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 1128 | Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1129 | ids->clear(); |
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 1130 | for (ObjPtr<mirror::Class> c : classes) { |
| 1131 | ids->push_back(gRegistry->Add(c)); |
| Elliott Hughes | 6fa602d | 2011-12-02 17:54:25 -0800 | [diff] [blame] | 1132 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1133 | } |
| 1134 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1135 | JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) { |
| 1136 | JDWP::JdwpError error; |
| 1137 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1138 | if (o == nullptr) { |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1139 | return JDWP::ERR_INVALID_OBJECT; |
| Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 1140 | } |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1141 | |
| Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1142 | JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass()); |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1143 | JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass()); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1144 | |
| 1145 | expandBufAdd1(pReply, type_tag); |
| 1146 | expandBufAddRefTypeId(pReply, type_id); |
| 1147 | |
| 1148 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1149 | } |
| 1150 | |
| Ian Rogers | fc0e94b | 2013-09-23 23:51:32 -0700 | [diff] [blame] | 1151 | JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1152 | JDWP::JdwpError error; |
| 1153 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1154 | if (c == nullptr) { |
| 1155 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1156 | } |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1157 | std::string temp; |
| 1158 | *signature = c->GetDescriptor(&temp); |
| Elliott Hughes | 1fe7afb | 2012-02-13 17:23:03 -0800 | [diff] [blame] | 1159 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1160 | } |
| 1161 | |
| Orion Hodson | 77d8a1c | 2017-04-24 14:53:19 +0100 | [diff] [blame] | 1162 | JDWP::JdwpError Dbg::GetSourceDebugExtension(JDWP::RefTypeId class_id, |
| 1163 | std::string* extension_data) { |
| 1164 | JDWP::JdwpError error; |
| 1165 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1166 | if (c == nullptr) { |
| 1167 | return error; |
| 1168 | } |
| 1169 | StackHandleScope<1> hs(Thread::Current()); |
| 1170 | Handle<mirror::Class> klass(hs.NewHandle(c)); |
| 1171 | const char* data = annotations::GetSourceDebugExtension(klass); |
| 1172 | if (data == nullptr) { |
| 1173 | return JDWP::ERR_ABSENT_INFORMATION; |
| 1174 | } |
| 1175 | *extension_data = data; |
| 1176 | return JDWP::ERR_NONE; |
| 1177 | } |
| 1178 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1179 | JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) { |
| 1180 | JDWP::JdwpError error; |
| 1181 | mirror::Class* c = DecodeClass(class_id, &error); |
| Sebastien Hertz | 4206eb5 | 2014-06-05 10:15:45 +0200 | [diff] [blame] | 1182 | if (c == nullptr) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1183 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1184 | } |
| Sebastien Hertz | 4206eb5 | 2014-06-05 10:15:45 +0200 | [diff] [blame] | 1185 | const char* source_file = c->GetSourceFile(); |
| 1186 | if (source_file == nullptr) { |
| Sebastien Hertz | b7054ba | 2014-03-13 11:52:31 +0100 | [diff] [blame] | 1187 | return JDWP::ERR_ABSENT_INFORMATION; |
| 1188 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1189 | *result = source_file; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1190 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1191 | } |
| 1192 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1193 | JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) { |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1194 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1195 | JDWP::JdwpError error; |
| 1196 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1197 | if (error != JDWP::ERR_NONE) { |
| 1198 | *tag = JDWP::JT_VOID; |
| 1199 | return error; |
| Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 1200 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1201 | *tag = TagFromObject(soa, o); |
| Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 1202 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1203 | } |
| 1204 | |
| Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1205 | size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) { |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1206 | switch (tag) { |
| 1207 | case JDWP::JT_VOID: |
| 1208 | return 0; |
| 1209 | case JDWP::JT_BYTE: |
| 1210 | case JDWP::JT_BOOLEAN: |
| 1211 | return 1; |
| 1212 | case JDWP::JT_CHAR: |
| 1213 | case JDWP::JT_SHORT: |
| 1214 | return 2; |
| 1215 | case JDWP::JT_FLOAT: |
| 1216 | case JDWP::JT_INT: |
| 1217 | return 4; |
| 1218 | case JDWP::JT_ARRAY: |
| 1219 | case JDWP::JT_OBJECT: |
| 1220 | case JDWP::JT_STRING: |
| 1221 | case JDWP::JT_THREAD: |
| 1222 | case JDWP::JT_THREAD_GROUP: |
| 1223 | case JDWP::JT_CLASS_LOADER: |
| 1224 | case JDWP::JT_CLASS_OBJECT: |
| 1225 | return sizeof(JDWP::ObjectId); |
| 1226 | case JDWP::JT_DOUBLE: |
| 1227 | case JDWP::JT_LONG: |
| 1228 | return 8; |
| 1229 | default: |
| Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 1230 | LOG(FATAL) << "Unknown tag " << tag; |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1231 | return -1; |
| 1232 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1233 | } |
| 1234 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1235 | JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) { |
| 1236 | JDWP::JdwpError error; |
| 1237 | mirror::Array* a = DecodeNonNullArray(array_id, &error); |
| 1238 | if (a == nullptr) { |
| 1239 | return error; |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1240 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1241 | *length = a->GetLength(); |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1242 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1243 | } |
| 1244 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1245 | JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1246 | JDWP::JdwpError error; |
| 1247 | mirror::Array* a = DecodeNonNullArray(array_id, &error); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1248 | if (a == nullptr) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1249 | return error; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1250 | } |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1251 | |
| 1252 | if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) { |
| 1253 | LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1254 | return JDWP::ERR_INVALID_LENGTH; |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1255 | } |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1256 | JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType()); |
| 1257 | expandBufAdd1(pReply, element_tag); |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1258 | expandBufAdd4BE(pReply, count); |
| 1259 | |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1260 | if (IsPrimitiveTag(element_tag)) { |
| 1261 | size_t width = GetTagWidth(element_tag); |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1262 | uint8_t* dst = expandBufAddSpace(pReply, count * width); |
| 1263 | if (width == 8) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1264 | 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] | 1265 | for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]); |
| 1266 | } else if (width == 4) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1267 | 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] | 1268 | for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]); |
| 1269 | } else if (width == 2) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1270 | 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] | 1271 | for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]); |
| 1272 | } else { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1273 | 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] | 1274 | memcpy(dst, &src[offset * width], count * width); |
| 1275 | } |
| 1276 | } else { |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1277 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1278 | mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>(); |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1279 | for (int i = 0; i < count; ++i) { |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1280 | mirror::Object* element = oa->Get(offset + i); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1281 | JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element) |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1282 | : element_tag; |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1283 | expandBufAdd1(pReply, specific_tag); |
| 1284 | expandBufAddObjectId(pReply, gRegistry->Add(element)); |
| 1285 | } |
| 1286 | } |
| 1287 | |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1288 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1289 | } |
| 1290 | |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1291 | template <typename T> |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1292 | static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count) |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1293 | NO_THREAD_SAFETY_ANALYSIS { |
| 1294 | // TODO: fix when annotalysis correctly handles non-member functions. |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1295 | DCHECK(a->GetClass()->IsPrimitiveArray()); |
| 1296 | |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1297 | T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset)); |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1298 | for (int i = 0; i < count; ++i) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1299 | *dst++ = src->ReadValue(sizeof(T)); |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1300 | } |
| 1301 | } |
| 1302 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1303 | JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1304 | JDWP::Request* request) { |
| 1305 | JDWP::JdwpError error; |
| 1306 | mirror::Array* dst = DecodeNonNullArray(array_id, &error); |
| 1307 | if (dst == nullptr) { |
| 1308 | return error; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1309 | } |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1310 | |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1311 | if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) { |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1312 | LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1313 | return JDWP::ERR_INVALID_LENGTH; |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1314 | } |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1315 | JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType()); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1316 | |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1317 | if (IsPrimitiveTag(element_tag)) { |
| 1318 | size_t width = GetTagWidth(element_tag); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1319 | if (width == 8) { |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1320 | CopyArrayData<uint64_t>(dst, request, offset, count); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1321 | } else if (width == 4) { |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1322 | CopyArrayData<uint32_t>(dst, request, offset, count); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1323 | } else if (width == 2) { |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1324 | CopyArrayData<uint16_t>(dst, request, offset, count); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1325 | } else { |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1326 | CopyArrayData<uint8_t>(dst, request, offset, count); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1327 | } |
| 1328 | } else { |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1329 | mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>(); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1330 | for (int i = 0; i < count; ++i) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1331 | JDWP::ObjectId id = request->ReadObjectId(); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1332 | mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error); |
| 1333 | if (error != JDWP::ERR_NONE) { |
| 1334 | return error; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1335 | } |
| Sebastien Hertz | 2e1c16d | 2015-08-28 11:57:49 +0200 | [diff] [blame] | 1336 | // Check if the object's type is compatible with the array's type. |
| 1337 | if (o != nullptr && !o->InstanceOf(oa->GetClass()->GetComponentType())) { |
| 1338 | return JDWP::ERR_TYPE_MISMATCH; |
| 1339 | } |
| Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1340 | oa->Set<false>(offset + i, o); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1341 | } |
| 1342 | } |
| 1343 | |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1344 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1345 | } |
| 1346 | |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1347 | JDWP::JdwpError Dbg::CreateString(const std::string& str, JDWP::ObjectId* new_string_id) { |
| 1348 | Thread* self = Thread::Current(); |
| 1349 | mirror::String* new_string = mirror::String::AllocFromModifiedUtf8(self, str.c_str()); |
| 1350 | if (new_string == nullptr) { |
| 1351 | DCHECK(self->IsExceptionPending()); |
| 1352 | self->ClearException(); |
| 1353 | LOG(ERROR) << "Could not allocate string"; |
| 1354 | *new_string_id = 0; |
| 1355 | return JDWP::ERR_OUT_OF_MEMORY; |
| 1356 | } |
| 1357 | *new_string_id = gRegistry->Add(new_string); |
| 1358 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1359 | } |
| 1360 | |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1361 | 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] | 1362 | JDWP::JdwpError error; |
| 1363 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1364 | if (c == nullptr) { |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1365 | *new_object_id = 0; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1366 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1367 | } |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1368 | Thread* self = Thread::Current(); |
| Mathieu Chartier | 28bd2e4 | 2016-10-04 13:54:57 -0700 | [diff] [blame] | 1369 | ObjPtr<mirror::Object> new_object; |
| Sebastien Hertz | 56d5e50 | 2015-11-03 17:38:35 +0100 | [diff] [blame] | 1370 | if (c->IsStringClass()) { |
| 1371 | // Special case for java.lang.String. |
| 1372 | gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator(); |
| jessicahandojo | 3aaa37b | 2016-07-29 14:46:37 -0700 | [diff] [blame] | 1373 | new_object = mirror::String::AllocEmptyString<true>(self, allocator_type); |
| Sebastien Hertz | 56d5e50 | 2015-11-03 17:38:35 +0100 | [diff] [blame] | 1374 | } else { |
| 1375 | new_object = c->AllocObject(self); |
| 1376 | } |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1377 | if (new_object == nullptr) { |
| 1378 | DCHECK(self->IsExceptionPending()); |
| 1379 | self->ClearException(); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1380 | LOG(ERROR) << "Could not allocate object of type " << mirror::Class::PrettyDescriptor(c); |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1381 | *new_object_id = 0; |
| 1382 | return JDWP::ERR_OUT_OF_MEMORY; |
| 1383 | } |
| Vladimir Marko | bcf1752 | 2018-06-01 13:14:32 +0100 | [diff] [blame] | 1384 | *new_object_id = gRegistry->Add(new_object); |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1385 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1386 | } |
| 1387 | |
| Elliott Hughes | bf13d36 | 2011-12-08 15:51:37 -0800 | [diff] [blame] | 1388 | /* |
| 1389 | * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]". |
| 1390 | */ |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1391 | JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length, |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1392 | JDWP::ObjectId* new_array_id) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1393 | JDWP::JdwpError error; |
| 1394 | mirror::Class* c = DecodeClass(array_class_id, &error); |
| 1395 | if (c == nullptr) { |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1396 | *new_array_id = 0; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1397 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1398 | } |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1399 | Thread* self = Thread::Current(); |
| Vladimir Marko | bcf1752 | 2018-06-01 13:14:32 +0100 | [diff] [blame] | 1400 | gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator(); |
| 1401 | ObjPtr<mirror::Array> new_array = |
| 1402 | mirror::Array::Alloc<true>(self, c, length, c->GetComponentSizeShift(), allocator_type); |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1403 | if (new_array == nullptr) { |
| 1404 | DCHECK(self->IsExceptionPending()); |
| 1405 | self->ClearException(); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1406 | LOG(ERROR) << "Could not allocate array of type " << mirror::Class::PrettyDescriptor(c); |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1407 | *new_array_id = 0; |
| 1408 | return JDWP::ERR_OUT_OF_MEMORY; |
| 1409 | } |
| 1410 | *new_array_id = gRegistry->Add(new_array); |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1411 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1412 | } |
| 1413 | |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1414 | JDWP::FieldId Dbg::ToFieldId(const ArtField* f) { |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1415 | return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f)); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1416 | } |
| 1417 | |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 1418 | static JDWP::MethodId ToMethodId(ArtMethod* m) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1419 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 1420 | return static_cast<JDWP::MethodId>( |
| 1421 | reinterpret_cast<uintptr_t>(m->GetCanonicalMethod(kRuntimePointerSize))); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1422 | } |
| 1423 | |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1424 | static ArtField* FromFieldId(JDWP::FieldId fid) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1425 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1426 | return reinterpret_cast<ArtField*>(static_cast<uintptr_t>(fid)); |
| Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1427 | } |
| 1428 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1429 | static ArtMethod* FromMethodId(JDWP::MethodId mid) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1430 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1431 | return reinterpret_cast<ArtMethod*>(static_cast<uintptr_t>(mid)); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1432 | } |
| 1433 | |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1434 | bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) { |
| 1435 | CHECK(event_thread != nullptr); |
| 1436 | JDWP::JdwpError error; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1437 | mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>( |
| 1438 | expected_thread_id, &error); |
| Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 1439 | return expected_thread_peer == event_thread->GetPeerFromOtherThread(); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1440 | } |
| 1441 | |
| 1442 | bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location, |
| 1443 | const JDWP::EventLocation& event_location) { |
| 1444 | if (expected_location.dex_pc != event_location.dex_pc) { |
| 1445 | return false; |
| 1446 | } |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1447 | ArtMethod* m = FromMethodId(expected_location.method_id); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1448 | return m == event_location.method; |
| 1449 | } |
| 1450 | |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1451 | bool Dbg::MatchType(ObjPtr<mirror::Class> event_class, JDWP::RefTypeId class_id) { |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1452 | if (event_class == nullptr) { |
| 1453 | return false; |
| 1454 | } |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1455 | JDWP::JdwpError error; |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1456 | ObjPtr<mirror::Class> expected_class = DecodeClass(class_id, &error); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1457 | CHECK(expected_class != nullptr); |
| 1458 | return expected_class->IsAssignableFrom(event_class); |
| 1459 | } |
| 1460 | |
| 1461 | bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id, |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1462 | ArtField* event_field) { |
| 1463 | ArtField* expected_field = FromFieldId(expected_field_id); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1464 | if (expected_field != event_field) { |
| 1465 | return false; |
| 1466 | } |
| 1467 | return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id); |
| 1468 | } |
| 1469 | |
| 1470 | bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) { |
| 1471 | JDWP::JdwpError error; |
| 1472 | mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error); |
| 1473 | return modifier_instance == event_instance; |
| 1474 | } |
| 1475 | |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1476 | void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, ArtMethod* m, uint32_t dex_pc) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1477 | if (m == nullptr) { |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1478 | memset(location, 0, sizeof(*location)); |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 1479 | } else { |
| Vladimir Marko | d93e374 | 2018-07-18 10:58:13 +0100 | [diff] [blame] | 1480 | ObjPtr<mirror::Class> c = m->GetDeclaringClass(); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1481 | location->type_tag = GetTypeTag(c); |
| 1482 | location->class_id = gRegistry->AddRefType(c); |
| Alex Light | 7337631 | 2017-04-06 10:10:51 -0700 | [diff] [blame] | 1483 | // The RI Seems to return 0 for all obsolete methods. For compatibility we shall do the same. |
| 1484 | location->method_id = m->IsObsolete() ? 0 : ToMethodId(m); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1485 | 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] | 1486 | } |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 1487 | } |
| 1488 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1489 | std::string Dbg::GetMethodName(JDWP::MethodId method_id) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1490 | ArtMethod* m = FromMethodId(method_id); |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1491 | if (m == nullptr) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1492 | return "null"; |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1493 | } |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 1494 | return m->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetName(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1495 | } |
| 1496 | |
| Alex Light | 7337631 | 2017-04-06 10:10:51 -0700 | [diff] [blame] | 1497 | bool Dbg::IsMethodObsolete(JDWP::MethodId method_id) { |
| 1498 | ArtMethod* m = FromMethodId(method_id); |
| 1499 | if (m == nullptr) { |
| 1500 | // NB Since we return 0 as MID for obsolete methods we want to default to true here. |
| 1501 | return true; |
| 1502 | } |
| 1503 | return m->IsObsolete(); |
| 1504 | } |
| 1505 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1506 | std::string Dbg::GetFieldName(JDWP::FieldId field_id) { |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1507 | ArtField* f = FromFieldId(field_id); |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1508 | if (f == nullptr) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1509 | return "null"; |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1510 | } |
| 1511 | return f->GetName(); |
| Elliott Hughes | a96836a | 2013-01-17 12:27:49 -0800 | [diff] [blame] | 1512 | } |
| 1513 | |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1514 | /* |
| 1515 | * Augment the access flags for synthetic methods and fields by setting |
| 1516 | * the (as described by the spec) "0xf0000000 bit". Also, strip out any |
| 1517 | * flags not specified by the Java programming language. |
| 1518 | */ |
| 1519 | static uint32_t MangleAccessFlags(uint32_t accessFlags) { |
| 1520 | accessFlags &= kAccJavaFlagsMask; |
| 1521 | if ((accessFlags & kAccSynthetic) != 0) { |
| 1522 | accessFlags |= 0xf0000000; |
| 1523 | } |
| 1524 | return accessFlags; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1525 | } |
| 1526 | |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1527 | /* |
| Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1528 | * Circularly shifts registers so that arguments come first. Debuggers |
| 1529 | * expect slots to begin with arguments, but dex code places them at |
| 1530 | * the end. |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1531 | */ |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1532 | static uint16_t MangleSlot(uint16_t slot, ArtMethod* m) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1533 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 1534 | CodeItemDataAccessor accessor(m->DexInstructionData()); |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 1535 | if (!accessor.HasCodeItem()) { |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1536 | // We should not get here for a method without code (native, proxy or abstract). Log it and |
| 1537 | // return the slot as is since all registers are arguments. |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1538 | LOG(WARNING) << "Trying to mangle slot for method without code " << m->PrettyMethod(); |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1539 | return slot; |
| 1540 | } |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 1541 | uint16_t ins_size = accessor.InsSize(); |
| 1542 | uint16_t locals_size = accessor.RegistersSize() - ins_size; |
| Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1543 | if (slot >= locals_size) { |
| 1544 | return slot - locals_size; |
| 1545 | } else { |
| 1546 | return slot + ins_size; |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1547 | } |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1548 | } |
| 1549 | |
| Sebastien Hertz | aef0c91 | 2016-08-08 10:20:28 +0200 | [diff] [blame] | 1550 | static size_t GetMethodNumArgRegistersIncludingThis(ArtMethod* method) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1551 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | aef0c91 | 2016-08-08 10:20:28 +0200 | [diff] [blame] | 1552 | uint32_t num_registers = ArtMethod::NumArgRegisters(method->GetShorty()); |
| 1553 | if (!method->IsStatic()) { |
| 1554 | ++num_registers; |
| 1555 | } |
| 1556 | return num_registers; |
| 1557 | } |
| 1558 | |
| Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1559 | /* |
| 1560 | * Circularly shifts registers so that arguments come last. Reverts |
| 1561 | * slots to dex style argument placement. |
| 1562 | */ |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1563 | static uint16_t DemangleSlot(uint16_t slot, ArtMethod* m, JDWP::JdwpError* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1564 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 1565 | CodeItemDataAccessor accessor(m->DexInstructionData()); |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 1566 | if (!accessor.HasCodeItem()) { |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1567 | // We should not get here for a method without code (native, proxy or abstract). Log it and |
| 1568 | // return the slot as is since all registers are arguments. |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1569 | LOG(WARNING) << "Trying to demangle slot for method without code " |
| 1570 | << m->PrettyMethod(); |
| Sebastien Hertz | aef0c91 | 2016-08-08 10:20:28 +0200 | [diff] [blame] | 1571 | uint16_t vreg_count = GetMethodNumArgRegistersIncludingThis(m); |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1572 | if (slot < vreg_count) { |
| 1573 | *error = JDWP::ERR_NONE; |
| 1574 | return slot; |
| 1575 | } |
| Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1576 | } else { |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 1577 | if (slot < accessor.RegistersSize()) { |
| 1578 | uint16_t ins_size = accessor.InsSize(); |
| 1579 | uint16_t locals_size = accessor.RegistersSize() - ins_size; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1580 | *error = JDWP::ERR_NONE; |
| 1581 | return (slot < ins_size) ? slot + locals_size : slot - ins_size; |
| 1582 | } |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1583 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1584 | |
| 1585 | // Slot is invalid in the method. |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1586 | LOG(ERROR) << "Invalid local slot " << slot << " for method " << m->PrettyMethod(); |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1587 | *error = JDWP::ERR_INVALID_SLOT; |
| 1588 | return DexFile::kDexNoIndex16; |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1589 | } |
| 1590 | |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1591 | JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, |
| 1592 | JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1593 | JDWP::JdwpError error; |
| 1594 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1595 | if (c == nullptr) { |
| 1596 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1597 | } |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1598 | |
| 1599 | size_t instance_field_count = c->NumInstanceFields(); |
| 1600 | size_t static_field_count = c->NumStaticFields(); |
| 1601 | |
| 1602 | expandBufAdd4BE(pReply, instance_field_count + static_field_count); |
| 1603 | |
| 1604 | 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] | 1605 | ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : |
| 1606 | c->GetStaticField(i - instance_field_count); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1607 | expandBufAddFieldId(pReply, ToFieldId(f)); |
| Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1608 | expandBufAddUtf8String(pReply, f->GetName()); |
| 1609 | expandBufAddUtf8String(pReply, f->GetTypeDescriptor()); |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1610 | if (with_generic) { |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1611 | static const char genericSignature[1] = ""; |
| 1612 | expandBufAddUtf8String(pReply, genericSignature); |
| 1613 | } |
| 1614 | expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags())); |
| 1615 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1616 | return JDWP::ERR_NONE; |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1617 | } |
| 1618 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1619 | JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic, |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1620 | JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1621 | JDWP::JdwpError error; |
| 1622 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1623 | if (c == nullptr) { |
| 1624 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1625 | } |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1626 | |
| Alex Light | 51a64d5 | 2015-12-17 13:55:59 -0800 | [diff] [blame] | 1627 | expandBufAdd4BE(pReply, c->NumMethods()); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1628 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1629 | auto* cl = Runtime::Current()->GetClassLinker(); |
| 1630 | auto ptr_size = cl->GetImagePointerSize(); |
| Alex Light | 51a64d5 | 2015-12-17 13:55:59 -0800 | [diff] [blame] | 1631 | for (ArtMethod& m : c->GetMethods(ptr_size)) { |
| 1632 | expandBufAddMethodId(pReply, ToMethodId(&m)); |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 1633 | expandBufAddUtf8String(pReply, m.GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetName()); |
| 1634 | expandBufAddUtf8String( |
| 1635 | pReply, m.GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetSignature().ToString()); |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1636 | if (with_generic) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1637 | const char* generic_signature = ""; |
| 1638 | expandBufAddUtf8String(pReply, generic_signature); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1639 | } |
| Alex Light | 51a64d5 | 2015-12-17 13:55:59 -0800 | [diff] [blame] | 1640 | expandBufAdd4BE(pReply, MangleAccessFlags(m.GetAccessFlags())); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1641 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1642 | return JDWP::ERR_NONE; |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1643 | } |
| 1644 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1645 | JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1646 | JDWP::JdwpError error; |
| Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1647 | Thread* self = Thread::Current(); |
| Vladimir Marko | 19a4d37 | 2016-12-08 14:41:46 +0000 | [diff] [blame] | 1648 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
| 1649 | if (c == nullptr) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1650 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1651 | } |
| Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1652 | size_t interface_count = c->NumDirectInterfaces(); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1653 | expandBufAdd4BE(pReply, interface_count); |
| 1654 | for (size_t i = 0; i < interface_count; ++i) { |
| Vladimir Marko | 19a4d37 | 2016-12-08 14:41:46 +0000 | [diff] [blame] | 1655 | ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, c, i); |
| 1656 | DCHECK(interface != nullptr); |
| 1657 | expandBufAddRefTypeId(pReply, gRegistry->AddRefType(interface)); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1658 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1659 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1660 | } |
| 1661 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1662 | void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1663 | ArtMethod* m = FromMethodId(method_id); |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 1664 | CodeItemDebugInfoAccessor accessor(m->DexInstructionDebugInfo()); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1665 | uint64_t start, end; |
| Mathieu Chartier | 31f4c9f | 2017-12-08 15:46:11 -0800 | [diff] [blame] | 1666 | if (!accessor.HasCodeItem()) { |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1667 | DCHECK(m->IsNative() || m->IsProxyMethod()); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1668 | start = -1; |
| 1669 | end = -1; |
| 1670 | } else { |
| 1671 | start = 0; |
| jeffhao | 14f0db9 | 2012-12-14 17:50:42 -0800 | [diff] [blame] | 1672 | // Return the index of the last instruction |
| Mathieu Chartier | 31f4c9f | 2017-12-08 15:46:11 -0800 | [diff] [blame] | 1673 | end = accessor.InsnsSizeInCodeUnits() - 1; |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1674 | } |
| 1675 | |
| 1676 | expandBufAdd8BE(pReply, start); |
| 1677 | expandBufAdd8BE(pReply, end); |
| 1678 | |
| 1679 | // Add numLines later |
| 1680 | size_t numLinesOffset = expandBufGetLength(pReply); |
| 1681 | expandBufAdd4BE(pReply, 0); |
| 1682 | |
| Mathieu Chartier | 3e2e123 | 2018-09-11 12:35:30 -0700 | [diff] [blame] | 1683 | int numItems = 0; |
| 1684 | accessor.DecodeDebugPositionInfo([&](const DexFile::PositionInfo& entry) { |
| 1685 | expandBufAdd8BE(pReply, entry.address_); |
| 1686 | expandBufAdd4BE(pReply, entry.line_); |
| 1687 | numItems++; |
| 1688 | return false; |
| 1689 | }); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1690 | |
| Mathieu Chartier | 3e2e123 | 2018-09-11 12:35:30 -0700 | [diff] [blame] | 1691 | JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, numItems); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1692 | } |
| 1693 | |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1694 | void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, |
| 1695 | JDWP::ExpandBuf* pReply) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1696 | ArtMethod* m = FromMethodId(method_id); |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 1697 | CodeItemDebugInfoAccessor accessor(m->DexInstructionDebugInfo()); |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1698 | |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1699 | // arg_count considers doubles and longs to take 2 units. |
| 1700 | // variable_count considers everything to take 1 unit. |
| Sebastien Hertz | aef0c91 | 2016-08-08 10:20:28 +0200 | [diff] [blame] | 1701 | expandBufAdd4BE(pReply, GetMethodNumArgRegistersIncludingThis(m)); |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1702 | |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1703 | // We don't know the total number of variables yet, so leave a blank and update it later. |
| 1704 | size_t variable_count_offset = expandBufGetLength(pReply); |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1705 | expandBufAdd4BE(pReply, 0); |
| 1706 | |
| Mathieu Chartier | e5afbf3 | 2018-09-12 17:51:54 -0700 | [diff] [blame] | 1707 | size_t variable_count = 0; |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1708 | |
| Mathieu Chartier | 31f4c9f | 2017-12-08 15:46:11 -0800 | [diff] [blame] | 1709 | if (accessor.HasCodeItem()) { |
| Mathieu Chartier | e5afbf3 | 2018-09-12 17:51:54 -0700 | [diff] [blame] | 1710 | accessor.DecodeDebugLocalInfo(m->IsStatic(), |
| 1711 | m->GetDexMethodIndex(), |
| 1712 | [&](const DexFile::LocalInfo& entry) |
| 1713 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 1714 | uint16_t slot = entry.reg_; |
| 1715 | VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d", |
| 1716 | variable_count, |
| 1717 | entry.start_address_, |
| 1718 | entry.end_address_ - entry.start_address_, |
| 1719 | entry.name_, |
| 1720 | entry.descriptor_, entry.signature_, |
| 1721 | slot, |
| 1722 | MangleSlot(slot, m)); |
| 1723 | |
| 1724 | slot = MangleSlot(slot, m); |
| 1725 | |
| 1726 | expandBufAdd8BE(pReply, entry.start_address_); |
| 1727 | expandBufAddUtf8String(pReply, entry.name_); |
| 1728 | expandBufAddUtf8String(pReply, entry.descriptor_); |
| 1729 | if (with_generic) { |
| 1730 | expandBufAddUtf8String(pReply, entry.signature_); |
| 1731 | } |
| 1732 | expandBufAdd4BE(pReply, entry.end_address_- entry.start_address_); |
| 1733 | expandBufAdd4BE(pReply, slot); |
| 1734 | |
| 1735 | ++variable_count; |
| 1736 | }); |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1737 | } |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1738 | |
| Mathieu Chartier | e5afbf3 | 2018-09-12 17:51:54 -0700 | [diff] [blame] | 1739 | JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, variable_count); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1740 | } |
| 1741 | |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1742 | void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, |
| 1743 | JDWP::ExpandBuf* pReply) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1744 | ArtMethod* m = FromMethodId(method_id); |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1745 | JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty()); |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1746 | OutputJValue(tag, return_value, pReply); |
| 1747 | } |
| 1748 | |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1749 | void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value, |
| 1750 | JDWP::ExpandBuf* pReply) { |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1751 | ArtField* f = FromFieldId(field_id); |
| Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1752 | JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1753 | OutputJValue(tag, field_value, pReply); |
| 1754 | } |
| 1755 | |
| Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1756 | JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1757 | std::vector<uint8_t>* bytecodes) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1758 | ArtMethod* m = FromMethodId(method_id); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1759 | if (m == nullptr) { |
| Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1760 | return JDWP::ERR_INVALID_METHODID; |
| 1761 | } |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 1762 | CodeItemDataAccessor accessor(m->DexInstructionData()); |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 1763 | size_t byte_count = accessor.InsnsSizeInCodeUnits() * 2; |
| 1764 | const uint8_t* begin = reinterpret_cast<const uint8_t*>(accessor.Insns()); |
| Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1765 | const uint8_t* end = begin + byte_count; |
| 1766 | for (const uint8_t* p = begin; p != end; ++p) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1767 | bytecodes->push_back(*p); |
| Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1768 | } |
| 1769 | return JDWP::ERR_NONE; |
| 1770 | } |
| 1771 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1772 | JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) { |
| Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1773 | return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1774 | } |
| 1775 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1776 | JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) { |
| Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1777 | return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1778 | } |
| 1779 | |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1780 | static JValue GetArtFieldValue(ArtField* f, mirror::Object* o) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1781 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1782 | Primitive::Type fieldType = f->GetTypeAsPrimitiveType(); |
| 1783 | JValue field_value; |
| 1784 | switch (fieldType) { |
| 1785 | case Primitive::kPrimBoolean: |
| 1786 | field_value.SetZ(f->GetBoolean(o)); |
| 1787 | return field_value; |
| 1788 | |
| 1789 | case Primitive::kPrimByte: |
| 1790 | field_value.SetB(f->GetByte(o)); |
| 1791 | return field_value; |
| 1792 | |
| 1793 | case Primitive::kPrimChar: |
| 1794 | field_value.SetC(f->GetChar(o)); |
| 1795 | return field_value; |
| 1796 | |
| 1797 | case Primitive::kPrimShort: |
| 1798 | field_value.SetS(f->GetShort(o)); |
| 1799 | return field_value; |
| 1800 | |
| 1801 | case Primitive::kPrimInt: |
| 1802 | case Primitive::kPrimFloat: |
| 1803 | // Int and Float must be treated as 32-bit values in JDWP. |
| 1804 | field_value.SetI(f->GetInt(o)); |
| 1805 | return field_value; |
| 1806 | |
| 1807 | case Primitive::kPrimLong: |
| 1808 | case Primitive::kPrimDouble: |
| 1809 | // Long and Double must be treated as 64-bit values in JDWP. |
| 1810 | field_value.SetJ(f->GetLong(o)); |
| 1811 | return field_value; |
| 1812 | |
| 1813 | case Primitive::kPrimNot: |
| Vladimir Marko | bcf1752 | 2018-06-01 13:14:32 +0100 | [diff] [blame] | 1814 | field_value.SetL(f->GetObject(o)); |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1815 | return field_value; |
| 1816 | |
| 1817 | case Primitive::kPrimVoid: |
| 1818 | LOG(FATAL) << "Attempt to read from field of type 'void'"; |
| 1819 | UNREACHABLE(); |
| 1820 | } |
| 1821 | LOG(FATAL) << "Attempt to read from field of unknown type"; |
| 1822 | UNREACHABLE(); |
| 1823 | } |
| 1824 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1825 | static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id, |
| 1826 | JDWP::FieldId field_id, JDWP::ExpandBuf* pReply, |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1827 | bool is_static) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1828 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1829 | JDWP::JdwpError error; |
| 1830 | mirror::Class* c = DecodeClass(ref_type_id, &error); |
| 1831 | if (ref_type_id != 0 && c == nullptr) { |
| 1832 | return error; |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1833 | } |
| 1834 | |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1835 | Thread* self = Thread::Current(); |
| 1836 | StackHandleScope<2> hs(self); |
| 1837 | MutableHandle<mirror::Object> |
| 1838 | o(hs.NewHandle(Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error))); |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1839 | if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) { |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1840 | return JDWP::ERR_INVALID_OBJECT; |
| 1841 | } |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1842 | ArtField* f = FromFieldId(field_id); |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1843 | |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1844 | mirror::Class* receiver_class = c; |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1845 | if (receiver_class == nullptr && o != nullptr) { |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1846 | receiver_class = o->GetClass(); |
| 1847 | } |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1848 | |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1849 | // TODO: should we give up now if receiver_class is null? |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1850 | if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1851 | LOG(INFO) << "ERR_INVALID_FIELDID: " << f->PrettyField() << " " |
| 1852 | << receiver_class->PrettyClass(); |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1853 | return JDWP::ERR_INVALID_FIELDID; |
| 1854 | } |
| Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1855 | |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1856 | // Ensure the field's class is initialized. |
| 1857 | Handle<mirror::Class> klass(hs.NewHandle(f->GetDeclaringClass())); |
| 1858 | if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, klass, true, false)) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1859 | LOG(WARNING) << "Not able to initialize class for SetValues: " |
| 1860 | << mirror::Class::PrettyClass(klass.Get()); |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1861 | } |
| 1862 | |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1863 | // The RI only enforces the static/non-static mismatch in one direction. |
| 1864 | // TODO: should we change the tests and check both? |
| 1865 | if (is_static) { |
| 1866 | if (!f->IsStatic()) { |
| 1867 | return JDWP::ERR_INVALID_FIELDID; |
| 1868 | } |
| 1869 | } else { |
| 1870 | if (f->IsStatic()) { |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1871 | LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.GetValues" |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1872 | << " on static field " << f->PrettyField(); |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1873 | } |
| 1874 | } |
| jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1875 | if (f->IsStatic()) { |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1876 | o.Assign(f->GetDeclaringClass()); |
| jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1877 | } |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1878 | |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1879 | JValue field_value(GetArtFieldValue(f, o.Get())); |
| Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1880 | JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1881 | Dbg::OutputJValue(tag, &field_value, pReply); |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1882 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1883 | } |
| 1884 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1885 | JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1886 | JDWP::ExpandBuf* pReply) { |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1887 | return GetFieldValueImpl(0, object_id, field_id, pReply, false); |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1888 | } |
| 1889 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1890 | JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, |
| 1891 | JDWP::ExpandBuf* pReply) { |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1892 | return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true); |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1893 | } |
| 1894 | |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1895 | static JDWP::JdwpError SetArtFieldValue(ArtField* f, mirror::Object* o, uint64_t value, int width) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1896 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1897 | Primitive::Type fieldType = f->GetTypeAsPrimitiveType(); |
| 1898 | // Debugging only happens at runtime so we know we are not running in a transaction. |
| 1899 | static constexpr bool kNoTransactionMode = false; |
| 1900 | switch (fieldType) { |
| 1901 | case Primitive::kPrimBoolean: |
| 1902 | CHECK_EQ(width, 1); |
| 1903 | f->SetBoolean<kNoTransactionMode>(o, static_cast<uint8_t>(value)); |
| 1904 | return JDWP::ERR_NONE; |
| 1905 | |
| 1906 | case Primitive::kPrimByte: |
| 1907 | CHECK_EQ(width, 1); |
| 1908 | f->SetByte<kNoTransactionMode>(o, static_cast<uint8_t>(value)); |
| 1909 | return JDWP::ERR_NONE; |
| 1910 | |
| 1911 | case Primitive::kPrimChar: |
| 1912 | CHECK_EQ(width, 2); |
| 1913 | f->SetChar<kNoTransactionMode>(o, static_cast<uint16_t>(value)); |
| 1914 | return JDWP::ERR_NONE; |
| 1915 | |
| 1916 | case Primitive::kPrimShort: |
| 1917 | CHECK_EQ(width, 2); |
| 1918 | f->SetShort<kNoTransactionMode>(o, static_cast<int16_t>(value)); |
| 1919 | return JDWP::ERR_NONE; |
| 1920 | |
| 1921 | case Primitive::kPrimInt: |
| 1922 | case Primitive::kPrimFloat: |
| 1923 | CHECK_EQ(width, 4); |
| 1924 | // Int and Float must be treated as 32-bit values in JDWP. |
| 1925 | f->SetInt<kNoTransactionMode>(o, static_cast<int32_t>(value)); |
| 1926 | return JDWP::ERR_NONE; |
| 1927 | |
| 1928 | case Primitive::kPrimLong: |
| 1929 | case Primitive::kPrimDouble: |
| 1930 | CHECK_EQ(width, 8); |
| 1931 | // Long and Double must be treated as 64-bit values in JDWP. |
| 1932 | f->SetLong<kNoTransactionMode>(o, value); |
| 1933 | return JDWP::ERR_NONE; |
| 1934 | |
| 1935 | case Primitive::kPrimNot: { |
| 1936 | JDWP::JdwpError error; |
| 1937 | mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error); |
| 1938 | if (error != JDWP::ERR_NONE) { |
| 1939 | return JDWP::ERR_INVALID_OBJECT; |
| 1940 | } |
| 1941 | if (v != nullptr) { |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1942 | ObjPtr<mirror::Class> field_type; |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1943 | { |
| 1944 | StackHandleScope<2> hs(Thread::Current()); |
| 1945 | HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v)); |
| 1946 | HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o)); |
| Vladimir Marko | 4098a7a | 2017-11-06 16:00:51 +0000 | [diff] [blame] | 1947 | field_type = f->ResolveType(); |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1948 | } |
| 1949 | if (!field_type->IsAssignableFrom(v->GetClass())) { |
| 1950 | return JDWP::ERR_INVALID_OBJECT; |
| 1951 | } |
| 1952 | } |
| 1953 | f->SetObject<kNoTransactionMode>(o, v); |
| 1954 | return JDWP::ERR_NONE; |
| 1955 | } |
| 1956 | |
| 1957 | case Primitive::kPrimVoid: |
| 1958 | LOG(FATAL) << "Attempt to write to field of type 'void'"; |
| 1959 | UNREACHABLE(); |
| 1960 | } |
| 1961 | LOG(FATAL) << "Attempt to write to field of unknown type"; |
| 1962 | UNREACHABLE(); |
| 1963 | } |
| 1964 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1965 | static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id, |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1966 | uint64_t value, int width, bool is_static) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1967 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1968 | JDWP::JdwpError error; |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1969 | Thread* self = Thread::Current(); |
| 1970 | StackHandleScope<2> hs(self); |
| 1971 | MutableHandle<mirror::Object> |
| 1972 | o(hs.NewHandle(Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error))); |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1973 | if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) { |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1974 | return JDWP::ERR_INVALID_OBJECT; |
| 1975 | } |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1976 | ArtField* f = FromFieldId(field_id); |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1977 | |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1978 | // Ensure the field's class is initialized. |
| 1979 | Handle<mirror::Class> klass(hs.NewHandle(f->GetDeclaringClass())); |
| 1980 | if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, klass, true, false)) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1981 | LOG(WARNING) << "Not able to initialize class for SetValues: " |
| 1982 | << mirror::Class::PrettyClass(klass.Get()); |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1983 | } |
| 1984 | |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1985 | // The RI only enforces the static/non-static mismatch in one direction. |
| 1986 | // TODO: should we change the tests and check both? |
| 1987 | if (is_static) { |
| 1988 | if (!f->IsStatic()) { |
| 1989 | return JDWP::ERR_INVALID_FIELDID; |
| 1990 | } |
| 1991 | } else { |
| 1992 | if (f->IsStatic()) { |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1993 | LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues" |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1994 | << " on static field " << f->PrettyField(); |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1995 | } |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1996 | } |
| jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1997 | if (f->IsStatic()) { |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1998 | o.Assign(f->GetDeclaringClass()); |
| jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1999 | } |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 2000 | return SetArtFieldValue(f, o.Get(), value, width); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2001 | } |
| 2002 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 2003 | 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] | 2004 | int width) { |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 2005 | return SetFieldValueImpl(object_id, field_id, value, width, false); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2006 | } |
| 2007 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 2008 | JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) { |
| 2009 | return SetFieldValueImpl(0, field_id, value, width, true); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2010 | } |
| 2011 | |
| Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 2012 | JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2013 | JDWP::JdwpError error; |
| Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 2014 | mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error); |
| 2015 | if (error != JDWP::ERR_NONE) { |
| 2016 | return error; |
| 2017 | } |
| 2018 | if (obj == nullptr) { |
| 2019 | return JDWP::ERR_INVALID_OBJECT; |
| 2020 | } |
| 2021 | { |
| 2022 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 2023 | ObjPtr<mirror::Class> java_lang_String = |
| 2024 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_String); |
| Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 2025 | if (!java_lang_String->IsAssignableFrom(obj->GetClass())) { |
| 2026 | // This isn't a string. |
| 2027 | return JDWP::ERR_INVALID_STRING; |
| 2028 | } |
| 2029 | } |
| 2030 | *str = obj->AsString()->ToModifiedUtf8(); |
| 2031 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2032 | } |
| 2033 | |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 2034 | void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) { |
| 2035 | if (IsPrimitiveTag(tag)) { |
| 2036 | expandBufAdd1(pReply, tag); |
| 2037 | if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) { |
| 2038 | expandBufAdd1(pReply, return_value->GetI()); |
| 2039 | } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) { |
| 2040 | expandBufAdd2BE(pReply, return_value->GetI()); |
| 2041 | } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) { |
| 2042 | expandBufAdd4BE(pReply, return_value->GetI()); |
| 2043 | } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) { |
| 2044 | expandBufAdd8BE(pReply, return_value->GetJ()); |
| 2045 | } else { |
| 2046 | CHECK_EQ(tag, JDWP::JT_VOID); |
| 2047 | } |
| 2048 | } else { |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2049 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 2050 | mirror::Object* value = return_value->GetL(); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2051 | expandBufAdd1(pReply, TagFromObject(soa, value)); |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 2052 | expandBufAddObjectId(pReply, gRegistry->Add(value)); |
| 2053 | } |
| 2054 | } |
| 2055 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2056 | JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) { |
| jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 2057 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2058 | JDWP::JdwpError error; |
| Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 2059 | DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2060 | if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2061 | return error; |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 2062 | } |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2063 | |
| 2064 | // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2065 | mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 2066 | CHECK(thread_object != nullptr) << error; |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2067 | ArtField* java_lang_Thread_name_field = |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2068 | jni::DecodeArtField(WellKnownClasses::java_lang_Thread_name); |
| Mathieu Chartier | f8ac97f | 2016-10-05 15:56:52 -0700 | [diff] [blame] | 2069 | 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] | 2070 | if (s != nullptr) { |
| 2071 | *name = s->ToModifiedUtf8(); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2072 | } |
| 2073 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2074 | } |
| 2075 | |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2076 | JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2077 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2078 | JDWP::JdwpError error; |
| 2079 | mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 2080 | if (error != JDWP::ERR_NONE) { |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2081 | return JDWP::ERR_INVALID_OBJECT; |
| 2082 | } |
| Mathieu Chartier | 268764d | 2016-09-13 12:09:38 -0700 | [diff] [blame] | 2083 | ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroup"); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2084 | // Okay, so it's an object, but is it actually a thread? |
| Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 2085 | DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2086 | if (error == JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2087 | // Zombie threads are in the null group. |
| 2088 | expandBufAddObjectId(pReply, JDWP::ObjectId(0)); |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2089 | error = JDWP::ERR_NONE; |
| 2090 | } else if (error == JDWP::ERR_NONE) { |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 2091 | ObjPtr<mirror::Class> c = soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread); |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2092 | CHECK(c != nullptr); |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2093 | ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_Thread_group); |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 2094 | CHECK(f != nullptr); |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2095 | ObjPtr<mirror::Object> group = f->GetObject(thread_object); |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 2096 | CHECK(group != nullptr); |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2097 | JDWP::ObjectId thread_group_id = gRegistry->Add(group); |
| 2098 | expandBufAddObjectId(pReply, thread_group_id); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2099 | } |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2100 | return error; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2101 | } |
| 2102 | |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2103 | static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa, |
| 2104 | JDWP::ObjectId thread_group_id, JDWP::JdwpError* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2105 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2106 | mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id, |
| 2107 | error); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2108 | if (*error != JDWP::ERR_NONE) { |
| 2109 | return nullptr; |
| 2110 | } |
| 2111 | if (thread_group == nullptr) { |
| 2112 | *error = JDWP::ERR_INVALID_OBJECT; |
| 2113 | return nullptr; |
| 2114 | } |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 2115 | ObjPtr<mirror::Class> c = |
| 2116 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ThreadGroup); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2117 | CHECK(c != nullptr); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2118 | if (!c->IsAssignableFrom(thread_group->GetClass())) { |
| 2119 | // This is not a java.lang.ThreadGroup. |
| 2120 | *error = JDWP::ERR_INVALID_THREAD_GROUP; |
| 2121 | return nullptr; |
| 2122 | } |
| 2123 | *error = JDWP::ERR_NONE; |
| 2124 | return thread_group; |
| 2125 | } |
| 2126 | |
| 2127 | JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) { |
| 2128 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2129 | JDWP::JdwpError error; |
| 2130 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2131 | if (error != JDWP::ERR_NONE) { |
| 2132 | return error; |
| 2133 | } |
| Mathieu Chartier | 268764d | 2016-09-13 12:09:38 -0700 | [diff] [blame] | 2134 | ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroupName"); |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2135 | ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_name); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2136 | CHECK(f != nullptr); |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2137 | ObjPtr<mirror::String> s = f->GetObject(thread_group)->AsString(); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2138 | |
| 2139 | std::string thread_group_name(s->ToModifiedUtf8()); |
| 2140 | expandBufAddUtf8String(pReply, thread_group_name); |
| 2141 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2142 | } |
| 2143 | |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2144 | JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2145 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2146 | JDWP::JdwpError error; |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2147 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2148 | if (error != JDWP::ERR_NONE) { |
| 2149 | return error; |
| 2150 | } |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2151 | ObjPtr<mirror::Object> parent; |
| Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2152 | { |
| Mathieu Chartier | 268764d | 2016-09-13 12:09:38 -0700 | [diff] [blame] | 2153 | ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroupParent"); |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2154 | ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_parent); |
| Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2155 | CHECK(f != nullptr); |
| 2156 | parent = f->GetObject(thread_group); |
| 2157 | } |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2158 | JDWP::ObjectId parent_group_id = gRegistry->Add(parent); |
| 2159 | expandBufAddObjectId(pReply, parent_group_id); |
| 2160 | return JDWP::ERR_NONE; |
| 2161 | } |
| 2162 | |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2163 | static void GetChildThreadGroups(mirror::Object* thread_group, |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2164 | std::vector<JDWP::ObjectId>* child_thread_group_ids) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2165 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2166 | CHECK(thread_group != nullptr); |
| 2167 | |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2168 | // Get the int "ngroups" count of this thread group... |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2169 | ArtField* ngroups_field = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_ngroups); |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2170 | CHECK(ngroups_field != nullptr); |
| 2171 | const int32_t size = ngroups_field->GetInt(thread_group); |
| 2172 | if (size == 0) { |
| 2173 | return; |
| Sebastien Hertz | e49e195 | 2014-10-13 11:27:13 +0200 | [diff] [blame] | 2174 | } |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2175 | |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2176 | // Get the ThreadGroup[] "groups" out of this thread group... |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2177 | ArtField* groups_field = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_groups); |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2178 | ObjPtr<mirror::Object> groups_array = groups_field->GetObject(thread_group); |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2179 | |
| 2180 | CHECK(groups_array != nullptr); |
| 2181 | CHECK(groups_array->IsObjectArray()); |
| 2182 | |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2183 | ObjPtr<mirror::ObjectArray<mirror::Object>> groups_array_as_array = |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2184 | groups_array->AsObjectArray<mirror::Object>(); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2185 | |
| 2186 | // Copy the first 'size' elements out of the array into the result. |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2187 | ObjectRegistry* registry = Dbg::GetObjectRegistry(); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2188 | for (int32_t i = 0; i < size; ++i) { |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2189 | 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] | 2190 | } |
| 2191 | } |
| 2192 | |
| 2193 | JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id, |
| 2194 | JDWP::ExpandBuf* pReply) { |
| 2195 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2196 | JDWP::JdwpError error; |
| 2197 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2198 | if (error != JDWP::ERR_NONE) { |
| 2199 | return error; |
| 2200 | } |
| 2201 | |
| 2202 | // Add child threads. |
| 2203 | { |
| 2204 | std::vector<JDWP::ObjectId> child_thread_ids; |
| 2205 | GetThreads(thread_group, &child_thread_ids); |
| 2206 | expandBufAdd4BE(pReply, child_thread_ids.size()); |
| 2207 | for (JDWP::ObjectId child_thread_id : child_thread_ids) { |
| 2208 | expandBufAddObjectId(pReply, child_thread_id); |
| 2209 | } |
| 2210 | } |
| 2211 | |
| 2212 | // Add child thread groups. |
| 2213 | { |
| 2214 | std::vector<JDWP::ObjectId> child_thread_groups_ids; |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2215 | GetChildThreadGroups(thread_group, &child_thread_groups_ids); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2216 | expandBufAdd4BE(pReply, child_thread_groups_ids.size()); |
| 2217 | for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) { |
| 2218 | expandBufAddObjectId(pReply, child_thread_group_id); |
| 2219 | } |
| 2220 | } |
| 2221 | |
| 2222 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2223 | } |
| 2224 | |
| 2225 | JDWP::ObjectId Dbg::GetSystemThreadGroupId() { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2226 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2227 | ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup); |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2228 | ObjPtr<mirror::Object> group = f->GetObject(f->GetDeclaringClass()); |
| Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 2229 | return gRegistry->Add(group); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2230 | } |
| 2231 | |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2232 | JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) { |
| 2233 | switch (state) { |
| 2234 | case kBlocked: |
| 2235 | return JDWP::TS_MONITOR; |
| 2236 | case kNative: |
| 2237 | case kRunnable: |
| 2238 | case kSuspended: |
| 2239 | return JDWP::TS_RUNNING; |
| 2240 | case kSleeping: |
| 2241 | return JDWP::TS_SLEEPING; |
| 2242 | case kStarting: |
| 2243 | case kTerminated: |
| 2244 | return JDWP::TS_ZOMBIE; |
| 2245 | case kTimedWaiting: |
| Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 2246 | case kWaitingForTaskProcessor: |
| 2247 | case kWaitingForLockInflation: |
| Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 2248 | case kWaitingForCheckPointsToRun: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2249 | case kWaitingForDebuggerSend: |
| 2250 | case kWaitingForDebuggerSuspension: |
| 2251 | case kWaitingForDebuggerToAttach: |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 2252 | case kWaitingForDeoptimization: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2253 | case kWaitingForGcToComplete: |
| Mathieu Chartier | b43390c | 2015-05-12 10:47:11 -0700 | [diff] [blame] | 2254 | case kWaitingForGetObjectsAllocated: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2255 | case kWaitingForJniOnLoad: |
| Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 2256 | case kWaitingForMethodTracingStart: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2257 | case kWaitingForSignalCatcherOutput: |
| Hiroshi Yamauchi | 0c8c303 | 2015-01-16 16:54:35 -0800 | [diff] [blame] | 2258 | case kWaitingForVisitObjects: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2259 | case kWaitingInMainDebuggerLoop: |
| 2260 | case kWaitingInMainSignalCatcherLoop: |
| 2261 | case kWaitingPerformingGc: |
| Mathieu Chartier | 90ef3db | 2015-08-04 15:19:41 -0700 | [diff] [blame] | 2262 | case kWaitingWeakGcRootRead: |
| Hiroshi Yamauchi | 76f55b0 | 2015-08-21 16:10:39 -0700 | [diff] [blame] | 2263 | case kWaitingForGcThreadFlip: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2264 | case kWaiting: |
| 2265 | return JDWP::TS_WAIT; |
| 2266 | // Don't add a 'default' here so the compiler can spot incompatible enum changes. |
| 2267 | } |
| 2268 | LOG(FATAL) << "Unknown thread state: " << state; |
| 2269 | return JDWP::TS_ZOMBIE; |
| 2270 | } |
| 2271 | |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2272 | JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus, |
| 2273 | JDWP::JdwpSuspendStatus* pSuspendStatus) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2274 | ScopedObjectAccess soa(Thread::Current()); |
| Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2275 | |
| Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 2276 | *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED; |
| 2277 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2278 | JDWP::JdwpError error; |
| 2279 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2280 | if (error != JDWP::ERR_NONE) { |
| 2281 | if (error == JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2282 | *pThreadStatus = JDWP::TS_ZOMBIE; |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2283 | return JDWP::ERR_NONE; |
| 2284 | } |
| 2285 | return error; |
| Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2286 | } |
| 2287 | |
| Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 2288 | if (IsSuspendedForDebugger(soa, thread)) { |
| 2289 | *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED; |
| Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2290 | } |
| 2291 | |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2292 | *pThreadStatus = ToJdwpThreadStatus(thread->GetState()); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2293 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2294 | } |
| 2295 | |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2296 | JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2297 | ScopedObjectAccess soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2298 | JDWP::JdwpError error; |
| 2299 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2300 | if (error != JDWP::ERR_NONE) { |
| 2301 | return error; |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2302 | } |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2303 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2304 | expandBufAdd4BE(pReply, thread->GetDebugSuspendCount()); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2305 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2306 | } |
| 2307 | |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2308 | JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) { |
| 2309 | ScopedObjectAccess soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2310 | JDWP::JdwpError error; |
| 2311 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2312 | if (error != JDWP::ERR_NONE) { |
| 2313 | return error; |
| 2314 | } |
| Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2315 | thread->Interrupt(soa.Self()); |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2316 | return JDWP::ERR_NONE; |
| 2317 | } |
| 2318 | |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2319 | static bool IsInDesiredThreadGroup(mirror::Object* desired_thread_group, mirror::Object* peer) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2320 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2321 | // Do we want threads from all thread groups? |
| 2322 | if (desired_thread_group == nullptr) { |
| 2323 | return true; |
| 2324 | } |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2325 | ArtField* thread_group_field = jni::DecodeArtField(WellKnownClasses::java_lang_Thread_group); |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2326 | DCHECK(thread_group_field != nullptr); |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2327 | ObjPtr<mirror::Object> group = thread_group_field->GetObject(peer); |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2328 | return (group == desired_thread_group); |
| 2329 | } |
| 2330 | |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2331 | void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2332 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2333 | std::list<Thread*> all_threads_list; |
| 2334 | { |
| 2335 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
| 2336 | all_threads_list = Runtime::Current()->GetThreadList()->GetList(); |
| 2337 | } |
| 2338 | for (Thread* t : all_threads_list) { |
| 2339 | if (t == Dbg::GetDebugThread()) { |
| 2340 | // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and |
| 2341 | // query all threads, so it's easier if we just don't tell them about this thread. |
| 2342 | continue; |
| 2343 | } |
| 2344 | if (t->IsStillStarting()) { |
| 2345 | // This thread is being started (and has been registered in the thread list). However, it is |
| 2346 | // not completely started yet so we must ignore it. |
| 2347 | continue; |
| 2348 | } |
| Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 2349 | mirror::Object* peer = t->GetPeerFromOtherThread(); |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2350 | if (peer == nullptr) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 2351 | // 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] | 2352 | // this thread yet. |
| 2353 | // TODO: if we identified threads to the debugger by their Thread* |
| 2354 | // rather than their peer's mirror::Object*, we could fix this. |
| 2355 | // Doing so might help us report ZOMBIE threads too. |
| 2356 | continue; |
| 2357 | } |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2358 | if (IsInDesiredThreadGroup(thread_group, peer)) { |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2359 | thread_ids->push_back(gRegistry->Add(peer)); |
| 2360 | } |
| 2361 | } |
| Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 2362 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2363 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2364 | static int GetStackDepth(Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_) { |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 2365 | struct CountStackDepthVisitor : public StackVisitor { |
| 2366 | explicit CountStackDepthVisitor(Thread* thread_in) |
| 2367 | : StackVisitor(thread_in, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2368 | depth(0) {} |
| 2369 | |
| 2370 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2371 | // annotalysis. |
| 2372 | bool VisitFrame() override NO_THREAD_SAFETY_ANALYSIS { |
| 2373 | if (!GetMethod()->IsRuntimeMethod()) { |
| 2374 | ++depth; |
| 2375 | } |
| 2376 | return true; |
| 2377 | } |
| 2378 | size_t depth; |
| 2379 | }; |
| 2380 | |
| 2381 | CountStackDepthVisitor visitor(thread); |
| 2382 | visitor.WalkStack(); |
| 2383 | return visitor.depth; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2384 | } |
| 2385 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2386 | JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2387 | ScopedObjectAccess soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2388 | JDWP::JdwpError error; |
| 2389 | *result = 0; |
| 2390 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2391 | if (error != JDWP::ERR_NONE) { |
| 2392 | return error; |
| 2393 | } |
| Elliott Hughes | f15f4a0 | 2013-01-09 10:09:38 -0800 | [diff] [blame] | 2394 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2395 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 2396 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2397 | *result = GetStackDepth(thread); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2398 | return JDWP::ERR_NONE; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2399 | } |
| 2400 | |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 2401 | JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame, |
| 2402 | size_t frame_count, JDWP::ExpandBuf* buf) { |
| 2403 | class GetFrameVisitor : public StackVisitor { |
| 2404 | public: |
| 2405 | GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in, |
| 2406 | JDWP::ExpandBuf* buf_in) |
| 2407 | REQUIRES_SHARED(Locks::mutator_lock_) |
| 2408 | : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2409 | depth_(0), |
| 2410 | start_frame_(start_frame_in), |
| 2411 | frame_count_(frame_count_in), |
| 2412 | buf_(buf_in) { |
| 2413 | expandBufAdd4BE(buf_, frame_count_); |
| 2414 | } |
| 2415 | |
| 2416 | bool VisitFrame() override REQUIRES_SHARED(Locks::mutator_lock_) { |
| 2417 | if (GetMethod()->IsRuntimeMethod()) { |
| 2418 | return true; // The debugger can't do anything useful with a frame that has no Method*. |
| 2419 | } |
| 2420 | if (depth_ >= start_frame_ + frame_count_) { |
| 2421 | return false; |
| 2422 | } |
| 2423 | if (depth_ >= start_frame_) { |
| 2424 | JDWP::FrameId frame_id(GetFrameId()); |
| 2425 | JDWP::JdwpLocation location; |
| 2426 | SetJdwpLocation(&location, GetMethod(), GetDexPc()); |
| 2427 | VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location; |
| 2428 | expandBufAdd8BE(buf_, frame_id); |
| 2429 | expandBufAddLocation(buf_, location); |
| 2430 | } |
| 2431 | ++depth_; |
| 2432 | return true; |
| 2433 | } |
| 2434 | |
| 2435 | private: |
| 2436 | size_t depth_; |
| 2437 | const size_t start_frame_; |
| 2438 | const size_t frame_count_; |
| 2439 | JDWP::ExpandBuf* buf_; |
| 2440 | }; |
| 2441 | |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2442 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2443 | JDWP::JdwpError error; |
| 2444 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2445 | if (error != JDWP::ERR_NONE) { |
| 2446 | return error; |
| 2447 | } |
| Elliott Hughes | f15f4a0 | 2013-01-09 10:09:38 -0800 | [diff] [blame] | 2448 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2449 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 2450 | } |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 2451 | GetFrameVisitor visitor(thread, start_frame, frame_count, buf); |
| 2452 | visitor.WalkStack(); |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2453 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2454 | } |
| 2455 | |
| 2456 | JDWP::ObjectId Dbg::GetThreadSelfId() { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2457 | return GetThreadId(Thread::Current()); |
| 2458 | } |
| 2459 | |
| 2460 | JDWP::ObjectId Dbg::GetThreadId(Thread* thread) { |
| Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 2461 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 2462 | return gRegistry->Add(thread->GetPeerFromOtherThread()); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2463 | } |
| 2464 | |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 2465 | void Dbg::SuspendVM() { |
| Hiroshi Yamauchi | 8f95cf3 | 2016-04-19 11:14:06 -0700 | [diff] [blame] | 2466 | // Avoid a deadlock between GC and debugger where GC gets suspended during GC. b/25800335. |
| 2467 | gc::ScopedGCCriticalSection gcs(Thread::Current(), |
| 2468 | gc::kGcCauseDebugger, |
| 2469 | gc::kCollectorTypeDebugger); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2470 | Runtime::Current()->GetThreadList()->SuspendAllForDebugger(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2471 | } |
| 2472 | |
| 2473 | void Dbg::ResumeVM() { |
| Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 2474 | Runtime::Current()->GetThreadList()->ResumeAllForDebugger(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2475 | } |
| 2476 | |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2477 | JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) { |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 2478 | Thread* self = Thread::Current(); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2479 | ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2480 | { |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 2481 | ScopedObjectAccess soa(self); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2482 | JDWP::JdwpError error; |
| 2483 | peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error))); |
| Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 2484 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2485 | if (peer.get() == nullptr) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2486 | return JDWP::ERR_THREAD_NOT_ALIVE; |
| 2487 | } |
| Ian Rogers | 4ad5cd3 | 2014-11-11 23:08:07 -0800 | [diff] [blame] | 2488 | // Suspend thread to build stack trace. |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 2489 | bool timed_out; |
| Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 2490 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
| Sebastien Hertz | cdd798d | 2017-04-18 18:28:51 +0200 | [diff] [blame] | 2491 | Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), |
| 2492 | request_suspension, |
| Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 2493 | SuspendReason::kForDebugger, |
| Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 2494 | &timed_out); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2495 | if (thread != nullptr) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2496 | return JDWP::ERR_NONE; |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 2497 | } else if (timed_out) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2498 | return JDWP::ERR_INTERNAL; |
| 2499 | } else { |
| 2500 | return JDWP::ERR_THREAD_NOT_ALIVE; |
| 2501 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2502 | } |
| 2503 | |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2504 | void Dbg::ResumeThread(JDWP::ObjectId thread_id) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2505 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2506 | JDWP::JdwpError error; |
| 2507 | mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 2508 | CHECK(peer != nullptr) << error; |
| jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 2509 | Thread* thread; |
| 2510 | { |
| 2511 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
| 2512 | thread = Thread::FromManagedThread(soa, peer); |
| 2513 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2514 | if (thread == nullptr) { |
| Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 2515 | LOG(WARNING) << "No such thread for resume: " << peer; |
| 2516 | return; |
| 2517 | } |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2518 | bool needs_resume; |
| 2519 | { |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2520 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
| Sebastien Hertz | 70d6027 | 2017-04-14 14:18:36 +0200 | [diff] [blame] | 2521 | needs_resume = thread->GetDebugSuspendCount() > 0; |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2522 | } |
| 2523 | if (needs_resume) { |
| Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 2524 | bool resumed = Runtime::Current()->GetThreadList()->Resume(thread, SuspendReason::kForDebugger); |
| 2525 | DCHECK(resumed); |
| Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 2526 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2527 | } |
| 2528 | |
| 2529 | void Dbg::SuspendSelf() { |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 2530 | Runtime::Current()->GetThreadList()->SuspendSelfForDebugger(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2531 | } |
| 2532 | |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 2533 | struct GetThisVisitor : public StackVisitor { |
| 2534 | GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in) |
| 2535 | REQUIRES_SHARED(Locks::mutator_lock_) |
| 2536 | : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2537 | this_object(nullptr), |
| 2538 | frame_id(frame_id_in) {} |
| 2539 | |
| 2540 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2541 | // annotalysis. |
| 2542 | bool VisitFrame() override NO_THREAD_SAFETY_ANALYSIS { |
| 2543 | if (frame_id != GetFrameId()) { |
| 2544 | return true; // continue |
| 2545 | } else { |
| 2546 | this_object = GetThisObject(); |
| 2547 | return false; |
| 2548 | } |
| 2549 | } |
| 2550 | |
| 2551 | mirror::Object* this_object; |
| 2552 | JDWP::FrameId frame_id; |
| 2553 | }; |
| 2554 | |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2555 | JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, |
| 2556 | JDWP::ObjectId* result) { |
| 2557 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2558 | JDWP::JdwpError error; |
| 2559 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2560 | if (error != JDWP::ERR_NONE) { |
| 2561 | return error; |
| 2562 | } |
| 2563 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2564 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2565 | } |
| Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2566 | std::unique_ptr<Context> context(Context::Create()); |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 2567 | GetThisVisitor visitor(thread, context.get(), frame_id); |
| 2568 | visitor.WalkStack(); |
| 2569 | *result = gRegistry->Add(visitor.this_object); |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2570 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2571 | } |
| 2572 | |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 2573 | // Walks the stack until we find the frame with the given FrameId. |
| 2574 | class FindFrameVisitor final : public StackVisitor { |
| 2575 | public: |
| 2576 | FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id) |
| 2577 | REQUIRES_SHARED(Locks::mutator_lock_) |
| 2578 | : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2579 | frame_id_(frame_id), |
| 2580 | error_(JDWP::ERR_INVALID_FRAMEID) {} |
| 2581 | |
| 2582 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2583 | // annotalysis. |
| 2584 | bool VisitFrame() override NO_THREAD_SAFETY_ANALYSIS { |
| 2585 | if (GetFrameId() != frame_id_) { |
| 2586 | return true; // Not our frame, carry on. |
| 2587 | } |
| 2588 | ArtMethod* m = GetMethod(); |
| 2589 | if (m->IsNative()) { |
| 2590 | // We can't read/write local value from/into native method. |
| 2591 | error_ = JDWP::ERR_OPAQUE_FRAME; |
| 2592 | } else { |
| 2593 | // We found our frame. |
| 2594 | error_ = JDWP::ERR_NONE; |
| 2595 | } |
| 2596 | return false; |
| 2597 | } |
| 2598 | |
| 2599 | JDWP::JdwpError GetError() const { |
| 2600 | return error_; |
| 2601 | } |
| 2602 | |
| 2603 | private: |
| 2604 | const JDWP::FrameId frame_id_; |
| 2605 | JDWP::JdwpError error_; |
| 2606 | |
| 2607 | DISALLOW_COPY_AND_ASSIGN(FindFrameVisitor); |
| 2608 | }; |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2609 | |
| 2610 | JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) { |
| 2611 | JDWP::ObjectId thread_id = request->ReadThreadId(); |
| 2612 | JDWP::FrameId frame_id = request->ReadFrameId(); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2613 | |
| 2614 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2615 | JDWP::JdwpError error; |
| 2616 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2617 | if (error != JDWP::ERR_NONE) { |
| 2618 | return error; |
| 2619 | } |
| 2620 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2621 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2622 | } |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 2623 | // Find the frame with the given frame_id. |
| 2624 | std::unique_ptr<Context> context(Context::Create()); |
| 2625 | FindFrameVisitor visitor(thread, context.get(), frame_id); |
| 2626 | visitor.WalkStack(); |
| 2627 | if (visitor.GetError() != JDWP::ERR_NONE) { |
| 2628 | return visitor.GetError(); |
| 2629 | } |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2630 | |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 2631 | // Read the values from visitor's context. |
| 2632 | int32_t slot_count = request->ReadSigned32("slot count"); |
| 2633 | expandBufAdd4BE(pReply, slot_count); /* "int values" */ |
| 2634 | for (int32_t i = 0; i < slot_count; ++i) { |
| 2635 | uint32_t slot = request->ReadUnsigned32("slot"); |
| 2636 | JDWP::JdwpTag reqSigByte = request->ReadTag(); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2637 | |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 2638 | VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte; |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2639 | |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 2640 | size_t width = Dbg::GetTagWidth(reqSigByte); |
| 2641 | uint8_t* ptr = expandBufAddSpace(pReply, width + 1); |
| 2642 | error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width); |
| 2643 | if (error != JDWP::ERR_NONE) { |
| 2644 | return error; |
| 2645 | } |
| 2646 | } |
| 2647 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2648 | } |
| 2649 | |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2650 | constexpr JDWP::JdwpError kStackFrameLocalAccessError = JDWP::ERR_ABSENT_INFORMATION; |
| 2651 | |
| 2652 | static std::string GetStackContextAsString(const StackVisitor& visitor) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2653 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2654 | 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] | 2655 | ArtMethod::PrettyMethod(visitor.GetMethod()).c_str()); |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2656 | } |
| 2657 | |
| 2658 | static JDWP::JdwpError FailGetLocalValue(const StackVisitor& visitor, uint16_t vreg, |
| 2659 | JDWP::JdwpTag tag) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2660 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2661 | LOG(ERROR) << "Failed to read " << tag << " local from register v" << vreg |
| 2662 | << GetStackContextAsString(visitor); |
| 2663 | return kStackFrameLocalAccessError; |
| 2664 | } |
| 2665 | |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2666 | JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa, |
| 2667 | int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2668 | ArtMethod* m = visitor.GetMethod(); |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2669 | JDWP::JdwpError error = JDWP::ERR_NONE; |
| 2670 | uint16_t vreg = DemangleSlot(slot, m, &error); |
| 2671 | if (error != JDWP::ERR_NONE) { |
| 2672 | return error; |
| 2673 | } |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2674 | // 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] | 2675 | switch (tag) { |
| 2676 | case JDWP::JT_BOOLEAN: { |
| 2677 | CHECK_EQ(width, 1U); |
| 2678 | uint32_t intVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2679 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2680 | return FailGetLocalValue(visitor, vreg, tag); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2681 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2682 | VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal; |
| 2683 | JDWP::Set1(buf + 1, intVal != 0); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2684 | break; |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2685 | } |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2686 | case JDWP::JT_BYTE: { |
| 2687 | CHECK_EQ(width, 1U); |
| 2688 | uint32_t intVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2689 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2690 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2691 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2692 | VLOG(jdwp) << "get byte local " << vreg << " = " << intVal; |
| 2693 | JDWP::Set1(buf + 1, intVal); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2694 | break; |
| 2695 | } |
| 2696 | case JDWP::JT_SHORT: |
| 2697 | case JDWP::JT_CHAR: { |
| 2698 | CHECK_EQ(width, 2U); |
| 2699 | uint32_t intVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2700 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2701 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2702 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2703 | VLOG(jdwp) << "get short/char local " << vreg << " = " << intVal; |
| 2704 | JDWP::Set2BE(buf + 1, intVal); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2705 | break; |
| 2706 | } |
| 2707 | case JDWP::JT_INT: { |
| 2708 | CHECK_EQ(width, 4U); |
| 2709 | uint32_t intVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2710 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2711 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2712 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2713 | VLOG(jdwp) << "get int local " << vreg << " = " << intVal; |
| 2714 | JDWP::Set4BE(buf + 1, intVal); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2715 | break; |
| 2716 | } |
| 2717 | case JDWP::JT_FLOAT: { |
| 2718 | CHECK_EQ(width, 4U); |
| 2719 | uint32_t intVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2720 | if (!visitor.GetVReg(m, vreg, kFloatVReg, &intVal)) { |
| 2721 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2722 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2723 | VLOG(jdwp) << "get float local " << vreg << " = " << intVal; |
| 2724 | JDWP::Set4BE(buf + 1, intVal); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2725 | break; |
| 2726 | } |
| 2727 | case JDWP::JT_ARRAY: |
| 2728 | case JDWP::JT_CLASS_LOADER: |
| 2729 | case JDWP::JT_CLASS_OBJECT: |
| 2730 | case JDWP::JT_OBJECT: |
| 2731 | case JDWP::JT_STRING: |
| 2732 | case JDWP::JT_THREAD: |
| 2733 | case JDWP::JT_THREAD_GROUP: { |
| 2734 | CHECK_EQ(width, sizeof(JDWP::ObjectId)); |
| 2735 | uint32_t intVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2736 | if (!visitor.GetVReg(m, vreg, kReferenceVReg, &intVal)) { |
| 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 | mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal); |
| 2740 | VLOG(jdwp) << "get " << tag << " object local " << vreg << " = " << o; |
| 2741 | if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) { |
| 2742 | LOG(FATAL) << StringPrintf("Found invalid object %#" PRIxPTR " in register v%u", |
| 2743 | reinterpret_cast<uintptr_t>(o), vreg) |
| 2744 | << GetStackContextAsString(visitor); |
| 2745 | UNREACHABLE(); |
| 2746 | } |
| 2747 | tag = TagFromObject(soa, o); |
| 2748 | JDWP::SetObjectId(buf + 1, gRegistry->Add(o)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2749 | break; |
| 2750 | } |
| 2751 | case JDWP::JT_DOUBLE: { |
| 2752 | CHECK_EQ(width, 8U); |
| 2753 | uint64_t longVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2754 | if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) { |
| 2755 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2756 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2757 | VLOG(jdwp) << "get double local " << vreg << " = " << longVal; |
| 2758 | JDWP::Set8BE(buf + 1, longVal); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2759 | break; |
| 2760 | } |
| 2761 | case JDWP::JT_LONG: { |
| 2762 | CHECK_EQ(width, 8U); |
| 2763 | uint64_t longVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2764 | if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) { |
| 2765 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2766 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2767 | VLOG(jdwp) << "get long local " << vreg << " = " << longVal; |
| 2768 | JDWP::Set8BE(buf + 1, longVal); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2769 | break; |
| 2770 | } |
| 2771 | default: |
| 2772 | LOG(FATAL) << "Unknown tag " << tag; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2773 | UNREACHABLE(); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2774 | } |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2775 | |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2776 | // Prepend tag, which may have been updated. |
| 2777 | JDWP::Set1(buf, tag); |
| 2778 | return JDWP::ERR_NONE; |
| 2779 | } |
| 2780 | |
| 2781 | JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) { |
| 2782 | JDWP::ObjectId thread_id = request->ReadThreadId(); |
| 2783 | JDWP::FrameId frame_id = request->ReadFrameId(); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2784 | |
| 2785 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2786 | JDWP::JdwpError error; |
| 2787 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2788 | if (error != JDWP::ERR_NONE) { |
| 2789 | return error; |
| 2790 | } |
| 2791 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2792 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2793 | } |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 2794 | // Find the frame with the given frame_id. |
| 2795 | std::unique_ptr<Context> context(Context::Create()); |
| 2796 | FindFrameVisitor visitor(thread, context.get(), frame_id); |
| 2797 | visitor.WalkStack(); |
| 2798 | if (visitor.GetError() != JDWP::ERR_NONE) { |
| 2799 | return visitor.GetError(); |
| 2800 | } |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2801 | |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 2802 | // Writes the values into visitor's context. |
| 2803 | int32_t slot_count = request->ReadSigned32("slot count"); |
| 2804 | for (int32_t i = 0; i < slot_count; ++i) { |
| 2805 | uint32_t slot = request->ReadUnsigned32("slot"); |
| 2806 | JDWP::JdwpTag sigByte = request->ReadTag(); |
| 2807 | size_t width = Dbg::GetTagWidth(sigByte); |
| 2808 | uint64_t value = request->ReadValue(width); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2809 | |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 2810 | VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value; |
| 2811 | error = Dbg::SetLocalValue(thread, visitor, slot, sigByte, value, width); |
| 2812 | if (error != JDWP::ERR_NONE) { |
| 2813 | return error; |
| 2814 | } |
| 2815 | } |
| 2816 | return JDWP::ERR_NONE; |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2817 | } |
| 2818 | |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2819 | template<typename T> |
| 2820 | static JDWP::JdwpError FailSetLocalValue(const StackVisitor& visitor, uint16_t vreg, |
| 2821 | JDWP::JdwpTag tag, T value) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2822 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2823 | LOG(ERROR) << "Failed to write " << tag << " local " << value |
| 2824 | << " (0x" << std::hex << value << ") into register v" << vreg |
| 2825 | << GetStackContextAsString(visitor); |
| 2826 | return kStackFrameLocalAccessError; |
| 2827 | } |
| 2828 | |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2829 | JDWP::JdwpError Dbg::SetLocalValue(Thread* thread, StackVisitor& visitor, int slot, |
| 2830 | JDWP::JdwpTag tag, uint64_t value, size_t width) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2831 | ArtMethod* m = visitor.GetMethod(); |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2832 | JDWP::JdwpError error = JDWP::ERR_NONE; |
| 2833 | uint16_t vreg = DemangleSlot(slot, m, &error); |
| 2834 | if (error != JDWP::ERR_NONE) { |
| 2835 | return error; |
| 2836 | } |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2837 | // 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] | 2838 | switch (tag) { |
| 2839 | case JDWP::JT_BOOLEAN: |
| 2840 | case JDWP::JT_BYTE: |
| 2841 | CHECK_EQ(width, 1U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2842 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2843 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2844 | } |
| 2845 | break; |
| 2846 | case JDWP::JT_SHORT: |
| 2847 | case JDWP::JT_CHAR: |
| 2848 | CHECK_EQ(width, 2U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2849 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2850 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2851 | } |
| 2852 | break; |
| 2853 | case JDWP::JT_INT: |
| 2854 | CHECK_EQ(width, 4U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2855 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2856 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2857 | } |
| 2858 | break; |
| 2859 | case JDWP::JT_FLOAT: |
| 2860 | CHECK_EQ(width, 4U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2861 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2862 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2863 | } |
| 2864 | break; |
| 2865 | case JDWP::JT_ARRAY: |
| 2866 | case JDWP::JT_CLASS_LOADER: |
| 2867 | case JDWP::JT_CLASS_OBJECT: |
| 2868 | case JDWP::JT_OBJECT: |
| 2869 | case JDWP::JT_STRING: |
| 2870 | case JDWP::JT_THREAD: |
| 2871 | case JDWP::JT_THREAD_GROUP: { |
| 2872 | CHECK_EQ(width, sizeof(JDWP::ObjectId)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2873 | mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value), |
| 2874 | &error); |
| 2875 | if (error != JDWP::ERR_NONE) { |
| 2876 | VLOG(jdwp) << tag << " object " << o << " is an invalid object"; |
| 2877 | return JDWP::ERR_INVALID_OBJECT; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2878 | } |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2879 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)), |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2880 | kReferenceVReg)) { |
| 2881 | return FailSetLocalValue(visitor, vreg, tag, reinterpret_cast<uintptr_t>(o)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2882 | } |
| 2883 | break; |
| 2884 | } |
| 2885 | case JDWP::JT_DOUBLE: { |
| 2886 | CHECK_EQ(width, 8U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2887 | if (!visitor.SetVRegPair(m, vreg, value, kDoubleLoVReg, kDoubleHiVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2888 | return FailSetLocalValue(visitor, vreg, tag, value); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2889 | } |
| 2890 | break; |
| 2891 | } |
| 2892 | case JDWP::JT_LONG: { |
| 2893 | CHECK_EQ(width, 8U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2894 | if (!visitor.SetVRegPair(m, vreg, value, kLongLoVReg, kLongHiVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2895 | return FailSetLocalValue(visitor, vreg, tag, value); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2896 | } |
| 2897 | break; |
| 2898 | } |
| 2899 | default: |
| 2900 | LOG(FATAL) << "Unknown tag " << tag; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2901 | UNREACHABLE(); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2902 | } |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2903 | |
| 2904 | // If we set the local variable in a compiled frame, we need to trigger a deoptimization of |
| 2905 | // the stack so we continue execution with the interpreter using the new value(s) of the updated |
| 2906 | // local variable(s). To achieve this, we install instrumentation exit stub on each method of the |
| 2907 | // thread's stack. The stub will cause the deoptimization to happen. |
| 2908 | if (!visitor.IsShadowFrame() && thread->HasDebuggerShadowFrames()) { |
| 2909 | Runtime::Current()->GetInstrumentation()->InstrumentThreadStack(thread); |
| 2910 | } |
| 2911 | |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2912 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2913 | } |
| 2914 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2915 | static void SetEventLocation(JDWP::EventLocation* location, ArtMethod* m, uint32_t dex_pc) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2916 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2917 | DCHECK(location != nullptr); |
| 2918 | if (m == nullptr) { |
| 2919 | memset(location, 0, sizeof(*location)); |
| 2920 | } else { |
| Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 2921 | location->method = m->GetCanonicalMethod(kRuntimePointerSize); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2922 | 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] | 2923 | } |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2924 | } |
| 2925 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2926 | void Dbg::PostLocationEvent(ArtMethod* m, int dex_pc, mirror::Object* this_object, |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 2927 | int event_flags, const JValue* return_value) { |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2928 | if (!IsDebuggerActive()) { |
| 2929 | return; |
| 2930 | } |
| 2931 | DCHECK(m != nullptr); |
| 2932 | DCHECK_EQ(m->IsStatic(), this_object == nullptr); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2933 | JDWP::EventLocation location; |
| 2934 | SetEventLocation(&location, m, dex_pc); |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2935 | |
| Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2936 | // We need to be sure no exception is pending when calling JdwpState::PostLocationEvent. |
| 2937 | // This is required to be able to call JNI functions to create JDWP ids. To achieve this, |
| 2938 | // we temporarily clear the current thread's exception (if any) and will restore it after |
| 2939 | // the call. |
| 2940 | // Note: the only way to get a pending exception here is to suspend on a move-exception |
| 2941 | // instruction. |
| 2942 | Thread* const self = Thread::Current(); |
| 2943 | StackHandleScope<1> hs(self); |
| 2944 | Handle<mirror::Throwable> pending_exception(hs.NewHandle(self->GetException())); |
| 2945 | self->ClearException(); |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 2946 | if (kIsDebugBuild && pending_exception != nullptr) { |
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 2947 | const Instruction& instr = location.method->DexInstructions().InstructionAt(location.dex_pc); |
| 2948 | CHECK_EQ(Instruction::MOVE_EXCEPTION, instr.Opcode()); |
| Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2949 | } |
| 2950 | |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2951 | gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value); |
| Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2952 | |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 2953 | if (pending_exception != nullptr) { |
| Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2954 | self->SetException(pending_exception.Get()); |
| 2955 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2956 | } |
| 2957 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2958 | void Dbg::PostFieldAccessEvent(ArtMethod* m, int dex_pc, |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2959 | mirror::Object* this_object, ArtField* f) { |
| Alex Light | e00ec30 | 2017-06-16 08:56:43 -0700 | [diff] [blame] | 2960 | // TODO We should send events for native methods. |
| 2961 | if (!IsDebuggerActive() || m->IsNative()) { |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2962 | return; |
| 2963 | } |
| 2964 | DCHECK(m != nullptr); |
| 2965 | DCHECK(f != nullptr); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2966 | JDWP::EventLocation location; |
| 2967 | SetEventLocation(&location, m, dex_pc); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2968 | |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2969 | gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2970 | } |
| 2971 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2972 | void Dbg::PostFieldModificationEvent(ArtMethod* m, int dex_pc, |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2973 | mirror::Object* this_object, ArtField* f, |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2974 | const JValue* field_value) { |
| Alex Light | e00ec30 | 2017-06-16 08:56:43 -0700 | [diff] [blame] | 2975 | // TODO We should send events for native methods. |
| 2976 | if (!IsDebuggerActive() || m->IsNative()) { |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2977 | return; |
| 2978 | } |
| 2979 | DCHECK(m != nullptr); |
| 2980 | DCHECK(f != nullptr); |
| 2981 | DCHECK(field_value != nullptr); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2982 | JDWP::EventLocation location; |
| 2983 | SetEventLocation(&location, m, dex_pc); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2984 | |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2985 | gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2986 | } |
| 2987 | |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 2988 | /** |
| 2989 | * Finds the location where this exception will be caught. We search until we reach the top |
| 2990 | * frame, in which case this exception is considered uncaught. |
| 2991 | */ |
| 2992 | class CatchLocationFinder : public StackVisitor { |
| 2993 | public: |
| 2994 | CatchLocationFinder(Thread* self, const Handle<mirror::Throwable>& exception, Context* context) |
| 2995 | REQUIRES_SHARED(Locks::mutator_lock_) |
| 2996 | : StackVisitor(self, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2997 | exception_(exception), |
| 2998 | handle_scope_(self), |
| 2999 | this_at_throw_(handle_scope_.NewHandle<mirror::Object>(nullptr)), |
| 3000 | catch_method_(nullptr), |
| 3001 | throw_method_(nullptr), |
| 3002 | catch_dex_pc_(dex::kDexNoIndex), |
| 3003 | throw_dex_pc_(dex::kDexNoIndex) { |
| 3004 | } |
| 3005 | |
| 3006 | bool VisitFrame() override REQUIRES_SHARED(Locks::mutator_lock_) { |
| 3007 | ArtMethod* method = GetMethod(); |
| 3008 | DCHECK(method != nullptr); |
| 3009 | if (method->IsRuntimeMethod()) { |
| 3010 | // Ignore callee save method. |
| 3011 | DCHECK(method->IsCalleeSaveMethod()); |
| 3012 | return true; |
| 3013 | } |
| 3014 | |
| 3015 | uint32_t dex_pc = GetDexPc(); |
| 3016 | if (throw_method_ == nullptr) { |
| 3017 | // First Java method found. It is either the method that threw the exception, |
| 3018 | // or the Java native method that is reporting an exception thrown by |
| 3019 | // native code. |
| 3020 | this_at_throw_.Assign(GetThisObject()); |
| 3021 | throw_method_ = method; |
| 3022 | throw_dex_pc_ = dex_pc; |
| 3023 | } |
| 3024 | |
| 3025 | if (dex_pc != dex::kDexNoIndex) { |
| 3026 | StackHandleScope<1> hs(GetThread()); |
| 3027 | uint32_t found_dex_pc; |
| 3028 | Handle<mirror::Class> exception_class(hs.NewHandle(exception_->GetClass())); |
| 3029 | bool unused_clear_exception; |
| 3030 | found_dex_pc = method->FindCatchBlock(exception_class, dex_pc, &unused_clear_exception); |
| 3031 | if (found_dex_pc != dex::kDexNoIndex) { |
| 3032 | catch_method_ = method; |
| 3033 | catch_dex_pc_ = found_dex_pc; |
| 3034 | return false; // End stack walk. |
| 3035 | } |
| 3036 | } |
| 3037 | return true; // Continue stack walk. |
| 3038 | } |
| 3039 | |
| 3040 | ArtMethod* GetCatchMethod() REQUIRES_SHARED(Locks::mutator_lock_) { |
| 3041 | return catch_method_; |
| 3042 | } |
| 3043 | |
| 3044 | ArtMethod* GetThrowMethod() REQUIRES_SHARED(Locks::mutator_lock_) { |
| 3045 | return throw_method_; |
| 3046 | } |
| 3047 | |
| 3048 | mirror::Object* GetThisAtThrow() REQUIRES_SHARED(Locks::mutator_lock_) { |
| 3049 | return this_at_throw_.Get(); |
| 3050 | } |
| 3051 | |
| 3052 | uint32_t GetCatchDexPc() const { |
| 3053 | return catch_dex_pc_; |
| 3054 | } |
| 3055 | |
| 3056 | uint32_t GetThrowDexPc() const { |
| 3057 | return throw_dex_pc_; |
| 3058 | } |
| 3059 | |
| 3060 | private: |
| 3061 | const Handle<mirror::Throwable>& exception_; |
| 3062 | StackHandleScope<1> handle_scope_; |
| 3063 | MutableHandle<mirror::Object> this_at_throw_; |
| 3064 | ArtMethod* catch_method_; |
| 3065 | ArtMethod* throw_method_; |
| 3066 | uint32_t catch_dex_pc_; |
| 3067 | uint32_t throw_dex_pc_; |
| 3068 | |
| 3069 | DISALLOW_COPY_AND_ASSIGN(CatchLocationFinder); |
| 3070 | }; |
| 3071 | |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3072 | void Dbg::PostException(mirror::Throwable* exception_object) { |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 3073 | if (!IsDebuggerActive()) { |
| Ian Rogers | 0ad5bb8 | 2011-12-07 10:16:32 -0800 | [diff] [blame] | 3074 | return; |
| 3075 | } |
| Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 3076 | Thread* const self = Thread::Current(); |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 3077 | StackHandleScope<1> handle_scope(self); |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3078 | Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object)); |
| 3079 | std::unique_ptr<Context> context(Context::Create()); |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 3080 | CatchLocationFinder clf(self, h_exception, context.get()); |
| 3081 | clf.WalkStack(/* include_transitions= */ false); |
| Andreas Gampe | 36f8d22 | 2018-10-08 08:13:42 -0700 | [diff] [blame] | 3082 | JDWP::EventLocation exception_throw_location; |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 3083 | SetEventLocation(&exception_throw_location, clf.GetThrowMethod(), clf.GetThrowDexPc()); |
| Andreas Gampe | 36f8d22 | 2018-10-08 08:13:42 -0700 | [diff] [blame] | 3084 | JDWP::EventLocation exception_catch_location; |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 3085 | SetEventLocation(&exception_catch_location, clf.GetCatchMethod(), clf.GetCatchDexPc()); |
| Andreas Gampe | 36f8d22 | 2018-10-08 08:13:42 -0700 | [diff] [blame] | 3086 | |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 3087 | gJdwpState->PostException(&exception_throw_location, h_exception.Get(), &exception_catch_location, |
| 3088 | clf.GetThisAtThrow()); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3089 | } |
| 3090 | |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 3091 | void Dbg::PostClassPrepare(mirror::Class* c) { |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 3092 | if (!IsDebuggerActive()) { |
| Elliott Hughes | 4740cdf | 2011-12-07 14:07:12 -0800 | [diff] [blame] | 3093 | return; |
| 3094 | } |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 3095 | gJdwpState->PostClassPrepare(c); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3096 | } |
| 3097 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3098 | void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object, |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3099 | ArtMethod* m, uint32_t dex_pc, |
| Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 3100 | int event_flags, const JValue* return_value) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3101 | if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) { |
| Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 3102 | return; |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3103 | } |
| 3104 | |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3105 | if (IsBreakpoint(m, dex_pc)) { |
| 3106 | event_flags |= kBreakpoint; |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3107 | } |
| 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 | // If the debugger is single-stepping one of our threads, check to |
| 3110 | // see if we're that thread and we've reached a step point. |
| 3111 | const SingleStepControl* single_step_control = thread->GetSingleStepControl(); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3112 | if (single_step_control != nullptr) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3113 | CHECK(!m->IsNative()); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3114 | if (single_step_control->GetStepDepth() == JDWP::SD_INTO) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3115 | // Step into method calls. We break when the line number |
| 3116 | // or method pointer changes. If we're in SS_MIN mode, we |
| 3117 | // always stop. |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3118 | if (single_step_control->GetMethod() != m) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3119 | event_flags |= kSingleStep; |
| 3120 | VLOG(jdwp) << "SS new method"; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3121 | } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3122 | event_flags |= kSingleStep; |
| 3123 | VLOG(jdwp) << "SS new instruction"; |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3124 | } else if (single_step_control->ContainsDexPc(dex_pc)) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3125 | event_flags |= kSingleStep; |
| 3126 | VLOG(jdwp) << "SS new line"; |
| 3127 | } |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3128 | } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3129 | // Step over method calls. We break when the line number is |
| 3130 | // different and the frame depth is <= the original frame |
| 3131 | // depth. (We can't just compare on the method, because we |
| 3132 | // might get unrolled past it by an exception, and it's tricky |
| 3133 | // to identify recursion.) |
| 3134 | |
| 3135 | int stack_depth = GetStackDepth(thread); |
| 3136 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3137 | if (stack_depth < single_step_control->GetStackDepth()) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3138 | // Popped up one or more frames, always trigger. |
| 3139 | event_flags |= kSingleStep; |
| 3140 | VLOG(jdwp) << "SS method pop"; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3141 | } else if (stack_depth == single_step_control->GetStackDepth()) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3142 | // Same depth, see if we moved. |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3143 | if (single_step_control->GetStepSize() == JDWP::SS_MIN) { |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3144 | event_flags |= kSingleStep; |
| 3145 | VLOG(jdwp) << "SS new instruction"; |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3146 | } else if (single_step_control->ContainsDexPc(dex_pc)) { |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3147 | event_flags |= kSingleStep; |
| 3148 | VLOG(jdwp) << "SS new line"; |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3149 | } |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3150 | } |
| 3151 | } else { |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3152 | CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT); |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3153 | // Return from the current method. We break when the frame |
| 3154 | // depth pops up. |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3155 | |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3156 | // This differs from the "method exit" break in that it stops |
| 3157 | // with the PC at the next instruction in the returned-to |
| 3158 | // function, rather than the end of the returning function. |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3159 | |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3160 | int stack_depth = GetStackDepth(thread); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3161 | if (stack_depth < single_step_control->GetStackDepth()) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3162 | event_flags |= kSingleStep; |
| 3163 | VLOG(jdwp) << "SS method pop"; |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3164 | } |
| 3165 | } |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3166 | } |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3167 | |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3168 | // If there's something interesting going on, see if it matches one |
| 3169 | // of the debugger filters. |
| 3170 | if (event_flags != 0) { |
| Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 3171 | Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value); |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3172 | } |
| 3173 | } |
| 3174 | |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3175 | size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) { |
| 3176 | switch (instrumentation_event) { |
| 3177 | case instrumentation::Instrumentation::kMethodEntered: |
| 3178 | return &method_enter_event_ref_count_; |
| 3179 | case instrumentation::Instrumentation::kMethodExited: |
| 3180 | return &method_exit_event_ref_count_; |
| 3181 | case instrumentation::Instrumentation::kDexPcMoved: |
| 3182 | return &dex_pc_change_event_ref_count_; |
| 3183 | case instrumentation::Instrumentation::kFieldRead: |
| 3184 | return &field_read_event_ref_count_; |
| 3185 | case instrumentation::Instrumentation::kFieldWritten: |
| 3186 | return &field_write_event_ref_count_; |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 3187 | case instrumentation::Instrumentation::kExceptionThrown: |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3188 | return &exception_catch_event_ref_count_; |
| 3189 | default: |
| 3190 | return nullptr; |
| 3191 | } |
| 3192 | } |
| 3193 | |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3194 | // Process request while all mutator threads are suspended. |
| 3195 | void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3196 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3197 | switch (request.GetKind()) { |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3198 | case DeoptimizationRequest::kNothing: |
| 3199 | LOG(WARNING) << "Ignoring empty deoptimization request."; |
| 3200 | break; |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3201 | case DeoptimizationRequest::kRegisterForEvent: |
| 3202 | VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x", |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3203 | request.InstrumentationEvent()); |
| 3204 | instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent()); |
| 3205 | instrumentation_events_ |= request.InstrumentationEvent(); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3206 | break; |
| 3207 | case DeoptimizationRequest::kUnregisterForEvent: |
| 3208 | VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x", |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3209 | request.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3210 | instrumentation->RemoveListener(&gDebugInstrumentationListener, |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3211 | request.InstrumentationEvent()); |
| 3212 | instrumentation_events_ &= ~request.InstrumentationEvent(); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3213 | break; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3214 | case DeoptimizationRequest::kFullDeoptimization: |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3215 | VLOG(jdwp) << "Deoptimize the world ..."; |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 3216 | instrumentation->DeoptimizeEverything(kDbgInstrumentationKey); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3217 | VLOG(jdwp) << "Deoptimize the world DONE"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3218 | break; |
| 3219 | case DeoptimizationRequest::kFullUndeoptimization: |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3220 | VLOG(jdwp) << "Undeoptimize the world ..."; |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 3221 | instrumentation->UndeoptimizeEverything(kDbgInstrumentationKey); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3222 | VLOG(jdwp) << "Undeoptimize the world DONE"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3223 | break; |
| 3224 | case DeoptimizationRequest::kSelectiveDeoptimization: |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3225 | VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ..."; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3226 | instrumentation->Deoptimize(request.Method()); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3227 | VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3228 | break; |
| 3229 | case DeoptimizationRequest::kSelectiveUndeoptimization: |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3230 | VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ..."; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3231 | instrumentation->Undeoptimize(request.Method()); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3232 | VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3233 | break; |
| 3234 | default: |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3235 | LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind(); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3236 | break; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3237 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3238 | } |
| 3239 | |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3240 | void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3241 | if (req.GetKind() == DeoptimizationRequest::kNothing) { |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3242 | // Nothing to do. |
| 3243 | return; |
| 3244 | } |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3245 | MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3246 | RequestDeoptimizationLocked(req); |
| 3247 | } |
| 3248 | |
| 3249 | void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3250 | switch (req.GetKind()) { |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3251 | case DeoptimizationRequest::kRegisterForEvent: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3252 | DCHECK_NE(req.InstrumentationEvent(), 0u); |
| 3253 | size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3254 | CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x", |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3255 | req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3256 | if (*counter == 0) { |
| Sebastien Hertz | 7d2ae43 | 2014-05-15 11:26:34 +0200 | [diff] [blame] | 3257 | 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] | 3258 | deoptimization_requests_.size(), req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3259 | deoptimization_requests_.push_back(req); |
| 3260 | } |
| 3261 | *counter = *counter + 1; |
| 3262 | break; |
| 3263 | } |
| 3264 | case DeoptimizationRequest::kUnregisterForEvent: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3265 | DCHECK_NE(req.InstrumentationEvent(), 0u); |
| 3266 | size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3267 | CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x", |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3268 | req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3269 | *counter = *counter - 1; |
| 3270 | if (*counter == 0) { |
| Sebastien Hertz | 7d2ae43 | 2014-05-15 11:26:34 +0200 | [diff] [blame] | 3271 | 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] | 3272 | deoptimization_requests_.size(), req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3273 | deoptimization_requests_.push_back(req); |
| 3274 | } |
| 3275 | break; |
| 3276 | } |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3277 | case DeoptimizationRequest::kFullDeoptimization: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3278 | DCHECK(req.Method() == nullptr); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3279 | if (full_deoptimization_event_count_ == 0) { |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3280 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| 3281 | << " for full deoptimization"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3282 | deoptimization_requests_.push_back(req); |
| 3283 | } |
| 3284 | ++full_deoptimization_event_count_; |
| 3285 | break; |
| 3286 | } |
| 3287 | case DeoptimizationRequest::kFullUndeoptimization: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3288 | DCHECK(req.Method() == nullptr); |
| Sebastien Hertz | e713d93 | 2014-05-15 10:48:53 +0200 | [diff] [blame] | 3289 | DCHECK_GT(full_deoptimization_event_count_, 0U); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3290 | --full_deoptimization_event_count_; |
| 3291 | if (full_deoptimization_event_count_ == 0) { |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3292 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| 3293 | << " for full undeoptimization"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3294 | deoptimization_requests_.push_back(req); |
| 3295 | } |
| 3296 | break; |
| 3297 | } |
| 3298 | case DeoptimizationRequest::kSelectiveDeoptimization: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3299 | DCHECK(req.Method() != nullptr); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3300 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3301 | << " for deoptimization of " << req.Method()->PrettyMethod(); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3302 | deoptimization_requests_.push_back(req); |
| 3303 | break; |
| 3304 | } |
| 3305 | case DeoptimizationRequest::kSelectiveUndeoptimization: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3306 | DCHECK(req.Method() != nullptr); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3307 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3308 | << " for undeoptimization of " << req.Method()->PrettyMethod(); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3309 | deoptimization_requests_.push_back(req); |
| 3310 | break; |
| 3311 | } |
| 3312 | default: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3313 | LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind(); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3314 | break; |
| 3315 | } |
| 3316 | } |
| 3317 | } |
| 3318 | |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3319 | void Dbg::ManageDeoptimization() { |
| 3320 | Thread* const self = Thread::Current(); |
| 3321 | { |
| 3322 | // Avoid suspend/resume if there is no pending request. |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3323 | MutexLock mu(self, *Locks::deoptimization_lock_); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3324 | if (deoptimization_requests_.empty()) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3325 | return; |
| 3326 | } |
| 3327 | } |
| 3328 | CHECK_EQ(self->GetState(), kRunnable); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3329 | ScopedThreadSuspension sts(self, kWaitingForDeoptimization); |
| Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 3330 | // Required for ProcessDeoptimizationRequest. |
| 3331 | gc::ScopedGCCriticalSection gcs(self, |
| 3332 | gc::kGcCauseInstrumentation, |
| 3333 | gc::kCollectorTypeInstrumentation); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3334 | // We need to suspend mutator threads first. |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 3335 | ScopedSuspendAll ssa(__FUNCTION__); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3336 | const ThreadState old_state = self->SetStateUnsafe(kRunnable); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3337 | { |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3338 | MutexLock mu(self, *Locks::deoptimization_lock_); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3339 | size_t req_index = 0; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3340 | for (DeoptimizationRequest& request : deoptimization_requests_) { |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3341 | VLOG(jdwp) << "Process deoptimization request #" << req_index++; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3342 | ProcessDeoptimizationRequest(request); |
| 3343 | } |
| 3344 | deoptimization_requests_.clear(); |
| 3345 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3346 | CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3347 | } |
| 3348 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3349 | static const Breakpoint* FindFirstBreakpointForMethod(ArtMethod* m) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3350 | REQUIRES_SHARED(Locks::mutator_lock_, Locks::breakpoint_lock_) { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3351 | for (Breakpoint& breakpoint : gBreakpoints) { |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3352 | if (breakpoint.IsInMethod(m)) { |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3353 | return &breakpoint; |
| 3354 | } |
| 3355 | } |
| 3356 | return nullptr; |
| 3357 | } |
| 3358 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3359 | bool Dbg::MethodHasAnyBreakpoints(ArtMethod* method) { |
| Mathieu Chartier | d856545 | 2015-03-26 09:41:50 -0700 | [diff] [blame] | 3360 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
| 3361 | return FindFirstBreakpointForMethod(method) != nullptr; |
| 3362 | } |
| 3363 | |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3364 | // Sanity checks all existing breakpoints on the same method. |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3365 | static void SanityCheckExistingBreakpoints(ArtMethod* m, |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3366 | DeoptimizationRequest::Kind deoptimization_kind) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3367 | REQUIRES_SHARED(Locks::mutator_lock_, Locks::breakpoint_lock_) { |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3368 | for (const Breakpoint& breakpoint : gBreakpoints) { |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3369 | if (breakpoint.IsInMethod(m)) { |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3370 | CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind()); |
| 3371 | } |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3372 | } |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3373 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
| 3374 | if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) { |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3375 | // We should have deoptimized everything but not "selectively" deoptimized this method. |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3376 | CHECK(instrumentation->AreAllMethodsDeoptimized()); |
| 3377 | CHECK(!instrumentation->IsDeoptimized(m)); |
| 3378 | } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) { |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3379 | // We should have "selectively" deoptimized this method. |
| 3380 | // Note: while we have not deoptimized everything for this method, we may have done it for |
| 3381 | // another event. |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3382 | CHECK(instrumentation->IsDeoptimized(m)); |
| 3383 | } else { |
| 3384 | // This method does not require deoptimization. |
| 3385 | CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing); |
| 3386 | CHECK(!instrumentation->IsDeoptimized(m)); |
| 3387 | } |
| 3388 | } |
| 3389 | |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3390 | // Returns the deoptimization kind required to set a breakpoint in a method. |
| 3391 | // If a breakpoint has already been set, we also return the first breakpoint |
| 3392 | // through the given 'existing_brkpt' pointer. |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3393 | static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self, |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3394 | ArtMethod* m, |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3395 | const Breakpoint** existing_brkpt) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3396 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3397 | if (!Dbg::RequiresDeoptimization()) { |
| 3398 | // We already run in interpreter-only mode so we don't need to deoptimize anything. |
| 3399 | 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] | 3400 | << ArtMethod::PrettyMethod(m); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3401 | return DeoptimizationRequest::kNothing; |
| 3402 | } |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3403 | const Breakpoint* first_breakpoint; |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3404 | { |
| 3405 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3406 | first_breakpoint = FindFirstBreakpointForMethod(m); |
| 3407 | *existing_brkpt = first_breakpoint; |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3408 | } |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3409 | |
| 3410 | if (first_breakpoint == nullptr) { |
| Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3411 | // There is no breakpoint on this method yet: we need to deoptimize. If this method is default, |
| 3412 | // we deoptimize everything; otherwise we deoptimize only this method. We |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3413 | // 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] | 3414 | // of the copies could be missed. |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3415 | // TODO Deoptimizing on default methods might not be necessary in all cases. |
| Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3416 | bool need_full_deoptimization = m->IsDefault(); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3417 | if (need_full_deoptimization) { |
| Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3418 | VLOG(jdwp) << "Need full deoptimization because of copying of method " |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3419 | << ArtMethod::PrettyMethod(m); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3420 | return DeoptimizationRequest::kFullDeoptimization; |
| 3421 | } else { |
| 3422 | // 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] | 3423 | const bool is_compiled = m->HasAnyCompiledCode(); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3424 | if (is_compiled) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3425 | VLOG(jdwp) << "Need selective deoptimization for compiled method " |
| 3426 | << ArtMethod::PrettyMethod(m); |
| Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3427 | return DeoptimizationRequest::kSelectiveDeoptimization; |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3428 | } else { |
| 3429 | // Method is not compiled: we don't need to deoptimize. |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3430 | VLOG(jdwp) << "No need for deoptimization for non-compiled method " |
| 3431 | << ArtMethod::PrettyMethod(m); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3432 | return DeoptimizationRequest::kNothing; |
| 3433 | } |
| 3434 | } |
| 3435 | } else { |
| 3436 | // There is at least one breakpoint for this method: we don't need to deoptimize. |
| 3437 | // Let's check that all breakpoints are configured the same way for deoptimization. |
| 3438 | VLOG(jdwp) << "Breakpoint already set: no deoptimization is required"; |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3439 | DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind(); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3440 | if (kIsDebugBuild) { |
| 3441 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
| 3442 | SanityCheckExistingBreakpoints(m, deoptimization_kind); |
| 3443 | } |
| 3444 | return DeoptimizationRequest::kNothing; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3445 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3446 | } |
| 3447 | |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3448 | // Installs a breakpoint at the specified location. Also indicates through the deoptimization |
| 3449 | // request if we need to deoptimize. |
| 3450 | void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) { |
| 3451 | Thread* const self = Thread::Current(); |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3452 | ArtMethod* m = FromMethodId(location->method_id); |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3453 | DCHECK(m != nullptr) << "No method for method id " << location->method_id; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3454 | |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3455 | const Breakpoint* existing_breakpoint = nullptr; |
| 3456 | const DeoptimizationRequest::Kind deoptimization_kind = |
| 3457 | GetRequiredDeoptimizationKind(self, m, &existing_breakpoint); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3458 | req->SetKind(deoptimization_kind); |
| 3459 | if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) { |
| 3460 | req->SetMethod(m); |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3461 | } else { |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3462 | CHECK(deoptimization_kind == DeoptimizationRequest::kNothing || |
| 3463 | deoptimization_kind == DeoptimizationRequest::kFullDeoptimization); |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3464 | req->SetMethod(nullptr); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3465 | } |
| 3466 | |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3467 | { |
| 3468 | WriterMutexLock mu(self, *Locks::breakpoint_lock_); |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3469 | // If there is at least one existing breakpoint on the same method, the new breakpoint |
| 3470 | // must have the same deoptimization kind than the existing breakpoint(s). |
| 3471 | DeoptimizationRequest::Kind breakpoint_deoptimization_kind; |
| 3472 | if (existing_breakpoint != nullptr) { |
| 3473 | breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind(); |
| 3474 | } else { |
| 3475 | breakpoint_deoptimization_kind = deoptimization_kind; |
| 3476 | } |
| 3477 | gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind)); |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3478 | VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " |
| 3479 | << gBreakpoints[gBreakpoints.size() - 1]; |
| 3480 | } |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3481 | } |
| 3482 | |
| 3483 | // Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization |
| 3484 | // request if we need to undeoptimize. |
| 3485 | void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) { |
| Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 3486 | WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3487 | ArtMethod* m = FromMethodId(location->method_id); |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3488 | DCHECK(m != nullptr) << "No method for method id " << location->method_id; |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3489 | DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing; |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3490 | for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) { |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3491 | if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].IsInMethod(m)) { |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3492 | VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i]; |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3493 | deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind(); |
| 3494 | DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization, |
| 3495 | Runtime::Current()->GetInstrumentation()->IsDeoptimized(m)); |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3496 | gBreakpoints.erase(gBreakpoints.begin() + i); |
| 3497 | break; |
| 3498 | } |
| 3499 | } |
| 3500 | const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m); |
| 3501 | if (existing_breakpoint == nullptr) { |
| 3502 | // There is no more breakpoint on this method: we need to undeoptimize. |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3503 | if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) { |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3504 | // This method required full deoptimization: we need to undeoptimize everything. |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3505 | req->SetKind(DeoptimizationRequest::kFullUndeoptimization); |
| 3506 | req->SetMethod(nullptr); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3507 | } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) { |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3508 | // This method required selective deoptimization: we need to undeoptimize only that method. |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3509 | req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization); |
| 3510 | req->SetMethod(m); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3511 | } else { |
| 3512 | // This method had no need for deoptimization: do nothing. |
| 3513 | CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing); |
| 3514 | req->SetKind(DeoptimizationRequest::kNothing); |
| 3515 | req->SetMethod(nullptr); |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3516 | } |
| 3517 | } else { |
| 3518 | // 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] | 3519 | req->SetKind(DeoptimizationRequest::kNothing); |
| 3520 | req->SetMethod(nullptr); |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3521 | if (kIsDebugBuild) { |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3522 | SanityCheckExistingBreakpoints(m, deoptimization_kind); |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3523 | } |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3524 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3525 | } |
| 3526 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3527 | bool Dbg::IsForcedInterpreterNeededForCallingImpl(Thread* thread, ArtMethod* m) { |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3528 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3529 | if (ssc == nullptr) { |
| 3530 | // If we are not single-stepping, then we don't have to force interpreter. |
| 3531 | return false; |
| 3532 | } |
| 3533 | if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) { |
| 3534 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3535 | return false; |
| 3536 | } |
| 3537 | |
| 3538 | if (!m->IsNative() && !m->IsProxyMethod()) { |
| 3539 | // If we want to step into a method, then we have to force interpreter on that call. |
| 3540 | if (ssc->GetStepDepth() == JDWP::SD_INTO) { |
| 3541 | return true; |
| 3542 | } |
| 3543 | } |
| 3544 | return false; |
| 3545 | } |
| 3546 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3547 | bool Dbg::IsForcedInterpreterNeededForResolutionImpl(Thread* thread, ArtMethod* m) { |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3548 | instrumentation::Instrumentation* const instrumentation = |
| 3549 | Runtime::Current()->GetInstrumentation(); |
| 3550 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3551 | if (instrumentation->InterpretOnly()) { |
| 3552 | return false; |
| 3553 | } |
| 3554 | // We can only interpret pure Java method. |
| 3555 | if (m->IsNative() || m->IsProxyMethod()) { |
| 3556 | return false; |
| 3557 | } |
| 3558 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3559 | if (ssc != nullptr) { |
| 3560 | // If we want to step into a method, then we have to force interpreter on that call. |
| 3561 | if (ssc->GetStepDepth() == JDWP::SD_INTO) { |
| 3562 | return true; |
| 3563 | } |
| 3564 | // If we are stepping out from a static initializer, by issuing a step |
| 3565 | // in or step over, that was implicitly invoked by calling a static method, |
| 3566 | // then we need to step into that method. Having a lower stack depth than |
| 3567 | // the one the single step control has indicates that the step originates |
| 3568 | // from the static initializer. |
| 3569 | if (ssc->GetStepDepth() != JDWP::SD_OUT && |
| 3570 | ssc->GetStackDepth() > GetStackDepth(thread)) { |
| 3571 | return true; |
| 3572 | } |
| 3573 | } |
| 3574 | // There are cases where we have to force interpreter on deoptimized methods, |
| 3575 | // because in some cases the call will not be performed by invoking an entry |
| 3576 | // point that has been replaced by the deoptimization, but instead by directly |
| 3577 | // invoking the compiled code of the method, for example. |
| 3578 | return instrumentation->IsDeoptimized(m); |
| 3579 | } |
| 3580 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3581 | bool Dbg::IsForcedInstrumentationNeededForResolutionImpl(Thread* thread, ArtMethod* m) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 3582 | // 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] | 3583 | if (m == nullptr) { |
| 3584 | return false; |
| 3585 | } |
| 3586 | instrumentation::Instrumentation* const instrumentation = |
| 3587 | Runtime::Current()->GetInstrumentation(); |
| 3588 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3589 | if (instrumentation->InterpretOnly()) { |
| 3590 | return false; |
| 3591 | } |
| 3592 | // We can only interpret pure Java method. |
| 3593 | if (m->IsNative() || m->IsProxyMethod()) { |
| 3594 | return false; |
| 3595 | } |
| 3596 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3597 | if (ssc != nullptr) { |
| 3598 | // If we are stepping out from a static initializer, by issuing a step |
| 3599 | // out, that was implicitly invoked by calling a static method, then we |
| 3600 | // need to step into the caller of that method. Having a lower stack |
| 3601 | // depth than the one the single step control has indicates that the |
| 3602 | // step originates from the static initializer. |
| 3603 | if (ssc->GetStepDepth() == JDWP::SD_OUT && |
| 3604 | ssc->GetStackDepth() > GetStackDepth(thread)) { |
| 3605 | return true; |
| 3606 | } |
| 3607 | } |
| 3608 | // If we are returning from a static intializer, that was implicitly |
| 3609 | // invoked by calling a static method and the caller is deoptimized, |
| 3610 | // then we have to deoptimize the stack without forcing interpreter |
| 3611 | // on the static method that was called originally. This problem can |
| 3612 | // be solved easily by forcing instrumentation on the called method, |
| 3613 | // because the instrumentation exit hook will recognise the need of |
| 3614 | // stack deoptimization by calling IsForcedInterpreterNeededForUpcall. |
| 3615 | return instrumentation->IsDeoptimized(m); |
| 3616 | } |
| 3617 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3618 | bool Dbg::IsForcedInterpreterNeededForUpcallImpl(Thread* thread, ArtMethod* m) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 3619 | // 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] | 3620 | if (m == nullptr) { |
| 3621 | return false; |
| 3622 | } |
| 3623 | instrumentation::Instrumentation* const instrumentation = |
| 3624 | Runtime::Current()->GetInstrumentation(); |
| 3625 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3626 | if (instrumentation->InterpretOnly()) { |
| 3627 | return false; |
| 3628 | } |
| 3629 | // We can only interpret pure Java method. |
| 3630 | if (m->IsNative() || m->IsProxyMethod()) { |
| 3631 | return false; |
| 3632 | } |
| 3633 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3634 | if (ssc != nullptr) { |
| 3635 | // The debugger is not interested in what is happening under the level |
| 3636 | // of the step, thus we only force interpreter when we are not below of |
| 3637 | // the step. |
| 3638 | if (ssc->GetStackDepth() >= GetStackDepth(thread)) { |
| 3639 | return true; |
| 3640 | } |
| 3641 | } |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 3642 | if (thread->HasDebuggerShadowFrames()) { |
| 3643 | // We need to deoptimize the stack for the exception handling flow so that |
| 3644 | // we don't miss any deoptimization that should be done when there are |
| 3645 | // debugger shadow frames. |
| 3646 | return true; |
| 3647 | } |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3648 | // We have to require stack deoptimization if the upcall is deoptimized. |
| 3649 | return instrumentation->IsDeoptimized(m); |
| 3650 | } |
| 3651 | |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 3652 | class NeedsDeoptimizationVisitor : public StackVisitor { |
| 3653 | public: |
| 3654 | explicit NeedsDeoptimizationVisitor(Thread* self) |
| 3655 | REQUIRES_SHARED(Locks::mutator_lock_) |
| 3656 | : StackVisitor(self, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 3657 | needs_deoptimization_(false) {} |
| 3658 | |
| 3659 | bool VisitFrame() override REQUIRES_SHARED(Locks::mutator_lock_) { |
| 3660 | // The visitor is meant to be used when handling exception from compiled code only. |
| 3661 | CHECK(!IsShadowFrame()) << "We only expect to visit compiled frame: " |
| 3662 | << ArtMethod::PrettyMethod(GetMethod()); |
| 3663 | ArtMethod* method = GetMethod(); |
| 3664 | if (method == nullptr) { |
| 3665 | // We reach an upcall and don't need to deoptimize this part of the stack (ManagedFragment) |
| 3666 | // so we can stop the visit. |
| 3667 | DCHECK(!needs_deoptimization_); |
| 3668 | return false; |
| 3669 | } |
| 3670 | if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) { |
| 3671 | // We found a compiled frame in the stack but instrumentation is set to interpret |
| 3672 | // everything: we need to deoptimize. |
| 3673 | needs_deoptimization_ = true; |
| 3674 | return false; |
| 3675 | } |
| 3676 | if (Runtime::Current()->GetInstrumentation()->IsDeoptimized(method)) { |
| 3677 | // We found a deoptimized method in the stack. |
| 3678 | needs_deoptimization_ = true; |
| 3679 | return false; |
| 3680 | } |
| 3681 | ShadowFrame* frame = GetThread()->FindDebuggerShadowFrame(GetFrameId()); |
| 3682 | if (frame != nullptr) { |
| 3683 | // The debugger allocated a ShadowFrame to update a variable in the stack: we need to |
| 3684 | // deoptimize the stack to execute (and deallocate) this frame. |
| 3685 | needs_deoptimization_ = true; |
| 3686 | return false; |
| 3687 | } |
| 3688 | return true; |
| 3689 | } |
| 3690 | |
| 3691 | bool NeedsDeoptimization() const { |
| 3692 | return needs_deoptimization_; |
| 3693 | } |
| 3694 | |
| 3695 | private: |
| 3696 | // Do we need to deoptimize the stack? |
| 3697 | bool needs_deoptimization_; |
| 3698 | |
| 3699 | DISALLOW_COPY_AND_ASSIGN(NeedsDeoptimizationVisitor); |
| 3700 | }; |
| 3701 | |
| Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 3702 | // Do we need to deoptimize the stack to handle an exception? |
| 3703 | bool Dbg::IsForcedInterpreterNeededForExceptionImpl(Thread* thread) { |
| 3704 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3705 | if (ssc != nullptr) { |
| 3706 | // We deopt to step into the catch handler. |
| 3707 | return true; |
| 3708 | } |
| 3709 | // Deoptimization is required if at least one method in the stack needs it. However we |
| 3710 | // skip frames that will be unwound (thus not executed). |
| Andreas Gampe | 8248490 | 2018-11-16 00:47:49 +0000 | [diff] [blame] | 3711 | NeedsDeoptimizationVisitor visitor(thread); |
| 3712 | visitor.WalkStack(true); // includes upcall. |
| 3713 | return visitor.NeedsDeoptimization(); |
| Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 3714 | } |
| 3715 | |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3716 | // Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't |
| 3717 | // cause suspension if the thread is the current thread. |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3718 | class ScopedDebuggerThreadSuspension { |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3719 | public: |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3720 | ScopedDebuggerThreadSuspension(Thread* self, JDWP::ObjectId thread_id) |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 3721 | REQUIRES(!Locks::thread_list_lock_) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3722 | REQUIRES_SHARED(Locks::mutator_lock_) : |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3723 | thread_(nullptr), |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3724 | error_(JDWP::ERR_NONE), |
| 3725 | self_suspend_(false), |
| Ian Rogers | 33e9566 | 2013-05-20 20:29:14 -0700 | [diff] [blame] | 3726 | other_suspend_(false) { |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3727 | ScopedObjectAccessUnchecked soa(self); |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 3728 | thread_ = DecodeThread(soa, thread_id, &error_); |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3729 | if (error_ == JDWP::ERR_NONE) { |
| 3730 | if (thread_ == soa.Self()) { |
| 3731 | self_suspend_ = true; |
| 3732 | } else { |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3733 | Thread* suspended_thread; |
| 3734 | { |
| 3735 | ScopedThreadSuspension sts(self, kWaitingForDebuggerSuspension); |
| 3736 | jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id); |
| 3737 | bool timed_out; |
| 3738 | ThreadList* const thread_list = Runtime::Current()->GetThreadList(); |
| Sebastien Hertz | cdd798d | 2017-04-18 18:28:51 +0200 | [diff] [blame] | 3739 | suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 3740 | /* request_suspension= */ true, |
| Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 3741 | SuspendReason::kForDebugger, |
| Sebastien Hertz | cdd798d | 2017-04-18 18:28:51 +0200 | [diff] [blame] | 3742 | &timed_out); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3743 | } |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3744 | if (suspended_thread == nullptr) { |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3745 | // Thread terminated from under us while suspending. |
| 3746 | error_ = JDWP::ERR_INVALID_THREAD; |
| 3747 | } else { |
| 3748 | CHECK_EQ(suspended_thread, thread_); |
| 3749 | other_suspend_ = true; |
| 3750 | } |
| 3751 | } |
| 3752 | } |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3753 | } |
| 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 | Thread* GetThread() const { |
| 3756 | return thread_; |
| 3757 | } |
| 3758 | |
| 3759 | JDWP::JdwpError GetError() const { |
| 3760 | return error_; |
| 3761 | } |
| 3762 | |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3763 | ~ScopedDebuggerThreadSuspension() { |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3764 | if (other_suspend_) { |
| Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 3765 | bool resumed = Runtime::Current()->GetThreadList()->Resume(thread_, |
| 3766 | SuspendReason::kForDebugger); |
| 3767 | DCHECK(resumed); |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3768 | } |
| 3769 | } |
| 3770 | |
| 3771 | private: |
| 3772 | Thread* thread_; |
| 3773 | JDWP::JdwpError error_; |
| 3774 | bool self_suspend_; |
| 3775 | bool other_suspend_; |
| 3776 | }; |
| 3777 | |
| 3778 | JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size, |
| 3779 | JDWP::JdwpStepDepth step_depth) { |
| 3780 | Thread* self = Thread::Current(); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3781 | ScopedDebuggerThreadSuspension sts(self, thread_id); |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3782 | if (sts.GetError() != JDWP::ERR_NONE) { |
| 3783 | return sts.GetError(); |
| 3784 | } |
| 3785 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3786 | // 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] | 3787 | // is for step-out. |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3788 | struct SingleStepStackVisitor : public StackVisitor { |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3789 | explicit SingleStepStackVisitor(Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_) |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 3790 | : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 3791 | stack_depth(0), |
| 3792 | method(nullptr), |
| 3793 | line_number(-1) {} |
| Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 3794 | |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3795 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 3796 | // annotalysis. |
| Andreas Gampe | fa6a1b0 | 2018-09-07 08:11:55 -0700 | [diff] [blame] | 3797 | bool VisitFrame() override NO_THREAD_SAFETY_ANALYSIS { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3798 | ArtMethod* m = GetMethod(); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3799 | if (!m->IsRuntimeMethod()) { |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3800 | ++stack_depth; |
| 3801 | if (method == nullptr) { |
| Alex Light | 7337631 | 2017-04-06 10:10:51 -0700 | [diff] [blame] | 3802 | const DexFile* dex_file = m->GetDexFile(); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3803 | method = m; |
| Alex Light | 7337631 | 2017-04-06 10:10:51 -0700 | [diff] [blame] | 3804 | if (dex_file != nullptr) { |
| David Sehr | 9323e6e | 2016-09-13 08:58:35 -0700 | [diff] [blame] | 3805 | line_number = annotations::GetLineNumFromPC(dex_file, m, GetDexPc()); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3806 | } |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3807 | } |
| 3808 | } |
| Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 3809 | return true; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3810 | } |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3811 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3812 | int stack_depth; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3813 | ArtMethod* method; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3814 | int32_t line_number; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3815 | }; |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3816 | |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3817 | Thread* const thread = sts.GetThread(); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3818 | SingleStepStackVisitor visitor(thread); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3819 | visitor.WalkStack(); |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3820 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3821 | // Allocate single step. |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3822 | SingleStepControl* single_step_control = |
| 3823 | new (std::nothrow) SingleStepControl(step_size, step_depth, |
| 3824 | visitor.stack_depth, visitor.method); |
| 3825 | if (single_step_control == nullptr) { |
| 3826 | LOG(ERROR) << "Failed to allocate SingleStepControl"; |
| 3827 | return JDWP::ERR_OUT_OF_MEMORY; |
| 3828 | } |
| 3829 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3830 | ArtMethod* m = single_step_control->GetMethod(); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3831 | const int32_t line_number = visitor.line_number; |
| Sebastien Hertz | 52f5f93 | 2015-05-28 11:00:57 +0200 | [diff] [blame] | 3832 | // Note: if the thread is not running Java code (pure native thread), there is no "current" |
| 3833 | // method on the stack (and no line number either). |
| 3834 | if (m != nullptr && !m->IsNative()) { |
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 3835 | CodeItemDebugInfoAccessor accessor(m->DexInstructionDebugInfo()); |
| Mathieu Chartier | 3e2e123 | 2018-09-11 12:35:30 -0700 | [diff] [blame] | 3836 | bool last_pc_valid = false; |
| 3837 | uint32_t last_pc = 0u; |
| 3838 | // Find the dex_pc values that correspond to the current line, for line-based single-stepping. |
| 3839 | accessor.DecodeDebugPositionInfo([&](const DexFile::PositionInfo& entry) { |
| 3840 | if (static_cast<int32_t>(entry.line_) == line_number) { |
| 3841 | if (!last_pc_valid) { |
| 3842 | // Everything from this address until the next line change is ours. |
| 3843 | last_pc = entry.address_; |
| 3844 | last_pc_valid = true; |
| 3845 | } |
| 3846 | // Otherwise, if we're already in a valid range for this line, |
| 3847 | // just keep going (shouldn't really happen)... |
| 3848 | } else if (last_pc_valid) { // and the line number is new |
| 3849 | // Add everything from the last entry up until here to the set |
| 3850 | for (uint32_t dex_pc = last_pc; dex_pc < entry.address_; ++dex_pc) { |
| 3851 | single_step_control->AddDexPc(dex_pc); |
| 3852 | } |
| 3853 | last_pc_valid = false; |
| 3854 | } |
| 3855 | return false; // There may be multiple entries for any given line. |
| 3856 | }); |
| 3857 | // If the line number was the last in the position table... |
| 3858 | if (last_pc_valid) { |
| 3859 | for (uint32_t dex_pc = last_pc; dex_pc < accessor.InsnsSizeInCodeUnits(); ++dex_pc) { |
| 3860 | single_step_control->AddDexPc(dex_pc); |
| 3861 | } |
| 3862 | } |
| Elliott Hughes | 3e2e1a2 | 2012-02-21 11:33:41 -0800 | [diff] [blame] | 3863 | } |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3864 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3865 | // Activate single-step in the thread. |
| 3866 | thread->ActivateSingleStepControl(single_step_control); |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3867 | |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3868 | if (VLOG_IS_ON(jdwp)) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3869 | VLOG(jdwp) << "Single-step thread: " << *thread; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3870 | VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize(); |
| 3871 | VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth(); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3872 | VLOG(jdwp) << "Single-step current method: " |
| 3873 | << ArtMethod::PrettyMethod(single_step_control->GetMethod()); |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3874 | VLOG(jdwp) << "Single-step current line: " << line_number; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3875 | VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth(); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3876 | VLOG(jdwp) << "Single-step dex_pc values:"; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3877 | for (uint32_t dex_pc : single_step_control->GetDexPcs()) { |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3878 | VLOG(jdwp) << StringPrintf(" %#x", dex_pc); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3879 | } |
| 3880 | } |
| 3881 | |
| 3882 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3883 | } |
| 3884 | |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3885 | void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) { |
| 3886 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3887 | JDWP::JdwpError error; |
| 3888 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Sebastien Hertz | 87118ed | 2013-11-26 17:57:18 +0100 | [diff] [blame] | 3889 | if (error == JDWP::ERR_NONE) { |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3890 | thread->DeactivateSingleStepControl(); |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3891 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3892 | } |
| 3893 | |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3894 | static char JdwpTagToShortyChar(JDWP::JdwpTag tag) { |
| 3895 | switch (tag) { |
| 3896 | default: |
| 3897 | LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag); |
| Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 3898 | UNREACHABLE(); |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3899 | |
| 3900 | // Primitives. |
| 3901 | case JDWP::JT_BYTE: return 'B'; |
| 3902 | case JDWP::JT_CHAR: return 'C'; |
| 3903 | case JDWP::JT_FLOAT: return 'F'; |
| 3904 | case JDWP::JT_DOUBLE: return 'D'; |
| 3905 | case JDWP::JT_INT: return 'I'; |
| 3906 | case JDWP::JT_LONG: return 'J'; |
| 3907 | case JDWP::JT_SHORT: return 'S'; |
| 3908 | case JDWP::JT_VOID: return 'V'; |
| 3909 | case JDWP::JT_BOOLEAN: return 'Z'; |
| 3910 | |
| 3911 | // Reference types. |
| 3912 | case JDWP::JT_ARRAY: |
| 3913 | case JDWP::JT_OBJECT: |
| 3914 | case JDWP::JT_STRING: |
| 3915 | case JDWP::JT_THREAD: |
| 3916 | case JDWP::JT_THREAD_GROUP: |
| 3917 | case JDWP::JT_CLASS_LOADER: |
| 3918 | case JDWP::JT_CLASS_OBJECT: |
| 3919 | return 'L'; |
| 3920 | } |
| 3921 | } |
| 3922 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3923 | JDWP::JdwpError Dbg::PrepareInvokeMethod(uint32_t request_id, JDWP::ObjectId thread_id, |
| 3924 | JDWP::ObjectId object_id, JDWP::RefTypeId class_id, |
| 3925 | JDWP::MethodId method_id, uint32_t arg_count, |
| 3926 | uint64_t arg_values[], JDWP::JdwpTag* arg_types, |
| 3927 | uint32_t options) { |
| 3928 | Thread* const self = Thread::Current(); |
| 3929 | CHECK_EQ(self, GetDebugThread()) << "This must be called by the JDWP thread"; |
| Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3930 | const bool resume_all_threads = ((options & JDWP::INVOKE_SINGLE_THREADED) == 0); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3931 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3932 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3933 | Thread* targetThread = nullptr; |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3934 | { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3935 | ScopedObjectAccessUnchecked soa(self); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3936 | JDWP::JdwpError error; |
| 3937 | targetThread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 3938 | if (error != JDWP::ERR_NONE) { |
| 3939 | LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id; |
| 3940 | return error; |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3941 | } |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3942 | if (targetThread->GetInvokeReq() != nullptr) { |
| 3943 | // Thread is already invoking a method on behalf of the debugger. |
| 3944 | LOG(ERROR) << "InvokeMethod request for thread already invoking a method: " << *targetThread; |
| 3945 | return JDWP::ERR_ALREADY_INVOKING; |
| 3946 | } |
| 3947 | if (!targetThread->IsReadyForDebugInvoke()) { |
| 3948 | // 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] | 3949 | LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread; |
| 3950 | return JDWP::ERR_INVALID_THREAD; |
| 3951 | } |
| 3952 | |
| 3953 | /* |
| Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3954 | * According to the JDWP specs, we are expected to resume all threads (or only the |
| 3955 | * target thread) once. So if a thread has been suspended more than once (either by |
| 3956 | * the debugger for an event or by the runtime for GC), it will remain suspended before |
| 3957 | * the invoke is executed. This means the debugger is responsible to properly resume all |
| 3958 | * 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] | 3959 | * |
| Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3960 | * However, for compatibility reason with older versions of debuggers (like Eclipse), we |
| 3961 | * fully resume all threads (by canceling *all* debugger suspensions) when the debugger |
| 3962 | * wants us to resume all threads. This is to avoid ending up in deadlock situation. |
| 3963 | * |
| 3964 | * On the other hand, if we are asked to only resume the target thread, then we follow the |
| 3965 | * JDWP specs by resuming that thread only once. This means the thread will remain suspended |
| 3966 | * if it has been suspended more than once before the invoke (and again, this is the |
| 3967 | * 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] | 3968 | */ |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3969 | int suspend_count; |
| 3970 | { |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 3971 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3972 | suspend_count = targetThread->GetSuspendCount(); |
| 3973 | } |
| Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3974 | if (suspend_count > 1 && resume_all_threads) { |
| 3975 | // The target thread will remain suspended even after we resume it. Let's emit a warning |
| 3976 | // to indicate the invoke won't be executed until the thread is resumed. |
| 3977 | LOG(WARNING) << *targetThread << " suspended more than once (suspend count == " |
| 3978 | << suspend_count << "). This thread will invoke the method only once " |
| 3979 | << "it is fully resumed."; |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3980 | } |
| 3981 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3982 | mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 3983 | if (error != JDWP::ERR_NONE) { |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3984 | return JDWP::ERR_INVALID_OBJECT; |
| 3985 | } |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3986 | |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3987 | gRegistry->Get<mirror::Object*>(thread_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3988 | if (error != JDWP::ERR_NONE) { |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3989 | return JDWP::ERR_INVALID_OBJECT; |
| 3990 | } |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3991 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3992 | mirror::Class* c = DecodeClass(class_id, &error); |
| 3993 | if (c == nullptr) { |
| 3994 | return error; |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3995 | } |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3996 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3997 | ArtMethod* m = FromMethodId(method_id); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3998 | if (m->IsStatic() != (receiver == nullptr)) { |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3999 | return JDWP::ERR_INVALID_METHODID; |
| 4000 | } |
| 4001 | if (m->IsStatic()) { |
| 4002 | if (m->GetDeclaringClass() != c) { |
| 4003 | return JDWP::ERR_INVALID_METHODID; |
| 4004 | } |
| 4005 | } else { |
| 4006 | if (!m->GetDeclaringClass()->IsAssignableFrom(c)) { |
| 4007 | return JDWP::ERR_INVALID_METHODID; |
| 4008 | } |
| 4009 | } |
| 4010 | |
| 4011 | // Check the argument list matches the method. |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4012 | uint32_t shorty_len = 0; |
| 4013 | const char* shorty = m->GetShorty(&shorty_len); |
| 4014 | if (shorty_len - 1 != arg_count) { |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 4015 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 4016 | } |
| Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 4017 | |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4018 | { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4019 | StackHandleScope<2> hs(soa.Self()); |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4020 | HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver)); |
| 4021 | HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c)); |
| 4022 | const DexFile::TypeList* types = m->GetParameterTypeList(); |
| 4023 | for (size_t i = 0; i < arg_count; ++i) { |
| 4024 | if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) { |
| Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 4025 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 4026 | } |
| 4027 | |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4028 | if (shorty[i + 1] == 'L') { |
| 4029 | // Did we really get an argument of an appropriate reference type? |
| Vladimir Marko | b45528c | 2017-07-27 14:14:28 +0100 | [diff] [blame] | 4030 | ObjPtr<mirror::Class> parameter_type = |
| 4031 | m->ResolveClassFromTypeIndex(types->GetTypeItem(i).type_idx_); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4032 | mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error); |
| 4033 | if (error != JDWP::ERR_NONE) { |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4034 | return JDWP::ERR_INVALID_OBJECT; |
| 4035 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4036 | if (argument != nullptr && !argument->InstanceOf(parameter_type)) { |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4037 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 4038 | } |
| 4039 | |
| 4040 | // Turn the on-the-wire ObjectId into a jobject. |
| 4041 | jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]); |
| 4042 | v.l = gRegistry->GetJObject(arg_values[i]); |
| 4043 | } |
| Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 4044 | } |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 4045 | } |
| 4046 | |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4047 | // Allocates a DebugInvokeReq. |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4048 | DebugInvokeReq* req = new (std::nothrow) DebugInvokeReq(request_id, thread_id, receiver, c, m, |
| 4049 | options, arg_values, arg_count); |
| 4050 | if (req == nullptr) { |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4051 | LOG(ERROR) << "Failed to allocate DebugInvokeReq"; |
| 4052 | return JDWP::ERR_OUT_OF_MEMORY; |
| 4053 | } |
| 4054 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4055 | // Attaches the DebugInvokeReq to the target thread so it executes the method when |
| 4056 | // it is resumed. Once the invocation completes, the target thread will delete it before |
| 4057 | // suspending itself (see ThreadList::SuspendSelfForDebugger). |
| 4058 | targetThread->SetDebugInvokeReq(req); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4059 | } |
| 4060 | |
| 4061 | // 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] | 4062 | // away we're sitting high and dry -- but we must release this before the UndoDebuggerSuspensions |
| 4063 | // call. |
| Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 4064 | if (resume_all_threads) { |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4065 | VLOG(jdwp) << " Resuming all threads"; |
| 4066 | thread_list->UndoDebuggerSuspensions(); |
| 4067 | } else { |
| 4068 | VLOG(jdwp) << " Resuming event thread only"; |
| Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 4069 | bool resumed = thread_list->Resume(targetThread, SuspendReason::kForDebugger); |
| 4070 | DCHECK(resumed); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4071 | } |
| 4072 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4073 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4074 | } |
| 4075 | |
| 4076 | void Dbg::ExecuteMethod(DebugInvokeReq* pReq) { |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4077 | Thread* const self = Thread::Current(); |
| 4078 | CHECK_NE(self, GetDebugThread()) << "This must be called by the event thread"; |
| 4079 | |
| 4080 | ScopedObjectAccess soa(self); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4081 | |
| Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 4082 | // We can be called while an exception is pending. We need |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4083 | // to preserve that across the method invocation. |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4084 | StackHandleScope<1> hs(soa.Self()); |
| 4085 | Handle<mirror::Throwable> old_exception = hs.NewHandle(soa.Self()->GetException()); |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4086 | soa.Self()->ClearException(); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4087 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4088 | // Execute the method then sends reply to the debugger. |
| 4089 | ExecuteMethodWithoutPendingException(soa, pReq); |
| 4090 | |
| 4091 | // If an exception was pending before the invoke, restore it now. |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 4092 | if (old_exception != nullptr) { |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4093 | soa.Self()->SetException(old_exception.Get()); |
| 4094 | } |
| 4095 | } |
| 4096 | |
| 4097 | // Helper function: write a variable-width value into the output input buffer. |
| 4098 | static void WriteValue(JDWP::ExpandBuf* pReply, int width, uint64_t value) { |
| 4099 | switch (width) { |
| 4100 | case 1: |
| 4101 | expandBufAdd1(pReply, value); |
| 4102 | break; |
| 4103 | case 2: |
| 4104 | expandBufAdd2BE(pReply, value); |
| 4105 | break; |
| 4106 | case 4: |
| 4107 | expandBufAdd4BE(pReply, value); |
| 4108 | break; |
| 4109 | case 8: |
| 4110 | expandBufAdd8BE(pReply, value); |
| 4111 | break; |
| 4112 | default: |
| 4113 | LOG(FATAL) << width; |
| 4114 | UNREACHABLE(); |
| 4115 | } |
| 4116 | } |
| 4117 | |
| 4118 | void Dbg::ExecuteMethodWithoutPendingException(ScopedObjectAccess& soa, DebugInvokeReq* pReq) { |
| 4119 | soa.Self()->AssertNoPendingException(); |
| 4120 | |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4121 | // Translate the method through the vtable, unless the debugger wants to suppress it. |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4122 | ArtMethod* m = pReq->method; |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 4123 | PointerSize image_pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize(); |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4124 | if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4125 | ArtMethod* actual_method = |
| 4126 | pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m, image_pointer_size); |
| 4127 | if (actual_method != m) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 4128 | VLOG(jdwp) << "ExecuteMethod translated " << ArtMethod::PrettyMethod(m) |
| 4129 | << " to " << ArtMethod::PrettyMethod(actual_method); |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4130 | m = actual_method; |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 4131 | } |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4132 | } |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 4133 | VLOG(jdwp) << "ExecuteMethod " << ArtMethod::PrettyMethod(m) |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4134 | << " receiver=" << pReq->receiver.Read() |
| Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 4135 | << " arg_count=" << pReq->arg_count; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4136 | CHECK(m != nullptr); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4137 | |
| Roland Levillain | 33d6903 | 2015-06-18 18:20:59 +0100 | [diff] [blame] | 4138 | 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] | 4139 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4140 | // Invoke the method. |
| Jeff Hao | 39b6c24 | 2015-05-19 20:30:23 -0700 | [diff] [blame] | 4141 | ScopedLocalRef<jobject> ref(soa.Env(), soa.AddLocalReference<jobject>(pReq->receiver.Read())); |
| Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 4142 | JValue result = InvokeWithJValues(soa, ref.get(), jni::EncodeArtMethod(m), |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4143 | reinterpret_cast<jvalue*>(pReq->arg_values.get())); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4144 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4145 | // Prepare JDWP ids for the reply. |
| 4146 | JDWP::JdwpTag result_tag = BasicTagFromDescriptor(m->GetShorty()); |
| 4147 | const bool is_object_result = (result_tag == JDWP::JT_OBJECT); |
| Jeff Hao | 064d24e | 2016-08-25 03:52:40 +0000 | [diff] [blame] | 4148 | StackHandleScope<3> hs(soa.Self()); |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4149 | Handle<mirror::Object> object_result = hs.NewHandle(is_object_result ? result.GetL() : nullptr); |
| 4150 | Handle<mirror::Throwable> exception = hs.NewHandle(soa.Self()->GetException()); |
| 4151 | soa.Self()->ClearException(); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4152 | |
| 4153 | if (!IsDebuggerActive()) { |
| 4154 | // The debugger detached: we must not re-suspend threads. We also don't need to fill the reply |
| 4155 | // because it won't be sent either. |
| 4156 | return; |
| 4157 | } |
| 4158 | |
| 4159 | JDWP::ObjectId exceptionObjectId = gRegistry->Add(exception); |
| 4160 | uint64_t result_value = 0; |
| 4161 | if (exceptionObjectId != 0) { |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4162 | VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get() |
| 4163 | << " " << exception->Dump(); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4164 | result_value = 0; |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4165 | } else if (is_object_result) { |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4166 | /* if no exception was thrown, examine object result more closely */ |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4167 | JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get()); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4168 | if (new_tag != result_tag) { |
| 4169 | VLOG(jdwp) << " JDWP promoted result from " << result_tag << " to " << new_tag; |
| 4170 | result_tag = new_tag; |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4171 | } |
| 4172 | |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4173 | // Register the object in the registry and reference its ObjectId. This ensures |
| 4174 | // 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] | 4175 | result_value = gRegistry->Add(object_result.Get()); |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4176 | } else { |
| 4177 | // Primitive result. |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4178 | DCHECK(IsPrimitiveTag(result_tag)); |
| 4179 | result_value = result.GetJ(); |
| 4180 | } |
| 4181 | const bool is_constructor = m->IsConstructor() && !m->IsStatic(); |
| 4182 | if (is_constructor) { |
| 4183 | // If we invoked a constructor (which actually returns void), return the receiver, |
| 4184 | // unless we threw, in which case we return null. |
| Sebastien Hertz | a3e1377 | 2015-11-05 12:09:44 +0100 | [diff] [blame] | 4185 | DCHECK_EQ(JDWP::JT_VOID, result_tag); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4186 | if (exceptionObjectId == 0) { |
| Jeff Hao | 064d24e | 2016-08-25 03:52:40 +0000 | [diff] [blame] | 4187 | if (m->GetDeclaringClass()->IsStringClass()) { |
| 4188 | // For string constructors, the new string is remapped to the receiver (stored in ref). |
| 4189 | Handle<mirror::Object> decoded_ref = hs.NewHandle(soa.Self()->DecodeJObject(ref.get())); |
| 4190 | result_value = gRegistry->Add(decoded_ref); |
| 4191 | result_tag = TagFromObject(soa, decoded_ref.Get()); |
| 4192 | } else { |
| 4193 | // TODO we could keep the receiver ObjectId in the DebugInvokeReq to avoid looking into the |
| 4194 | // object registry. |
| 4195 | result_value = GetObjectRegistry()->Add(pReq->receiver.Read()); |
| 4196 | result_tag = TagFromObject(soa, pReq->receiver.Read()); |
| 4197 | } |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4198 | } else { |
| 4199 | result_value = 0; |
| Sebastien Hertz | a3e1377 | 2015-11-05 12:09:44 +0100 | [diff] [blame] | 4200 | result_tag = JDWP::JT_OBJECT; |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4201 | } |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4202 | } |
| 4203 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4204 | // Suspend other threads if the invoke is not single-threaded. |
| 4205 | if ((pReq->options & JDWP::INVOKE_SINGLE_THREADED) == 0) { |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4206 | ScopedThreadSuspension sts(soa.Self(), kWaitingForDebuggerSuspension); |
| Hiroshi Yamauchi | 8f95cf3 | 2016-04-19 11:14:06 -0700 | [diff] [blame] | 4207 | // Avoid a deadlock between GC and debugger where GC gets suspended during GC. b/25800335. |
| 4208 | gc::ScopedGCCriticalSection gcs(soa.Self(), gc::kGcCauseDebugger, gc::kCollectorTypeDebugger); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4209 | VLOG(jdwp) << " Suspending all threads"; |
| 4210 | Runtime::Current()->GetThreadList()->SuspendAllForDebugger(); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4211 | } |
| 4212 | |
| 4213 | VLOG(jdwp) << " --> returned " << result_tag |
| 4214 | << StringPrintf(" %#" PRIx64 " (except=%#" PRIx64 ")", result_value, |
| 4215 | exceptionObjectId); |
| 4216 | |
| 4217 | // Show detailed debug output. |
| 4218 | if (result_tag == JDWP::JT_STRING && exceptionObjectId == 0) { |
| 4219 | if (result_value != 0) { |
| 4220 | if (VLOG_IS_ON(jdwp)) { |
| 4221 | std::string result_string; |
| 4222 | JDWP::JdwpError error = Dbg::StringToUtf8(result_value, &result_string); |
| 4223 | CHECK_EQ(error, JDWP::ERR_NONE); |
| 4224 | VLOG(jdwp) << " string '" << result_string << "'"; |
| 4225 | } |
| 4226 | } else { |
| 4227 | VLOG(jdwp) << " string (null)"; |
| 4228 | } |
| 4229 | } |
| 4230 | |
| 4231 | // Attach the reply to DebugInvokeReq so it can be sent to the debugger when the event thread |
| 4232 | // is ready to suspend. |
| 4233 | BuildInvokeReply(pReq->reply, pReq->request_id, result_tag, result_value, exceptionObjectId); |
| 4234 | } |
| 4235 | |
| 4236 | void Dbg::BuildInvokeReply(JDWP::ExpandBuf* pReply, uint32_t request_id, JDWP::JdwpTag result_tag, |
| 4237 | uint64_t result_value, JDWP::ObjectId exception) { |
| 4238 | // Make room for the JDWP header since we do not know the size of the reply yet. |
| 4239 | JDWP::expandBufAddSpace(pReply, kJDWPHeaderLen); |
| 4240 | |
| 4241 | size_t width = GetTagWidth(result_tag); |
| 4242 | JDWP::expandBufAdd1(pReply, result_tag); |
| 4243 | if (width != 0) { |
| 4244 | WriteValue(pReply, width, result_value); |
| 4245 | } |
| 4246 | JDWP::expandBufAdd1(pReply, JDWP::JT_OBJECT); |
| 4247 | JDWP::expandBufAddObjectId(pReply, exception); |
| 4248 | |
| 4249 | // Now we know the size, we can complete the JDWP header. |
| 4250 | uint8_t* buf = expandBufGetBuffer(pReply); |
| 4251 | JDWP::Set4BE(buf + kJDWPHeaderSizeOffset, expandBufGetLength(pReply)); |
| 4252 | JDWP::Set4BE(buf + kJDWPHeaderIdOffset, request_id); |
| 4253 | JDWP::Set1(buf + kJDWPHeaderFlagsOffset, kJDWPFlagReply); // flags |
| 4254 | JDWP::Set2BE(buf + kJDWPHeaderErrorCodeOffset, JDWP::ERR_NONE); |
| 4255 | } |
| 4256 | |
| 4257 | void Dbg::FinishInvokeMethod(DebugInvokeReq* pReq) { |
| 4258 | CHECK_NE(Thread::Current(), GetDebugThread()) << "This must be called by the event thread"; |
| 4259 | |
| 4260 | JDWP::ExpandBuf* const pReply = pReq->reply; |
| 4261 | CHECK(pReply != nullptr) << "No reply attached to DebugInvokeReq"; |
| 4262 | |
| 4263 | // We need to prevent other threads (including JDWP thread) from interacting with the debugger |
| 4264 | // while we send the reply but are not yet suspended. The JDWP token will be released just before |
| 4265 | // we suspend ourself again (see ThreadList::SuspendSelfForDebugger). |
| 4266 | gJdwpState->AcquireJdwpTokenForEvent(pReq->thread_id); |
| 4267 | |
| 4268 | // Send the reply unless the debugger detached before the completion of the method. |
| 4269 | if (IsDebuggerActive()) { |
| 4270 | const size_t replyDataLength = expandBufGetLength(pReply) - kJDWPHeaderLen; |
| 4271 | VLOG(jdwp) << StringPrintf("REPLY INVOKE id=0x%06x (length=%zu)", |
| 4272 | pReq->request_id, replyDataLength); |
| 4273 | |
| 4274 | gJdwpState->SendRequest(pReply); |
| 4275 | } else { |
| 4276 | VLOG(jdwp) << "Not sending invoke reply because debugger detached"; |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4277 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4278 | } |
| 4279 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4280 | bool Dbg::DdmHandleChunk(JNIEnv* env, |
| 4281 | uint32_t type, |
| 4282 | const ArrayRef<const jbyte>& data, |
| 4283 | /*out*/uint32_t* out_type, |
| 4284 | /*out*/std::vector<uint8_t>* out_data) { |
| 4285 | ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(data.size())); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4286 | if (dataArray.get() == nullptr) { |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4287 | LOG(WARNING) << "byte[] allocation failed: " << data.size(); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4288 | env->ExceptionClear(); |
| 4289 | return false; |
| 4290 | } |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4291 | env->SetByteArrayRegion(dataArray.get(), |
| 4292 | 0, |
| 4293 | data.size(), |
| 4294 | reinterpret_cast<const jbyte*>(data.data())); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4295 | // 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] | 4296 | ScopedLocalRef<jobject> chunk( |
| 4297 | env, |
| 4298 | env->CallStaticObjectMethod( |
| 4299 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer, |
| 4300 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch, |
| 4301 | type, dataArray.get(), 0, data.size())); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4302 | if (env->ExceptionCheck()) { |
| Alex Light | 1eeefa6 | 2018-03-19 13:47:56 -0700 | [diff] [blame] | 4303 | Thread* self = Thread::Current(); |
| 4304 | ScopedObjectAccess soa(self); |
| 4305 | LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type) << std::endl |
| 4306 | << self->GetException()->Dump(); |
| 4307 | self->ClearException(); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4308 | return false; |
| 4309 | } |
| 4310 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4311 | if (chunk.get() == nullptr) { |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4312 | return false; |
| 4313 | } |
| 4314 | |
| 4315 | /* |
| 4316 | * Pull the pieces out of the chunk. We copy the results into a |
| 4317 | * newly-allocated buffer that the caller can free. We don't want to |
| 4318 | * continue using the Chunk object because nothing has a reference to it. |
| 4319 | * |
| 4320 | * We could avoid this by returning type/data/offset/length and having |
| 4321 | * the caller be aware of the object lifetime issues, but that |
| Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 4322 | * 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] | 4323 | * if we have responses for multiple chunks. |
| 4324 | * |
| 4325 | * So we're pretty much stuck with copying data around multiple times. |
| 4326 | */ |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4327 | ScopedLocalRef<jbyteArray> replyData( |
| 4328 | env, |
| 4329 | reinterpret_cast<jbyteArray>( |
| 4330 | env->GetObjectField( |
| 4331 | chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_data))); |
| 4332 | jint offset = env->GetIntField(chunk.get(), |
| 4333 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset); |
| 4334 | jint length = env->GetIntField(chunk.get(), |
| 4335 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length); |
| 4336 | *out_type = env->GetIntField(chunk.get(), |
| 4337 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4338 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4339 | VLOG(jdwp) << StringPrintf("DDM reply: type=0x%08x data=%p offset=%d length=%d", |
| 4340 | type, |
| 4341 | replyData.get(), |
| 4342 | offset, |
| 4343 | length); |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4344 | out_data->resize(length); |
| 4345 | env->GetByteArrayRegion(replyData.get(), |
| 4346 | offset, |
| 4347 | length, |
| 4348 | reinterpret_cast<jbyte*>(out_data->data())); |
| Alex Light | 6f2a634 | 2017-12-12 09:55:05 -0800 | [diff] [blame] | 4349 | |
| Alex Light | e5463a8 | 2017-12-12 13:33:28 -0800 | [diff] [blame] | 4350 | if (env->ExceptionCheck()) { |
| Alex Light | 1eeefa6 | 2018-03-19 13:47:56 -0700 | [diff] [blame] | 4351 | Thread* self = Thread::Current(); |
| 4352 | ScopedObjectAccess soa(self); |
| Alex Light | e5463a8 | 2017-12-12 13:33:28 -0800 | [diff] [blame] | 4353 | 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] | 4354 | type) << std::endl << self->GetException()->Dump(); |
| 4355 | self->ClearException(); |
| Alex Light | e5463a8 | 2017-12-12 13:33:28 -0800 | [diff] [blame] | 4356 | return false; |
| 4357 | } |
| 4358 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4359 | return true; |
| 4360 | } |
| 4361 | |
| 4362 | /* |
| 4363 | * "request" contains a full JDWP packet, possibly with multiple chunks. We |
| 4364 | * need to process each, accumulate the replies, and ship the whole thing |
| 4365 | * back. |
| 4366 | * |
| 4367 | * Returns "true" if we have a reply. The reply buffer is newly allocated, |
| 4368 | * and includes the chunk type/length, followed by the data. |
| 4369 | * |
| 4370 | * OLD-TODO: we currently assume that the request and reply include a single |
| 4371 | * chunk. If this becomes inconvenient we will need to adapt. |
| 4372 | */ |
| 4373 | bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) { |
| 4374 | Thread* self = Thread::Current(); |
| 4375 | JNIEnv* env = self->GetJniEnv(); |
| 4376 | |
| 4377 | uint32_t type = request->ReadUnsigned32("type"); |
| 4378 | uint32_t length = request->ReadUnsigned32("length"); |
| 4379 | |
| 4380 | // Create a byte[] corresponding to 'request'. |
| 4381 | size_t request_length = request->size(); |
| 4382 | // Run through and find all chunks. [Currently just find the first.] |
| 4383 | if (length != request_length) { |
| 4384 | 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] | 4385 | return false; |
| 4386 | } |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4387 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4388 | ArrayRef<const jbyte> data(reinterpret_cast<const jbyte*>(request->data()), request_length); |
| 4389 | std::vector<uint8_t> out_data; |
| 4390 | uint32_t out_type = 0; |
| 4391 | request->Skip(request_length); |
| Alex Light | 6f2a634 | 2017-12-12 09:55:05 -0800 | [diff] [blame] | 4392 | if (!DdmHandleChunk(env, type, data, &out_type, &out_data) || out_data.empty()) { |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4393 | return false; |
| 4394 | } |
| 4395 | const uint32_t kDdmHeaderSize = 8; |
| 4396 | *pReplyLen = out_data.size() + kDdmHeaderSize; |
| 4397 | *pReplyBuf = new uint8_t[out_data.size() + kDdmHeaderSize]; |
| 4398 | memcpy((*pReplyBuf) + kDdmHeaderSize, out_data.data(), out_data.size()); |
| 4399 | JDWP::Set4BE(*pReplyBuf, out_type); |
| 4400 | JDWP::Set4BE((*pReplyBuf) + 4, static_cast<uint32_t>(out_data.size())); |
| 4401 | VLOG(jdwp) |
| 4402 | << StringPrintf("dvmHandleDdm returning type=%.4s", reinterpret_cast<char*>(*pReplyBuf)) |
| 4403 | << "0x" << std::hex << reinterpret_cast<uintptr_t>(*pReplyBuf) << std::dec |
| 4404 | << " len= " << out_data.size(); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4405 | return true; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4406 | } |
| 4407 | |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4408 | void Dbg::DdmBroadcast(bool connect) { |
| Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 4409 | VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "..."; |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4410 | |
| 4411 | Thread* self = Thread::Current(); |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4412 | if (self->GetState() != kRunnable) { |
| 4413 | LOG(ERROR) << "DDM broadcast in thread state " << self->GetState(); |
| 4414 | /* try anyway? */ |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4415 | } |
| 4416 | |
| 4417 | JNIEnv* env = self->GetJniEnv(); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4418 | jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/; |
| Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 4419 | env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer, |
| 4420 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast, |
| 4421 | event); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4422 | if (env->ExceptionCheck()) { |
| 4423 | LOG(ERROR) << "DdmServer.broadcast " << event << " failed"; |
| 4424 | env->ExceptionDescribe(); |
| 4425 | env->ExceptionClear(); |
| 4426 | } |
| 4427 | } |
| 4428 | |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4429 | void Dbg::DdmConnected() { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4430 | Dbg::DdmBroadcast(true); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4431 | } |
| 4432 | |
| 4433 | void Dbg::DdmDisconnected() { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4434 | Dbg::DdmBroadcast(false); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4435 | gDdmThreadNotification = false; |
| 4436 | } |
| 4437 | |
| 4438 | /* |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4439 | * Send a notification when a thread starts, stops, or changes its name. |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4440 | * |
| 4441 | * Because we broadcast the full set of threads when the notifications are |
| 4442 | * first enabled, it's possible for "thread" to be actively executing. |
| 4443 | */ |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4444 | void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) { |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4445 | if (!gDdmThreadNotification) { |
| 4446 | return; |
| 4447 | } |
| 4448 | |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4449 | RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks(); |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4450 | if (type == CHUNK_TYPE("THDE")) { |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4451 | uint8_t buf[4]; |
| Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 4452 | JDWP::Set4BE(&buf[0], t->GetThreadId()); |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4453 | cb->DdmPublishChunk(CHUNK_TYPE("THDE"), ArrayRef<const uint8_t>(buf)); |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4454 | } else { |
| 4455 | CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type; |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4456 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 4457 | StackHandleScope<1> hs(soa.Self()); |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 4458 | Handle<mirror::String> name(hs.NewHandle(t->GetThreadName())); |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 4459 | size_t char_count = (name != nullptr) ? name->GetLength() : 0; |
| 4460 | const jchar* chars = (name != nullptr) ? name->GetValue() : nullptr; |
| 4461 | bool is_compressed = (name != nullptr) ? name->IsCompressed() : false; |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4462 | |
| Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4463 | std::vector<uint8_t> bytes; |
| Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 4464 | JDWP::Append4BE(bytes, t->GetThreadId()); |
| jessicahandojo | 3aaa37b | 2016-07-29 14:46:37 -0700 | [diff] [blame] | 4465 | if (is_compressed) { |
| 4466 | const uint8_t* chars_compressed = name->GetValueCompressed(); |
| 4467 | JDWP::AppendUtf16CompressedBE(bytes, chars_compressed, char_count); |
| 4468 | } else { |
| 4469 | JDWP::AppendUtf16BE(bytes, chars, char_count); |
| 4470 | } |
| Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4471 | CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2); |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4472 | cb->DdmPublishChunk(type, ArrayRef<const uint8_t>(bytes)); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4473 | } |
| 4474 | } |
| 4475 | |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4476 | void Dbg::DdmSetThreadNotification(bool enable) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4477 | // Enable/disable thread notifications. |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4478 | gDdmThreadNotification = enable; |
| 4479 | if (enable) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4480 | // Suspend the VM then post thread start notifications for all threads. Threads attaching will |
| 4481 | // see a suspension in progress and block until that ends. They then post their own start |
| 4482 | // notification. |
| 4483 | SuspendVM(); |
| 4484 | std::list<Thread*> threads; |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4485 | Thread* self = Thread::Current(); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4486 | { |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4487 | MutexLock mu(self, *Locks::thread_list_lock_); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4488 | threads = Runtime::Current()->GetThreadList()->GetList(); |
| 4489 | } |
| 4490 | { |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4491 | ScopedObjectAccess soa(self); |
| Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 4492 | for (Thread* thread : threads) { |
| 4493 | Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR")); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4494 | } |
| 4495 | } |
| 4496 | ResumeVM(); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4497 | } |
| 4498 | } |
| 4499 | |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4500 | void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) { |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 4501 | if (IsDebuggerActive()) { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 4502 | gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR")); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4503 | } |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4504 | Dbg::DdmSendThreadNotification(t, type); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4505 | } |
| 4506 | |
| 4507 | void Dbg::PostThreadStart(Thread* t) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4508 | Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR")); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4509 | } |
| 4510 | |
| 4511 | void Dbg::PostThreadDeath(Thread* t) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4512 | Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE")); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4513 | } |
| 4514 | |
| Mathieu Chartier | ad466ad | 2015-01-08 16:28:08 -0800 | [diff] [blame] | 4515 | JDWP::JdwpState* Dbg::GetJdwpState() { |
| 4516 | return gJdwpState; |
| 4517 | } |
| 4518 | |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4519 | int Dbg::DdmHandleHpifChunk(HpifWhen when) { |
| 4520 | if (when == HPIF_WHEN_NOW) { |
| Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 4521 | DdmSendHeapInfo(when); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4522 | return true; |
| 4523 | } |
| 4524 | |
| 4525 | if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) { |
| 4526 | LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when); |
| 4527 | return false; |
| 4528 | } |
| 4529 | |
| 4530 | gDdmHpifWhen = when; |
| 4531 | return true; |
| 4532 | } |
| 4533 | |
| 4534 | bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) { |
| 4535 | if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) { |
| 4536 | LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when); |
| 4537 | return false; |
| 4538 | } |
| 4539 | |
| 4540 | if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) { |
| 4541 | LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what); |
| 4542 | return false; |
| 4543 | } |
| 4544 | |
| 4545 | if (native) { |
| 4546 | gDdmNhsgWhen = when; |
| 4547 | gDdmNhsgWhat = what; |
| 4548 | } else { |
| 4549 | gDdmHpsgWhen = when; |
| 4550 | gDdmHpsgWhat = what; |
| 4551 | } |
| 4552 | return true; |
| 4553 | } |
| 4554 | |
| Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 4555 | void Dbg::DdmSendHeapInfo(HpifWhen reason) { |
| 4556 | // If there's a one-shot 'when', reset it. |
| 4557 | if (reason == gDdmHpifWhen) { |
| 4558 | if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) { |
| 4559 | gDdmHpifWhen = HPIF_WHEN_NEVER; |
| 4560 | } |
| 4561 | } |
| 4562 | |
| 4563 | /* |
| 4564 | * Chunk HPIF (client --> server) |
| 4565 | * |
| 4566 | * Heap Info. General information about the heap, |
| 4567 | * suitable for a summary display. |
| 4568 | * |
| 4569 | * [u4]: number of heaps |
| 4570 | * |
| 4571 | * For each heap: |
| 4572 | * [u4]: heap ID |
| 4573 | * [u8]: timestamp in ms since Unix epoch |
| 4574 | * [u1]: capture reason (same as 'when' value from server) |
| 4575 | * [u4]: max heap size in bytes (-Xmx) |
| 4576 | * [u4]: current heap size in bytes |
| 4577 | * [u4]: current number of bytes allocated |
| 4578 | * [u4]: current number of objects allocated |
| 4579 | */ |
| 4580 | uint8_t heap_count = 1; |
| Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 4581 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4582 | std::vector<uint8_t> bytes; |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4583 | JDWP::Append4BE(bytes, heap_count); |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4584 | JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap). |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4585 | JDWP::Append8BE(bytes, MilliTime()); |
| 4586 | JDWP::Append1BE(bytes, reason); |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4587 | JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes. |
| 4588 | JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes. |
| Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 4589 | JDWP::Append4BE(bytes, heap->GetBytesAllocated()); |
| 4590 | JDWP::Append4BE(bytes, heap->GetObjectsAllocated()); |
| Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4591 | 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] | 4592 | Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(CHUNK_TYPE("HPIF"), |
| 4593 | ArrayRef<const uint8_t>(bytes)); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4594 | } |
| 4595 | |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4596 | enum HpsgSolidity { |
| 4597 | SOLIDITY_FREE = 0, |
| 4598 | SOLIDITY_HARD = 1, |
| 4599 | SOLIDITY_SOFT = 2, |
| 4600 | SOLIDITY_WEAK = 3, |
| 4601 | SOLIDITY_PHANTOM = 4, |
| 4602 | SOLIDITY_FINALIZABLE = 5, |
| 4603 | SOLIDITY_SWEEP = 6, |
| 4604 | }; |
| 4605 | |
| 4606 | enum HpsgKind { |
| 4607 | KIND_OBJECT = 0, |
| 4608 | KIND_CLASS_OBJECT = 1, |
| 4609 | KIND_ARRAY_1 = 2, |
| 4610 | KIND_ARRAY_2 = 3, |
| 4611 | KIND_ARRAY_4 = 4, |
| 4612 | KIND_ARRAY_8 = 5, |
| 4613 | KIND_UNKNOWN = 6, |
| 4614 | KIND_NATIVE = 7, |
| 4615 | }; |
| 4616 | |
| 4617 | #define HPSG_PARTIAL (1<<7) |
| 4618 | #define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7))) |
| 4619 | |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4620 | class HeapChunkContext { |
| 4621 | public: |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4622 | // Maximum chunk size. Obtain this from the formula: |
| 4623 | // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2 |
| 4624 | HeapChunkContext(bool merge, bool native) |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4625 | : buf_(16384 - 16), |
| 4626 | type_(0), |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4627 | chunk_overhead_(0) { |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4628 | Reset(); |
| 4629 | if (native) { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4630 | type_ = CHUNK_TYPE("NHSG"); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4631 | } else { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4632 | type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO"); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4633 | } |
| 4634 | } |
| 4635 | |
| 4636 | ~HeapChunkContext() { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4637 | if (p_ > &buf_[0]) { |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4638 | Flush(); |
| 4639 | } |
| 4640 | } |
| 4641 | |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4642 | void SetChunkOverhead(size_t chunk_overhead) { |
| 4643 | chunk_overhead_ = chunk_overhead; |
| 4644 | } |
| 4645 | |
| 4646 | void ResetStartOfNextChunk() { |
| 4647 | startOfNextMemoryChunk_ = nullptr; |
| 4648 | } |
| 4649 | |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4650 | void EnsureHeader(const void* chunk_ptr) { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4651 | if (!needHeader_) { |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4652 | return; |
| 4653 | } |
| 4654 | |
| 4655 | // Start a new HPSx chunk. |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4656 | JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap). |
| 4657 | JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes. |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4658 | |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4659 | JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start. |
| 4660 | 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] | 4661 | // [u4]: length of piece, in allocation units |
| 4662 | // 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] | 4663 | pieceLenField_ = p_; |
| 4664 | JDWP::Write4BE(&p_, 0x55555555); |
| 4665 | needHeader_ = false; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4666 | } |
| 4667 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4668 | void Flush() REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4669 | if (pieceLenField_ == nullptr) { |
| Ian Rogers | d636b06 | 2013-01-18 17:51:18 -0800 | [diff] [blame] | 4670 | // Flush immediately post Reset (maybe back-to-back Flush). Ignore. |
| 4671 | CHECK(needHeader_); |
| 4672 | return; |
| 4673 | } |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4674 | // Patch the "length of piece" field. |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4675 | CHECK_LE(&buf_[0], pieceLenField_); |
| 4676 | CHECK_LE(pieceLenField_, p_); |
| 4677 | JDWP::Set4BE(pieceLenField_, totalAllocationUnits_); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4678 | |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4679 | ArrayRef<const uint8_t> out(&buf_[0], p_ - &buf_[0]); |
| 4680 | Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(type_, out); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4681 | Reset(); |
| 4682 | } |
| 4683 | |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4684 | 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] | 4685 | REQUIRES_SHARED(Locks::heap_bitmap_lock_, |
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 4686 | Locks::mutator_lock_) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4687 | reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes); |
| 4688 | } |
| 4689 | |
| 4690 | 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] | 4691 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4692 | reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes); |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4693 | } |
| 4694 | |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4695 | private: |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4696 | enum { ALLOCATION_UNIT_SIZE = 8 }; |
| 4697 | |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4698 | void Reset() { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4699 | p_ = &buf_[0]; |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4700 | ResetStartOfNextChunk(); |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4701 | totalAllocationUnits_ = 0; |
| 4702 | needHeader_ = true; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4703 | pieceLenField_ = nullptr; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4704 | } |
| 4705 | |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4706 | bool IsNative() const { |
| 4707 | return type_ == CHUNK_TYPE("NHSG"); |
| 4708 | } |
| 4709 | |
| 4710 | // Returns true if the object is not an empty chunk. |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4711 | 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] | 4712 | // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken |
| 4713 | // 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] | 4714 | if (used_bytes == 0) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4715 | if (start == nullptr) { |
| 4716 | // Reset for start of new heap. |
| 4717 | startOfNextMemoryChunk_ = nullptr; |
| 4718 | Flush(); |
| 4719 | } |
| 4720 | // Only process in use memory so that free region information |
| 4721 | // also includes dlmalloc book keeping. |
| 4722 | return false; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4723 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4724 | if (startOfNextMemoryChunk_ != nullptr) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4725 | // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because |
| 4726 | // of the use of mmaps, so don't report. If not free memory then start a new segment. |
| 4727 | bool flush = true; |
| 4728 | if (start > startOfNextMemoryChunk_) { |
| 4729 | const size_t kMaxFreeLen = 2 * kPageSize; |
| 4730 | void* free_start = startOfNextMemoryChunk_; |
| 4731 | void* free_end = start; |
| 4732 | const size_t free_len = |
| 4733 | reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start); |
| 4734 | if (!IsNative() || free_len < kMaxFreeLen) { |
| 4735 | AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative()); |
| 4736 | flush = false; |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4737 | } |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4738 | } |
| 4739 | if (flush) { |
| 4740 | startOfNextMemoryChunk_ = nullptr; |
| 4741 | Flush(); |
| 4742 | } |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4743 | } |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4744 | return true; |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4745 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4746 | |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4747 | void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4748 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4749 | if (ProcessRecord(start, used_bytes)) { |
| 4750 | uint8_t state = ExamineNativeObject(start); |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 4751 | AppendChunk(state, start, used_bytes + chunk_overhead_, /*is_native=*/ true); |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4752 | startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_; |
| 4753 | } |
| 4754 | } |
| 4755 | |
| 4756 | void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4757 | REQUIRES_SHARED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4758 | if (ProcessRecord(start, used_bytes)) { |
| 4759 | // Determine the type of this chunk. |
| 4760 | // OLD-TODO: if context.merge, see if this chunk is different from the last chunk. |
| 4761 | // If it's the same, we should combine them. |
| 4762 | uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start)); |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 4763 | AppendChunk(state, start, used_bytes + chunk_overhead_, /*is_native=*/ false); |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4764 | startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_; |
| 4765 | } |
| 4766 | } |
| 4767 | |
| 4768 | 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] | 4769 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4770 | // Make sure there's enough room left in the buffer. |
| 4771 | // We need to use two bytes for every fractional 256 allocation units used by the chunk plus |
| 4772 | // 17 bytes for any header. |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4773 | const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17; |
| 4774 | size_t byte_left = &buf_.back() - p_; |
| 4775 | if (byte_left < needed) { |
| 4776 | if (is_native) { |
| Pavel Vyssotski | 7522c74 | 2014-12-08 13:38:26 +0600 | [diff] [blame] | 4777 | // Cannot trigger memory allocation while walking native heap. |
| Pavel Vyssotski | 7522c74 | 2014-12-08 13:38:26 +0600 | [diff] [blame] | 4778 | return; |
| 4779 | } |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4780 | Flush(); |
| 4781 | } |
| 4782 | |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4783 | byte_left = &buf_.back() - p_; |
| 4784 | if (byte_left < needed) { |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4785 | LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", " |
| 4786 | << needed << " bytes)"; |
| 4787 | return; |
| 4788 | } |
| 4789 | EnsureHeader(ptr); |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4790 | // Write out the chunk description. |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4791 | length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units. |
| 4792 | totalAllocationUnits_ += length; |
| 4793 | while (length > 256) { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4794 | *p_++ = state | HPSG_PARTIAL; |
| 4795 | *p_++ = 255; // length - 1 |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4796 | length -= 256; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4797 | } |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4798 | *p_++ = state; |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4799 | *p_++ = length - 1; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4800 | } |
| 4801 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4802 | uint8_t ExamineNativeObject(const void* p) REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4803 | return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); |
| 4804 | } |
| 4805 | |
| 4806 | uint8_t ExamineJavaObject(mirror::Object* o) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4807 | REQUIRES_SHARED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4808 | if (o == nullptr) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4809 | return HPSG_STATE(SOLIDITY_FREE, 0); |
| 4810 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4811 | // It's an allocated chunk. Figure out what it is. |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4812 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 4813 | if (!heap->IsLiveObjectLocked(o)) { |
| 4814 | LOG(ERROR) << "Invalid object in managed heap: " << o; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4815 | return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); |
| 4816 | } |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 4817 | mirror::Class* c = o->GetClass(); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4818 | if (c == nullptr) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4819 | // The object was probably just created but hasn't been initialized yet. |
| 4820 | return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT); |
| 4821 | } |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4822 | if (!heap->IsValidObjectAddress(c)) { |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4823 | LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4824 | return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN); |
| 4825 | } |
| Mathieu Chartier | f26e1b3 | 2015-01-29 10:47:10 -0800 | [diff] [blame] | 4826 | if (c->GetClass() == nullptr) { |
| 4827 | LOG(ERROR) << "Null class of class " << c << " for object " << o; |
| 4828 | return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN); |
| 4829 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4830 | if (c->IsClassClass()) { |
| 4831 | return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT); |
| 4832 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4833 | if (c->IsArrayClass()) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4834 | switch (c->GetComponentSize()) { |
| 4835 | case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1); |
| 4836 | case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2); |
| 4837 | case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4); |
| 4838 | case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8); |
| 4839 | } |
| 4840 | } |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4841 | return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT); |
| 4842 | } |
| 4843 | |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4844 | std::vector<uint8_t> buf_; |
| 4845 | uint8_t* p_; |
| 4846 | uint8_t* pieceLenField_; |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4847 | void* startOfNextMemoryChunk_; |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4848 | size_t totalAllocationUnits_; |
| 4849 | uint32_t type_; |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4850 | bool needHeader_; |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4851 | size_t chunk_overhead_; |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4852 | |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4853 | DISALLOW_COPY_AND_ASSIGN(HeapChunkContext); |
| 4854 | }; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4855 | |
| 4856 | void Dbg::DdmSendHeapSegments(bool native) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4857 | Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen; |
| 4858 | Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4859 | if (when == HPSG_WHEN_NEVER) { |
| 4860 | return; |
| 4861 | } |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4862 | RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks(); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4863 | // Figure out what kind of chunks we'll be sending. |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4864 | CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) |
| 4865 | << static_cast<int>(what); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4866 | |
| 4867 | // First, send a heap start chunk. |
| 4868 | uint8_t heap_id[4]; |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4869 | 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] | 4870 | cb->DdmPublishChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), |
| 4871 | ArrayRef<const uint8_t>(heap_id)); |
| Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4872 | Thread* self = Thread::Current(); |
| Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4873 | Locks::mutator_lock_->AssertSharedHeld(self); |
| Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4874 | |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4875 | // Send a series of heap segment chunks. |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4876 | HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native); |
| Andreas Gampe | 0c18338 | 2017-07-13 22:26:24 -0700 | [diff] [blame] | 4877 | auto bump_pointer_space_visitor = [&](mirror::Object* obj) |
| 4878 | REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::heap_bitmap_lock_) { |
| 4879 | const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment); |
| 4880 | HeapChunkContext::HeapChunkJavaCallback( |
| 4881 | obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, &context); |
| 4882 | }; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4883 | if (native) { |
| Dimitry Ivanov | e6465bc | 2015-12-14 18:55:02 -0800 | [diff] [blame] | 4884 | UNIMPLEMENTED(WARNING) << "Native heap inspection is not supported"; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4885 | } else { |
| Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 4886 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4887 | for (const auto& space : heap->GetContinuousSpaces()) { |
| 4888 | if (space->IsDlMallocSpace()) { |
| Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4889 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4890 | // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an |
| 4891 | // allocation then the first sizeof(size_t) may belong to it. |
| 4892 | context.SetChunkOverhead(sizeof(size_t)); |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4893 | space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4894 | } else if (space->IsRosAllocSpace()) { |
| 4895 | context.SetChunkOverhead(0); |
| Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4896 | // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since |
| 4897 | // 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] | 4898 | ScopedThreadSuspension sts(self, kSuspended); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 4899 | ScopedSuspendAll ssa(__FUNCTION__); |
| 4900 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| 4901 | space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4902 | } else if (space->IsBumpPointerSpace()) { |
| Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4903 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4904 | context.SetChunkOverhead(0); |
| Andreas Gampe | 0c18338 | 2017-07-13 22:26:24 -0700 | [diff] [blame] | 4905 | space->AsBumpPointerSpace()->Walk(bump_pointer_space_visitor); |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4906 | HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context); |
| Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 4907 | } else if (space->IsRegionSpace()) { |
| 4908 | heap->IncrementDisableMovingGC(self); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4909 | { |
| 4910 | ScopedThreadSuspension sts(self, kSuspended); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 4911 | ScopedSuspendAll ssa(__FUNCTION__); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4912 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| 4913 | context.SetChunkOverhead(0); |
| Andreas Gampe | 0c18338 | 2017-07-13 22:26:24 -0700 | [diff] [blame] | 4914 | space->AsRegionSpace()->Walk(bump_pointer_space_visitor); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4915 | HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4916 | } |
| Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 4917 | heap->DecrementDisableMovingGC(self); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4918 | } else { |
| 4919 | UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space; |
| Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 4920 | } |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4921 | context.ResetStartOfNextChunk(); |
| Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 4922 | } |
| Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4923 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| Mathieu Chartier | e0f0cb3 | 2012-08-28 11:26:00 -0700 | [diff] [blame] | 4924 | // Walk the large objects, these are not in the AllocSpace. |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4925 | context.SetChunkOverhead(0); |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4926 | heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context); |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4927 | } |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4928 | |
| 4929 | // Finally, send a heap end chunk. |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4930 | cb->DdmPublishChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), |
| 4931 | ArrayRef<const uint8_t>(heap_id)); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4932 | } |
| 4933 | |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4934 | void Dbg::SetAllocTrackingEnabled(bool enable) { |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4935 | gc::AllocRecordObjectMap::SetAllocTrackingEnabled(enable); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4936 | } |
| 4937 | |
| 4938 | void Dbg::DumpRecentAllocations() { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4939 | ScopedObjectAccess soa(Thread::Current()); |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4940 | MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_); |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4941 | if (!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled()) { |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4942 | LOG(INFO) << "Not recording tracked allocations"; |
| 4943 | return; |
| 4944 | } |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4945 | gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); |
| 4946 | CHECK(records != nullptr); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4947 | |
| Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 4948 | const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize()); |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4949 | uint16_t count = capped_count; |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4950 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4951 | LOG(INFO) << "Tracked allocations, (count=" << count << ")"; |
| 4952 | for (auto it = records->RBegin(), end = records->REnd(); |
| 4953 | count > 0 && it != end; count--, it++) { |
| Mathieu Chartier | 458b105 | 2016-03-29 14:02:55 -0700 | [diff] [blame] | 4954 | const gc::AllocRecord* record = &it->second; |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4955 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4956 | LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->GetTid(), record->ByteCount()) |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 4957 | << mirror::Class::PrettyClass(record->GetClass()); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4958 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4959 | for (size_t stack_frame = 0, depth = record->GetDepth(); stack_frame < depth; ++stack_frame) { |
| 4960 | const gc::AllocRecordStackTraceElement& stack_element = record->StackElement(stack_frame); |
| 4961 | ArtMethod* m = stack_element.GetMethod(); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 4962 | LOG(INFO) << " " << ArtMethod::PrettyMethod(m) << " line " |
| 4963 | << stack_element.ComputeLineNumber(); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4964 | } |
| 4965 | |
| 4966 | // pause periodically to help logcat catch up |
| 4967 | if ((count % 5) == 0) { |
| 4968 | usleep(40000); |
| 4969 | } |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4970 | } |
| 4971 | } |
| 4972 | |
| 4973 | class StringTable { |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4974 | private: |
| 4975 | struct Entry { |
| Andreas Gampe | 84eadb2 | 2017-07-07 15:08:01 -0700 | [diff] [blame] | 4976 | explicit Entry(const char* data_in) |
| 4977 | : data(data_in), hash(ComputeModifiedUtf8Hash(data_in)), index(0) { |
| 4978 | } |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4979 | Entry(const Entry& entry) = default; |
| 4980 | Entry(Entry&& entry) = default; |
| 4981 | |
| 4982 | // Pointer to the actual string data. |
| 4983 | const char* data; |
| Andreas Gampe | 84eadb2 | 2017-07-07 15:08:01 -0700 | [diff] [blame] | 4984 | |
| 4985 | // The hash of the data. |
| 4986 | const uint32_t hash; |
| 4987 | |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4988 | // The index. This will be filled in on Finish and is not part of the ordering, so mark it |
| 4989 | // mutable. |
| 4990 | mutable uint32_t index; |
| 4991 | |
| Andreas Gampe | 84eadb2 | 2017-07-07 15:08:01 -0700 | [diff] [blame] | 4992 | bool operator==(const Entry& other) const { |
| 4993 | return strcmp(data, other.data) == 0; |
| 4994 | } |
| 4995 | }; |
| 4996 | struct EntryHash { |
| 4997 | size_t operator()(const Entry& entry) const { |
| 4998 | return entry.hash; |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4999 | } |
| 5000 | }; |
| 5001 | |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5002 | public: |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5003 | StringTable() : finished_(false) { |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5004 | } |
| 5005 | |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5006 | void Add(const char* str, bool copy_string) { |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5007 | DCHECK(!finished_); |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5008 | if (UNLIKELY(copy_string)) { |
| 5009 | // Check whether it's already there. |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5010 | Entry entry(str); |
| 5011 | if (table_.find(entry) != table_.end()) { |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5012 | return; |
| 5013 | } |
| Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 5014 | |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5015 | // Make a copy. |
| 5016 | size_t str_len = strlen(str); |
| 5017 | char* copy = new char[str_len + 1]; |
| 5018 | strlcpy(copy, str, str_len + 1); |
| 5019 | string_backup_.emplace_back(copy); |
| 5020 | str = copy; |
| 5021 | } |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5022 | Entry entry(str); |
| 5023 | table_.insert(entry); |
| 5024 | } |
| 5025 | |
| 5026 | // Update all entries and give them an index. Note that this is likely not the insertion order, |
| 5027 | // as the set will with high likelihood reorder elements. Thus, Add must not be called after |
| 5028 | // Finish, and Finish must be called before IndexOf. In that case, WriteTo will walk in |
| 5029 | // the same order as Finish, and indices will agree. The order invariant, as well as indices, |
| 5030 | // are enforced through debug checks. |
| 5031 | void Finish() { |
| 5032 | DCHECK(!finished_); |
| 5033 | finished_ = true; |
| 5034 | uint32_t index = 0; |
| 5035 | for (auto& entry : table_) { |
| 5036 | entry.index = index; |
| 5037 | ++index; |
| 5038 | } |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5039 | } |
| 5040 | |
| Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 5041 | size_t IndexOf(const char* s) const { |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5042 | DCHECK(finished_); |
| 5043 | Entry entry(s); |
| 5044 | auto it = table_.find(entry); |
| Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 5045 | if (it == table_.end()) { |
| 5046 | LOG(FATAL) << "IndexOf(\"" << s << "\") failed"; |
| 5047 | } |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5048 | return it->index; |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5049 | } |
| 5050 | |
| Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 5051 | size_t Size() const { |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5052 | return table_.size(); |
| 5053 | } |
| 5054 | |
| Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 5055 | void WriteTo(std::vector<uint8_t>& bytes) const { |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5056 | DCHECK(finished_); |
| 5057 | uint32_t cur_index = 0; |
| 5058 | for (const auto& entry : table_) { |
| 5059 | DCHECK_EQ(cur_index++, entry.index); |
| 5060 | |
| 5061 | size_t s_len = CountModifiedUtf8Chars(entry.data); |
| Christopher Ferris | 8a35405 | 2015-04-24 17:23:53 -0700 | [diff] [blame] | 5062 | std::unique_ptr<uint16_t[]> s_utf16(new uint16_t[s_len]); |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5063 | ConvertModifiedUtf8ToUtf16(s_utf16.get(), entry.data); |
| Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 5064 | JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5065 | } |
| 5066 | } |
| 5067 | |
| 5068 | private: |
| Andreas Gampe | 84eadb2 | 2017-07-07 15:08:01 -0700 | [diff] [blame] | 5069 | std::unordered_set<Entry, EntryHash> table_; |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5070 | std::vector<std::unique_ptr<char[]>> string_backup_; |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5071 | |
| 5072 | bool finished_; |
| 5073 | |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5074 | DISALLOW_COPY_AND_ASSIGN(StringTable); |
| 5075 | }; |
| 5076 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 5077 | static const char* GetMethodSourceFile(ArtMethod* method) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 5078 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 5079 | DCHECK(method != nullptr); |
| 5080 | const char* source_file = method->GetDeclaringClassSourceFile(); |
| Sebastien Hertz | 280286a | 2014-04-28 09:26:50 +0200 | [diff] [blame] | 5081 | return (source_file != nullptr) ? source_file : ""; |
| 5082 | } |
| 5083 | |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5084 | /* |
| 5085 | * The data we send to DDMS contains everything we have recorded. |
| 5086 | * |
| 5087 | * Message header (all values big-endian): |
| 5088 | * (1b) message header len (to allow future expansion); includes itself |
| 5089 | * (1b) entry header len |
| 5090 | * (1b) stack frame len |
| 5091 | * (2b) number of entries |
| 5092 | * (4b) offset to string table from start of message |
| 5093 | * (2b) number of class name strings |
| 5094 | * (2b) number of method name strings |
| 5095 | * (2b) number of source file name strings |
| 5096 | * For each entry: |
| 5097 | * (4b) total allocation size |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 5098 | * (2b) thread id |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5099 | * (2b) allocated object's class name index |
| 5100 | * (1b) stack depth |
| 5101 | * For each stack frame: |
| 5102 | * (2b) method's class name |
| 5103 | * (2b) method name |
| 5104 | * (2b) method source file |
| 5105 | * (2b) line number, clipped to 32767; -2 if native; -1 if no source |
| 5106 | * (xb) class name strings |
| 5107 | * (xb) method name strings |
| 5108 | * (xb) source file strings |
| 5109 | * |
| 5110 | * As with other DDM traffic, strings are sent as a 4-byte length |
| 5111 | * followed by UTF-16 data. |
| 5112 | * |
| 5113 | * 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] | 5114 | * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5115 | * each table, but in practice there should be far fewer. |
| 5116 | * |
| 5117 | * The chief reason for using a string table here is to keep the size of |
| 5118 | * the DDMS message to a minimum. This is partly to make the protocol |
| 5119 | * efficient, but also because we have to form the whole thing up all at |
| 5120 | * once in a memory buffer. |
| 5121 | * |
| 5122 | * We use separate string tables for class names, method names, and source |
| 5123 | * files to keep the indexes small. There will generally be no overlap |
| 5124 | * between the contents of these tables. |
| 5125 | */ |
| 5126 | jbyteArray Dbg::GetRecentAllocations() { |
| Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 5127 | if ((false)) { |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5128 | DumpRecentAllocations(); |
| 5129 | } |
| 5130 | |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 5131 | Thread* self = Thread::Current(); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5132 | std::vector<uint8_t> bytes; |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5133 | { |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 5134 | MutexLock mu(self, *Locks::alloc_tracker_lock_); |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5135 | gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); |
| 5136 | // In case this method is called when allocation tracker is disabled, |
| 5137 | // we should still send some data back. |
| 5138 | gc::AllocRecordObjectMap dummy; |
| 5139 | if (records == nullptr) { |
| 5140 | CHECK(!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled()); |
| 5141 | records = &dummy; |
| 5142 | } |
| Man Cao | 41656de | 2015-07-06 18:53:15 -0700 | [diff] [blame] | 5143 | // We don't need to wait on the condition variable records->new_record_condition_, because this |
| 5144 | // function only reads the class objects, which are already marked so it doesn't change their |
| 5145 | // reachability. |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5146 | |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5147 | // |
| 5148 | // Part 1: generate string tables. |
| 5149 | // |
| 5150 | StringTable class_names; |
| 5151 | StringTable method_names; |
| 5152 | StringTable filenames; |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5153 | |
| Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5154 | VLOG(jdwp) << "Collecting StringTables."; |
| 5155 | |
| Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 5156 | const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize()); |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 5157 | uint16_t count = capped_count; |
| Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5158 | size_t alloc_byte_count = 0; |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5159 | for (auto it = records->RBegin(), end = records->REnd(); |
| 5160 | count > 0 && it != end; count--, it++) { |
| Mathieu Chartier | 458b105 | 2016-03-29 14:02:55 -0700 | [diff] [blame] | 5161 | const gc::AllocRecord* record = &it->second; |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 5162 | std::string temp; |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5163 | const char* class_descr = record->GetClassDescriptor(&temp); |
| 5164 | class_names.Add(class_descr, !temp.empty()); |
| Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5165 | |
| 5166 | // Size + tid + class name index + stack depth. |
| 5167 | alloc_byte_count += 4u + 2u + 2u + 1u; |
| 5168 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5169 | for (size_t i = 0, depth = record->GetDepth(); i < depth; i++) { |
| 5170 | ArtMethod* m = record->StackElement(i).GetMethod(); |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5171 | class_names.Add(m->GetDeclaringClassDescriptor(), false); |
| 5172 | method_names.Add(m->GetName(), false); |
| 5173 | filenames.Add(GetMethodSourceFile(m), false); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5174 | } |
| Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5175 | |
| 5176 | // Depth * (class index + method name index + file name index + line number). |
| 5177 | alloc_byte_count += record->GetDepth() * (2u + 2u + 2u + 2u); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5178 | } |
| 5179 | |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5180 | class_names.Finish(); |
| 5181 | method_names.Finish(); |
| 5182 | filenames.Finish(); |
| Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5183 | VLOG(jdwp) << "Done collecting StringTables:" << std::endl |
| 5184 | << " ClassNames: " << class_names.Size() << std::endl |
| 5185 | << " MethodNames: " << method_names.Size() << std::endl |
| 5186 | << " Filenames: " << filenames.Size(); |
| 5187 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5188 | LOG(INFO) << "recent allocation records: " << capped_count; |
| 5189 | LOG(INFO) << "allocation records all objects: " << records->Size(); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5190 | |
| 5191 | // |
| 5192 | // Part 2: Generate the output and store it in the buffer. |
| 5193 | // |
| 5194 | |
| 5195 | // (1b) message header len (to allow future expansion); includes itself |
| 5196 | // (1b) entry header len |
| 5197 | // (1b) stack frame len |
| 5198 | const int kMessageHeaderLen = 15; |
| 5199 | const int kEntryHeaderLen = 9; |
| 5200 | const int kStackFrameLen = 8; |
| 5201 | JDWP::Append1BE(bytes, kMessageHeaderLen); |
| 5202 | JDWP::Append1BE(bytes, kEntryHeaderLen); |
| 5203 | JDWP::Append1BE(bytes, kStackFrameLen); |
| 5204 | |
| 5205 | // (2b) number of entries |
| 5206 | // (4b) offset to string table from start of message |
| 5207 | // (2b) number of class name strings |
| 5208 | // (2b) number of method name strings |
| 5209 | // (2b) number of source file name strings |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 5210 | JDWP::Append2BE(bytes, capped_count); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5211 | size_t string_table_offset = bytes.size(); |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 5212 | JDWP::Append4BE(bytes, 0); // We'll patch this later... |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5213 | JDWP::Append2BE(bytes, class_names.Size()); |
| 5214 | JDWP::Append2BE(bytes, method_names.Size()); |
| 5215 | JDWP::Append2BE(bytes, filenames.Size()); |
| 5216 | |
| Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5217 | VLOG(jdwp) << "Dumping allocations with stacks"; |
| 5218 | |
| Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5219 | // Enlarge the vector for the allocation data. |
| 5220 | size_t reserve_size = bytes.size() + alloc_byte_count; |
| 5221 | bytes.reserve(reserve_size); |
| 5222 | |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 5223 | std::string temp; |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5224 | count = capped_count; |
| 5225 | // The last "count" number of allocation records in "records" are the most recent "count" number |
| 5226 | // of allocations. Reverse iterate to get them. The most recent allocation is sent first. |
| 5227 | for (auto it = records->RBegin(), end = records->REnd(); |
| 5228 | count > 0 && it != end; count--, it++) { |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5229 | // For each entry: |
| 5230 | // (4b) total allocation size |
| 5231 | // (2b) thread id |
| 5232 | // (2b) allocated object's class name index |
| 5233 | // (1b) stack depth |
| Mathieu Chartier | 458b105 | 2016-03-29 14:02:55 -0700 | [diff] [blame] | 5234 | const gc::AllocRecord* record = &it->second; |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5235 | size_t stack_depth = record->GetDepth(); |
| Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 5236 | size_t allocated_object_class_name_index = |
| Man Cao | 41656de | 2015-07-06 18:53:15 -0700 | [diff] [blame] | 5237 | class_names.IndexOf(record->GetClassDescriptor(&temp)); |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 5238 | JDWP::Append4BE(bytes, record->ByteCount()); |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5239 | JDWP::Append2BE(bytes, static_cast<uint16_t>(record->GetTid())); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5240 | JDWP::Append2BE(bytes, allocated_object_class_name_index); |
| 5241 | JDWP::Append1BE(bytes, stack_depth); |
| 5242 | |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5243 | for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) { |
| 5244 | // For each stack frame: |
| 5245 | // (2b) method's class name |
| 5246 | // (2b) method name |
| 5247 | // (2b) method source file |
| 5248 | // (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] | 5249 | ArtMethod* m = record->StackElement(stack_frame).GetMethod(); |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 5250 | size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor()); |
| 5251 | size_t method_name_index = method_names.IndexOf(m->GetName()); |
| 5252 | size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m)); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5253 | JDWP::Append2BE(bytes, class_name_index); |
| 5254 | JDWP::Append2BE(bytes, method_name_index); |
| 5255 | JDWP::Append2BE(bytes, file_name_index); |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5256 | JDWP::Append2BE(bytes, record->StackElement(stack_frame).ComputeLineNumber()); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5257 | } |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5258 | } |
| 5259 | |
| Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5260 | CHECK_EQ(bytes.size(), reserve_size); |
| Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5261 | VLOG(jdwp) << "Dumping tables."; |
| 5262 | |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5263 | // (xb) class name strings |
| 5264 | // (xb) method name strings |
| 5265 | // (xb) source file strings |
| 5266 | JDWP::Set4BE(&bytes[string_table_offset], bytes.size()); |
| 5267 | class_names.WriteTo(bytes); |
| 5268 | method_names.WriteTo(bytes); |
| 5269 | filenames.WriteTo(bytes); |
| Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5270 | |
| 5271 | VLOG(jdwp) << "GetRecentAllocations: data created. " << bytes.size(); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5272 | } |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 5273 | JNIEnv* env = self->GetJniEnv(); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5274 | jbyteArray result = env->NewByteArray(bytes.size()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 5275 | if (result != nullptr) { |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5276 | env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0])); |
| 5277 | } |
| 5278 | return result; |
| 5279 | } |
| 5280 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 5281 | ArtMethod* DeoptimizationRequest::Method() const { |
| Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 5282 | return jni::DecodeArtMethod(method_); |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 5283 | } |
| 5284 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 5285 | void DeoptimizationRequest::SetMethod(ArtMethod* m) { |
| Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 5286 | method_ = jni::EncodeArtMethod(m); |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 5287 | } |
| 5288 | |
| Mathieu Chartier | a6b1ead | 2015-10-06 10:32:38 -0700 | [diff] [blame] | 5289 | void Dbg::VisitRoots(RootVisitor* visitor) { |
| 5290 | // Visit breakpoint roots, used to prevent unloading of methods with breakpoints. |
| 5291 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
| 5292 | BufferedRootVisitor<128> root_visitor(visitor, RootInfo(kRootVMInternal)); |
| 5293 | for (Breakpoint& breakpoint : gBreakpoints) { |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 5294 | breakpoint.Method()->VisitRoots(root_visitor, kRuntimePointerSize); |
| Mathieu Chartier | a6b1ead | 2015-10-06 10:32:38 -0700 | [diff] [blame] | 5295 | } |
| 5296 | } |
| 5297 | |
| Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 5298 | void Dbg::DbgThreadLifecycleCallback::ThreadStart(Thread* self) { |
| 5299 | Dbg::PostThreadStart(self); |
| 5300 | } |
| 5301 | |
| 5302 | void Dbg::DbgThreadLifecycleCallback::ThreadDeath(Thread* self) { |
| 5303 | Dbg::PostThreadDeath(self); |
| 5304 | } |
| 5305 | |
| Andreas Gampe | 0f01b58 | 2017-01-18 15:22:37 -0800 | [diff] [blame] | 5306 | void Dbg::DbgClassLoadCallback::ClassLoad(Handle<mirror::Class> klass ATTRIBUTE_UNUSED) { |
| 5307 | // Ignore ClassLoad; |
| 5308 | } |
| 5309 | void Dbg::DbgClassLoadCallback::ClassPrepare(Handle<mirror::Class> temp_klass ATTRIBUTE_UNUSED, |
| 5310 | Handle<mirror::Class> klass) { |
| 5311 | Dbg::PostClassPrepare(klass.Get()); |
| 5312 | } |
| 5313 | |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 5314 | } // namespace art |